diff --git a/Gruntfile.js b/Gruntfile.js index 0a7229f083..c5a8a0cad0 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -89,7 +89,7 @@ module.exports = function(grunt) { clean: { build: ['website/build'], - sprites: ['common/dist/sprites'] + sprite: ['common/dist/sprites'] }, sprite: sprite, @@ -212,7 +212,7 @@ module.exports = function(grunt) { }); // Register tasks. - grunt.registerTask('build:prod', ['loadManifestFiles', 'clean:build', 'browserify', 'uglify', 'stylus', 'cssmin', 'copy:build', 'hashres']); + grunt.registerTask('build:prod', ['loadManifestFiles', 'clean:build', 'clean:sprite', 'sprite', 'browserify', 'uglify', 'stylus', 'cssmin', 'copy:build', 'hashres']); grunt.registerTask('build:dev', ['browserify', 'stylus']); grunt.registerTask('run:dev', [ 'build:dev', 'concurrent' ]); diff --git a/common/dist/scripts/habitrpg-shared.js b/common/dist/scripts/habitrpg-shared.js index 149dc7df01..2a9d7bc978 100644 --- a/common/dist/scripts/habitrpg-shared.js +++ b/common/dist/scripts/habitrpg-shared.js @@ -9,7 +9,7146 @@ if (typeof window !== 'undefined') { window.moment = moment; } -},{"./script/index.coffee":6,"lodash":2,"moment":3}],2:[function(require,module,exports){ +},{"./script/index.coffee":4,"lodash":6,"moment":7}],2:[function(require,module,exports){ +var api, classes, diminishingReturns, events, gear, gearTypes, i18n, moment, repeat, t, _; + +_ = require('lodash'); + +api = module.exports; + +moment = require('moment'); + +i18n = require('./i18n.coffee'); + +t = function(string, vars) { + var func; + func = function(lang) { + if (vars == null) { + vars = { + a: 'a' + }; + } + return i18n.t(string, vars, lang); + }; + func.i18nLangFunc = true; + return func; +}; + + +/* + --------------------------------------------------------------- + Gear (Weapons, Armor, Head, Shield) + Item definitions: {index, text, notes, value, str, def, int, per, classes, type} + --------------------------------------------------------------- + */ + +classes = ['warrior', 'rogue', 'healer', 'wizard']; + +gearTypes = ['weapon', 'armor', 'head', 'shield', 'body', 'back', 'headAccessory', 'eyewear']; + +events = { + winter: { + start: '2013-12-31', + end: '2014-02-01' + }, + 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' + }, + fall: { + start: '2014-09-21', + end: '2014-11-01' + }, + winter2015: { + start: '2014-12-21', + end: '2015-02-02' + } +}; + +api.mystery = { + 201402: { + start: '2014-02-22', + end: '2014-02-28', + text: 'Winged Messenger Set' + }, + 201403: { + start: '2014-03-24', + end: '2014-04-02', + text: 'Forest Walker Set' + }, + 201404: { + start: '2014-04-24', + end: '2014-05-02', + text: 'Twilight Butterfly Set' + }, + 201405: { + start: '2014-05-21', + end: '2014-06-02', + text: 'Flame Wielder Set' + }, + 201406: { + start: '2014-06-23', + end: '2014-07-02', + text: 'Octomage Set' + }, + 201407: { + start: '2014-07-23', + end: '2014-08-02', + text: 'Undersea Explorer Set' + }, + 201408: { + start: '2014-08-23', + end: '2014-09-02', + text: 'Sun Sorcerer Set' + }, + 201409: { + start: '2014-09-24', + end: '2014-10-02', + text: 'Autumn Strider Item Set' + }, + 201410: { + start: '2014-10-24', + end: '2014-11-02', + text: 'Winged Goblin Set' + }, + 201411: { + start: '2014-11-24', + end: '2014-12-02', + text: 'Feast and Fun Set' + }, + 201412: { + start: '2014-12-25', + end: '2015-01-02', + text: 'Penguin Set' + }, + 201501: { + start: '2015-01-26', + end: '2015-02-02', + text: 'Starry Knight Set' + }, + 301404: { + start: '3014-03-24', + end: '3014-04-02', + text: 'Steampunk Standard Set' + }, + 301405: { + start: '3014-04-24', + end: '3014-05-02', + text: 'Steampunk Accessories Set' + }, + wondercon: { + start: '2014-03-24', + end: '2014-04-01' + } +}; + +_.each(api.mystery, function(v, k) { + return v.key = k; +}); + +gear = { + weapon: { + base: { + 0: { + text: t('weaponBase0Text'), + notes: t('weaponBase0Notes'), + value: 0 + } + }, + warrior: { + 0: { + text: t('weaponWarrior0Text'), + notes: t('weaponWarrior0Notes'), + value: 0 + }, + 1: { + text: t('weaponWarrior1Text'), + notes: t('weaponWarrior1Notes', { + str: 3 + }), + str: 3, + value: 20 + }, + 2: { + text: t('weaponWarrior2Text'), + notes: t('weaponWarrior2Notes', { + str: 6 + }), + str: 6, + value: 30 + }, + 3: { + text: t('weaponWarrior3Text'), + notes: t('weaponWarrior3Notes', { + str: 9 + }), + str: 9, + value: 45 + }, + 4: { + text: t('weaponWarrior4Text'), + notes: t('weaponWarrior4Notes', { + str: 12 + }), + str: 12, + value: 65 + }, + 5: { + text: t('weaponWarrior5Text'), + notes: t('weaponWarrior5Notes', { + str: 15 + }), + str: 15, + value: 90 + }, + 6: { + text: t('weaponWarrior6Text'), + notes: t('weaponWarrior6Notes', { + str: 18 + }), + str: 18, + value: 120, + last: true + } + }, + rogue: { + 0: { + text: t('weaponRogue0Text'), + notes: t('weaponRogue0Notes'), + str: 0, + value: 0 + }, + 1: { + text: t('weaponRogue1Text'), + notes: t('weaponRogue1Notes', { + str: 2 + }), + str: 2, + value: 20 + }, + 2: { + text: t('weaponRogue2Text'), + notes: t('weaponRogue2Notes', { + str: 3 + }), + str: 3, + value: 35 + }, + 3: { + text: t('weaponRogue3Text'), + notes: t('weaponRogue3Notes', { + str: 4 + }), + str: 4, + value: 50 + }, + 4: { + text: t('weaponRogue4Text'), + notes: t('weaponRogue4Notes', { + str: 6 + }), + str: 6, + value: 70 + }, + 5: { + text: t('weaponRogue5Text'), + notes: t('weaponRogue5Notes', { + str: 8 + }), + str: 8, + value: 90 + }, + 6: { + text: t('weaponRogue6Text'), + notes: t('weaponRogue6Notes', { + str: 10 + }), + str: 10, + value: 120, + last: true + } + }, + wizard: { + 0: { + twoHanded: true, + text: t('weaponWizard0Text'), + notes: t('weaponWizard0Notes'), + value: 0 + }, + 1: { + twoHanded: true, + text: t('weaponWizard1Text'), + notes: t('weaponWizard1Notes', { + int: 3, + per: 1 + }), + int: 3, + per: 1, + value: 30 + }, + 2: { + twoHanded: true, + text: t('weaponWizard2Text'), + notes: t('weaponWizard2Notes', { + int: 6, + per: 2 + }), + int: 6, + per: 2, + value: 50 + }, + 3: { + twoHanded: true, + text: t('weaponWizard3Text'), + notes: t('weaponWizard3Notes', { + int: 9, + per: 3 + }), + int: 9, + per: 3, + value: 80 + }, + 4: { + twoHanded: true, + text: t('weaponWizard4Text'), + notes: t('weaponWizard4Notes', { + int: 12, + per: 5 + }), + int: 12, + per: 5, + value: 120 + }, + 5: { + twoHanded: true, + text: t('weaponWizard5Text'), + notes: t('weaponWizard5Notes', { + int: 15, + per: 7 + }), + int: 15, + per: 7, + value: 160 + }, + 6: { + twoHanded: true, + text: t('weaponWizard6Text'), + notes: t('weaponWizard6Notes', { + int: 18, + per: 10 + }), + int: 18, + per: 10, + value: 200, + last: true + } + }, + healer: { + 0: { + text: t('weaponHealer0Text'), + notes: t('weaponHealer0Notes'), + value: 0 + }, + 1: { + text: t('weaponHealer1Text'), + notes: t('weaponHealer1Notes', { + int: 2 + }), + int: 2, + value: 20 + }, + 2: { + text: t('weaponHealer2Text'), + notes: t('weaponHealer2Notes', { + int: 3 + }), + int: 3, + value: 30 + }, + 3: { + text: t('weaponHealer3Text'), + notes: t('weaponHealer3Notes', { + int: 5 + }), + int: 5, + value: 45 + }, + 4: { + text: t('weaponHealer4Text'), + notes: t('weaponHealer4Notes', { + int: 7 + }), + int: 7, + value: 65 + }, + 5: { + text: t('weaponHealer5Text'), + notes: t('weaponHealer5Notes', { + int: 9 + }), + int: 9, + value: 90 + }, + 6: { + text: t('weaponHealer6Text'), + notes: t('weaponHealer6Notes', { + int: 11 + }), + int: 11, + value: 120, + last: true + } + }, + special: { + 0: { + text: t('weaponSpecial0Text'), + notes: t('weaponSpecial0Notes', { + str: 20 + }), + str: 20, + value: 150, + canOwn: (function(u) { + var _ref; + return +((_ref = u.backer) != null ? _ref.tier : void 0) >= 70; + }) + }, + 1: { + text: t('weaponSpecial1Text'), + notes: t('weaponSpecial1Notes', { + attrs: 6 + }), + str: 6, + per: 6, + con: 6, + int: 6, + value: 170, + canOwn: (function(u) { + var _ref; + return +((_ref = u.contributor) != null ? _ref.level : void 0) >= 4; + }) + }, + 2: { + text: t('weaponSpecial2Text'), + notes: t('weaponSpecial2Notes', { + attrs: 25 + }), + str: 25, + per: 25, + value: 200, + canOwn: (function(u) { + var _ref; + return (+((_ref = u.backer) != null ? _ref.tier : void 0) >= 300) || (u.items.gear.owned.weapon_special_2 != null); + }) + }, + 3: { + text: t('weaponSpecial3Text'), + notes: t('weaponSpecial3Notes', { + attrs: 17 + }), + str: 17, + int: 17, + con: 17, + value: 200, + canOwn: (function(u) { + var _ref; + return (+((_ref = u.backer) != null ? _ref.tier : void 0) >= 300) || (u.items.gear.owned.weapon_special_3 != null); + }) + }, + critical: { + text: t('weaponSpecialCriticalText'), + notes: t('weaponSpecialCriticalNotes', { + attrs: 40 + }), + str: 40, + per: 40, + value: 200, + canOwn: (function(u) { + var _ref; + return !!((_ref = u.contributor) != null ? _ref.critical : void 0); + }) + }, + yeti: { + event: events.winter, + specialClass: 'warrior', + text: t('weaponSpecialYetiText'), + notes: t('weaponSpecialYetiNotes', { + str: 15 + }), + str: 15, + value: 90 + }, + ski: { + event: events.winter, + specialClass: 'rogue', + text: t('weaponSpecialSkiText'), + notes: t('weaponSpecialSkiNotes', { + str: 8 + }), + str: 8, + value: 90 + }, + candycane: { + event: events.winter, + specialClass: 'wizard', + twoHanded: true, + text: t('weaponSpecialCandycaneText'), + notes: t('weaponSpecialCandycaneNotes', { + int: 15, + per: 7 + }), + int: 15, + per: 7, + value: 160 + }, + snowflake: { + event: events.winter, + specialClass: 'healer', + text: t('weaponSpecialSnowflakeText'), + notes: t('weaponSpecialSnowflakeNotes', { + int: 9 + }), + int: 9, + value: 90 + }, + springRogue: { + event: events.spring, + specialClass: 'rogue', + text: t('weaponSpecialSpringRogueText'), + notes: t('weaponSpecialSpringRogueNotes', { + str: 8 + }), + value: 80, + str: 8 + }, + springWarrior: { + event: events.spring, + specialClass: 'warrior', + text: t('weaponSpecialSpringWarriorText'), + notes: t('weaponSpecialSpringWarriorNotes', { + str: 15 + }), + value: 90, + str: 15 + }, + springMage: { + event: events.spring, + specialClass: 'wizard', + twoHanded: true, + text: t('weaponSpecialSpringMageText'), + notes: t('weaponSpecialSpringMageNotes', { + int: 15, + per: 7 + }), + value: 160, + int: 15, + per: 7 + }, + springHealer: { + event: events.spring, + specialClass: 'healer', + text: t('weaponSpecialSpringHealerText'), + notes: t('weaponSpecialSpringHealerNotes', { + int: 9 + }), + value: 90, + int: 9 + }, + summerRogue: { + event: events.summer, + specialClass: 'rogue', + text: t('weaponSpecialSummerRogueText'), + notes: t('weaponSpecialSummerRogueNotes', { + str: 8 + }), + value: 80, + str: 8 + }, + summerWarrior: { + event: events.summer, + specialClass: 'warrior', + text: t('weaponSpecialSummerWarriorText'), + notes: t('weaponSpecialSummerWarriorNotes', { + str: 15 + }), + value: 90, + str: 15 + }, + summerMage: { + event: events.summer, + specialClass: 'wizard', + twoHanded: true, + text: t('weaponSpecialSummerMageText'), + notes: t('weaponSpecialSummerMageNotes', { + int: 15, + per: 7 + }), + value: 160, + int: 15, + per: 7 + }, + summerHealer: { + event: events.summer, + specialClass: 'healer', + text: t('weaponSpecialSummerHealerText'), + notes: t('weaponSpecialSummerHealerNotes', { + int: 9 + }), + value: 90, + int: 9 + }, + fallRogue: { + event: events.fall, + specialClass: 'rogue', + text: t('weaponSpecialFallRogueText'), + notes: t('weaponSpecialFallRogueNotes', { + str: 8 + }), + value: 80, + str: 8 + }, + fallWarrior: { + event: events.fall, + specialClass: 'warrior', + text: t('weaponSpecialFallWarriorText'), + notes: t('weaponSpecialFallWarriorNotes', { + str: 15 + }), + value: 90, + str: 15 + }, + fallMage: { + event: events.fall, + specialClass: 'wizard', + twoHanded: true, + text: t('weaponSpecialFallMageText'), + notes: t('weaponSpecialFallMageNotes', { + int: 15, + per: 7 + }), + value: 160, + int: 15, + per: 7 + }, + fallHealer: { + event: events.fall, + specialClass: 'healer', + text: t('weaponSpecialFallHealerText'), + notes: t('weaponSpecialFallHealerNotes', { + int: 9 + }), + value: 90, + int: 9 + }, + winter2015Rogue: { + event: events.winter2015, + specialClass: 'rogue', + text: t('weaponSpecialWinter2015RogueText'), + notes: t('weaponSpecialWinter2015RogueNotes', { + str: 8 + }), + value: 80, + str: 8 + }, + winter2015Warrior: { + event: events.winter2015, + specialClass: 'warrior', + text: t('weaponSpecialWinter2015WarriorText'), + notes: t('weaponSpecialWinter2015WarriorNotes', { + str: 15 + }), + value: 90, + str: 15 + }, + winter2015Mage: { + event: events.winter2015, + specialClass: 'wizard', + twoHanded: true, + text: t('weaponSpecialWinter2015MageText'), + notes: t('weaponSpecialWinter2015MageNotes', { + int: 15, + per: 7 + }), + value: 160, + int: 15, + per: 7 + }, + winter2015Healer: { + event: events.winter2015, + specialClass: 'healer', + text: t('weaponSpecialWinter2015HealerText'), + notes: t('weaponSpecialWinter2015HealerNotes', { + int: 9 + }), + value: 90, + int: 9 + } + }, + mystery: { + 201411: { + text: t('weaponMystery201411Text'), + notes: t('weaponMystery201411Notes'), + mystery: '201411', + value: 0 + }, + 301404: { + text: t('weaponMystery301404Text'), + notes: t('weaponMystery301404Notes'), + mystery: '301404', + value: 0 + } + } + }, + armor: { + base: { + 0: { + text: t('armorBase0Text'), + notes: t('armorBase0Notes'), + value: 0 + } + }, + warrior: { + 1: { + text: t('armorWarrior1Text'), + notes: t('armorWarrior1Notes', { + con: 3 + }), + con: 3, + value: 30 + }, + 2: { + text: t('armorWarrior2Text'), + notes: t('armorWarrior2Notes', { + con: 5 + }), + con: 5, + value: 45 + }, + 3: { + text: t('armorWarrior3Text'), + notes: t('armorWarrior3Notes', { + con: 7 + }), + con: 7, + value: 65 + }, + 4: { + text: t('armorWarrior4Text'), + notes: t('armorWarrior4Notes', { + con: 9 + }), + con: 9, + value: 90 + }, + 5: { + text: t('armorWarrior5Text'), + notes: t('armorWarrior5Notes', { + con: 11 + }), + con: 11, + value: 120, + last: true + } + }, + rogue: { + 1: { + text: t('armorRogue1Text'), + notes: t('armorRogue1Notes', { + per: 6 + }), + per: 6, + value: 30 + }, + 2: { + text: t('armorRogue2Text'), + notes: t('armorRogue2Notes', { + per: 9 + }), + per: 9, + value: 45 + }, + 3: { + text: t('armorRogue3Text'), + notes: t('armorRogue3Notes', { + per: 12 + }), + per: 12, + value: 65 + }, + 4: { + text: t('armorRogue4Text'), + notes: t('armorRogue4Notes', { + per: 15 + }), + per: 15, + value: 90 + }, + 5: { + text: t('armorRogue5Text'), + notes: t('armorRogue5Notes', { + per: 18 + }), + per: 18, + value: 120, + last: true + } + }, + wizard: { + 1: { + text: t('armorWizard1Text'), + notes: t('armorWizard1Notes', { + int: 2 + }), + int: 2, + value: 30 + }, + 2: { + text: t('armorWizard2Text'), + notes: t('armorWizard2Notes', { + int: 4 + }), + int: 4, + value: 45 + }, + 3: { + text: t('armorWizard3Text'), + notes: t('armorWizard3Notes', { + int: 6 + }), + int: 6, + value: 65 + }, + 4: { + text: t('armorWizard4Text'), + notes: t('armorWizard4Notes', { + int: 9 + }), + int: 9, + value: 90 + }, + 5: { + text: t('armorWizard5Text'), + notes: t('armorWizard5Notes', { + int: 12 + }), + int: 12, + value: 120, + last: true + } + }, + healer: { + 1: { + text: t('armorHealer1Text'), + notes: t('armorHealer1Notes', { + con: 6 + }), + con: 6, + value: 30 + }, + 2: { + text: t('armorHealer2Text'), + notes: t('armorHealer2Notes', { + con: 9 + }), + con: 9, + value: 45 + }, + 3: { + text: t('armorHealer3Text'), + notes: t('armorHealer3Notes', { + con: 12 + }), + con: 12, + value: 65 + }, + 4: { + text: t('armorHealer4Text'), + notes: t('armorHealer4Notes', { + con: 15 + }), + con: 15, + value: 90 + }, + 5: { + text: t('armorHealer5Text'), + notes: t('armorHealer5Notes', { + con: 18 + }), + con: 18, + value: 120, + last: true + } + }, + special: { + 0: { + text: t('armorSpecial0Text'), + notes: t('armorSpecial0Notes', { + con: 20 + }), + con: 20, + value: 150, + canOwn: (function(u) { + var _ref; + return +((_ref = u.backer) != null ? _ref.tier : void 0) >= 45; + }) + }, + 1: { + text: t('armorSpecial1Text'), + notes: t('armorSpecial1Notes', { + attrs: 6 + }), + con: 6, + str: 6, + per: 6, + int: 6, + value: 170, + canOwn: (function(u) { + var _ref; + return +((_ref = u.contributor) != null ? _ref.level : void 0) >= 2; + }) + }, + 2: { + text: t('armorSpecial2Text'), + notes: t('armorSpecial2Notes', { + attrs: 25 + }), + int: 25, + con: 25, + value: 200, + canOwn: (function(u) { + var _ref; + return +((_ref = u.backer) != null ? _ref.tier : void 0) >= 300 || (u.items.gear.owned.armor_special_2 != null); + }) + }, + yeti: { + event: events.winter, + specialClass: 'warrior', + text: t('armorSpecialYetiText'), + notes: t('armorSpecialYetiNotes', { + con: 9 + }), + con: 9, + value: 90 + }, + ski: { + event: events.winter, + specialClass: 'rogue', + text: t('armorSpecialSkiText'), + notes: t('armorSpecialSkiNotes', { + per: 15 + }), + per: 15, + value: 90 + }, + candycane: { + event: events.winter, + specialClass: 'wizard', + text: t('armorSpecialCandycaneText'), + notes: t('armorSpecialCandycaneNotes', { + int: 9 + }), + int: 9, + value: 90 + }, + snowflake: { + event: events.winter, + specialClass: 'healer', + text: t('armorSpecialSnowflakeText'), + notes: t('armorSpecialSnowflakeNotes', { + con: 15 + }), + con: 15, + value: 90 + }, + birthday: { + event: events.birthday, + text: t('armorSpecialBirthdayText'), + notes: t('armorSpecialBirthdayNotes'), + value: 0 + }, + springRogue: { + event: events.spring, + specialClass: 'rogue', + text: t('armorSpecialSpringRogueText'), + notes: t('armorSpecialSpringRogueNotes', { + per: 15 + }), + value: 90, + per: 15 + }, + springWarrior: { + event: events.spring, + specialClass: 'warrior', + text: t('armorSpecialSpringWarriorText'), + notes: t('armorSpecialSpringWarriorNotes', { + con: 9 + }), + value: 90, + con: 9 + }, + springMage: { + event: events.spring, + specialClass: 'wizard', + text: t('armorSpecialSpringMageText'), + notes: t('armorSpecialSpringMageNotes', { + int: 9 + }), + value: 90, + int: 9 + }, + springHealer: { + event: events.spring, + specialClass: 'healer', + text: t('armorSpecialSpringHealerText'), + notes: t('armorSpecialSpringHealerNotes', { + con: 15 + }), + value: 90, + con: 15 + }, + summerRogue: { + event: events.summer, + specialClass: 'rogue', + text: t('armorSpecialSummerRogueText'), + notes: t('armorSpecialSummerRogueNotes', { + per: 15 + }), + value: 90, + per: 15 + }, + 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 + }, + fallRogue: { + event: events.fall, + specialClass: 'rogue', + text: t('armorSpecialFallRogueText'), + notes: t('armorSpecialFallRogueNotes', { + per: 15 + }), + value: 90, + per: 15 + }, + fallWarrior: { + event: events.fall, + specialClass: 'warrior', + text: t('armorSpecialFallWarriorText'), + notes: t('armorSpecialFallWarriorNotes', { + con: 9 + }), + value: 90, + con: 9 + }, + fallMage: { + event: events.fall, + specialClass: 'wizard', + text: t('armorSpecialFallMageText'), + notes: t('armorSpecialFallMageNotes', { + int: 9 + }), + value: 90, + int: 9 + }, + fallHealer: { + event: events.fall, + specialClass: 'healer', + text: t('armorSpecialFallHealerText'), + notes: t('armorSpecialFallHealerNotes', { + con: 15 + }), + value: 90, + con: 15 + }, + winter2015Rogue: { + event: events.winter2015, + specialClass: 'rogue', + text: t('armorSpecialWinter2015RogueText'), + notes: t('armorSpecialWinter2015RogueNotes', { + per: 15 + }), + value: 90, + per: 15 + }, + winter2015Warrior: { + event: events.winter2015, + specialClass: 'warrior', + text: t('armorSpecialWinter2015WarriorText'), + notes: t('armorSpecialWinter2015WarriorNotes', { + con: 9 + }), + value: 90, + con: 9 + }, + winter2015Mage: { + event: events.winter2015, + specialClass: 'wizard', + text: t('armorSpecialWinter2015MageText'), + notes: t('armorSpecialWinter2015MageNotes', { + int: 9 + }), + value: 90, + int: 9 + }, + winter2015Healer: { + event: events.winter2015, + specialClass: 'healer', + text: t('armorSpecialWinter2015HealerText'), + notes: t('armorSpecialWinter2015HealerNotes', { + con: 15 + }), + value: 90, + con: 15 + }, + birthday2015: { + text: t('armorSpecialBirthday2015Text'), + notes: t('armorSpecialBirthday2015Notes'), + value: 0, + canOwn: (function(u) { + return u.items.gear.owned.armor_special_birthday2015 != null; + }) + }, + gaymerx: { + event: events.gaymerx, + text: t('armorSpecialGaymerxText'), + notes: t('armorSpecialGaymerxNotes'), + value: 0 + } + }, + mystery: { + 201402: { + text: t('armorMystery201402Text'), + notes: t('armorMystery201402Notes'), + mystery: '201402', + value: 0 + }, + 201403: { + text: t('armorMystery201403Text'), + notes: t('armorMystery201403Notes'), + mystery: '201403', + value: 0 + }, + 201405: { + text: t('armorMystery201405Text'), + notes: t('armorMystery201405Notes'), + mystery: '201405', + value: 0 + }, + 201406: { + text: t('armorMystery201406Text'), + notes: t('armorMystery201406Notes'), + mystery: '201406', + value: 0 + }, + 201407: { + text: t('armorMystery201407Text'), + notes: t('armorMystery201407Notes'), + mystery: '201407', + value: 0 + }, + 201408: { + text: t('armorMystery201408Text'), + notes: t('armorMystery201408Notes'), + mystery: '201408', + value: 0 + }, + 201409: { + text: t('armorMystery201409Text'), + notes: t('armorMystery201409Notes'), + mystery: '201409', + value: 0 + }, + 201410: { + text: t('armorMystery201410Text'), + notes: t('armorMystery201410Notes'), + mystery: '201410', + value: 0 + }, + 201412: { + text: t('armorMystery201412Text'), + notes: t('armorMystery201412Notes'), + mystery: '201412', + value: 0 + }, + 201501: { + text: t('armorMystery201501Text'), + notes: t('armorMystery201501Notes'), + mystery: '201501', + value: 0 + }, + 301404: { + text: t('armorMystery301404Text'), + notes: t('armorMystery301404Notes'), + mystery: '301404', + value: 0 + } + } + }, + head: { + base: { + 0: { + text: t('headBase0Text'), + notes: t('headBase0Notes'), + value: 0 + } + }, + warrior: { + 1: { + text: t('headWarrior1Text'), + notes: t('headWarrior1Notes', { + str: 2 + }), + str: 2, + value: 15 + }, + 2: { + text: t('headWarrior2Text'), + notes: t('headWarrior2Notes', { + str: 4 + }), + str: 4, + value: 25 + }, + 3: { + text: t('headWarrior3Text'), + notes: t('headWarrior3Notes', { + str: 6 + }), + str: 6, + value: 40 + }, + 4: { + text: t('headWarrior4Text'), + notes: t('headWarrior4Notes', { + str: 9 + }), + str: 9, + value: 60 + }, + 5: { + text: t('headWarrior5Text'), + notes: t('headWarrior5Notes', { + str: 12 + }), + str: 12, + value: 80, + last: true + } + }, + rogue: { + 1: { + text: t('headRogue1Text'), + notes: t('headRogue1Notes', { + per: 2 + }), + per: 2, + value: 15 + }, + 2: { + text: t('headRogue2Text'), + notes: t('headRogue2Notes', { + per: 4 + }), + per: 4, + value: 25 + }, + 3: { + text: t('headRogue3Text'), + notes: t('headRogue3Notes', { + per: 6 + }), + per: 6, + value: 40 + }, + 4: { + text: t('headRogue4Text'), + notes: t('headRogue4Notes', { + per: 9 + }), + per: 9, + value: 60 + }, + 5: { + text: t('headRogue5Text'), + notes: t('headRogue5Notes', { + per: 12 + }), + per: 12, + value: 80, + last: true + } + }, + wizard: { + 1: { + text: t('headWizard1Text'), + notes: t('headWizard1Notes', { + per: 2 + }), + per: 2, + value: 15 + }, + 2: { + text: t('headWizard2Text'), + notes: t('headWizard2Notes', { + per: 3 + }), + per: 3, + value: 25 + }, + 3: { + text: t('headWizard3Text'), + notes: t('headWizard3Notes', { + per: 5 + }), + per: 5, + value: 40 + }, + 4: { + text: t('headWizard4Text'), + notes: t('headWizard4Notes', { + per: 7 + }), + per: 7, + value: 60 + }, + 5: { + text: t('headWizard5Text'), + notes: t('headWizard5Notes', { + per: 10 + }), + per: 10, + value: 80, + last: true + } + }, + healer: { + 1: { + text: t('headHealer1Text'), + notes: t('headHealer1Notes', { + int: 2 + }), + int: 2, + value: 15 + }, + 2: { + text: t('headHealer2Text'), + notes: t('headHealer2Notes', { + int: 3 + }), + int: 3, + value: 25 + }, + 3: { + text: t('headHealer3Text'), + notes: t('headHealer3Notes', { + int: 5 + }), + int: 5, + value: 40 + }, + 4: { + text: t('headHealer4Text'), + notes: t('headHealer4Notes', { + int: 7 + }), + int: 7, + value: 60 + }, + 5: { + text: t('headHealer5Text'), + notes: t('headHealer5Notes', { + int: 9 + }), + int: 9, + value: 80, + last: true + } + }, + special: { + 0: { + text: t('headSpecial0Text'), + notes: t('headSpecial0Notes', { + int: 20 + }), + int: 20, + value: 150, + canOwn: (function(u) { + var _ref; + return +((_ref = u.backer) != null ? _ref.tier : void 0) >= 45; + }) + }, + 1: { + text: t('headSpecial1Text'), + notes: t('headSpecial1Notes', { + attrs: 6 + }), + con: 6, + str: 6, + per: 6, + int: 6, + value: 170, + canOwn: (function(u) { + var _ref; + return +((_ref = u.contributor) != null ? _ref.level : void 0) >= 3; + }) + }, + 2: { + text: t('headSpecial2Text'), + notes: t('headSpecial2Notes', { + attrs: 25 + }), + int: 25, + str: 25, + value: 200, + canOwn: (function(u) { + var _ref; + return (+((_ref = u.backer) != null ? _ref.tier : void 0) >= 300) || (u.items.gear.owned.head_special_2 != null); + }) + }, + nye: { + event: events.winter, + text: t('headSpecialNyeText'), + notes: t('headSpecialNyeNotes'), + value: 0 + }, + yeti: { + event: events.winter, + specialClass: 'warrior', + text: t('headSpecialYetiText'), + notes: t('headSpecialYetiNotes', { + str: 9 + }), + str: 9, + value: 60 + }, + ski: { + event: events.winter, + specialClass: 'rogue', + text: t('headSpecialSkiText'), + notes: t('headSpecialSkiNotes', { + per: 9 + }), + per: 9, + value: 60 + }, + candycane: { + event: events.winter, + specialClass: 'wizard', + text: t('headSpecialCandycaneText'), + notes: t('headSpecialCandycaneNotes', { + per: 7 + }), + per: 7, + value: 60 + }, + snowflake: { + event: events.winter, + specialClass: 'healer', + text: t('headSpecialSnowflakeText'), + notes: t('headSpecialSnowflakeNotes', { + int: 7 + }), + int: 7, + value: 60 + }, + springRogue: { + event: events.spring, + specialClass: 'rogue', + text: t('headSpecialSpringRogueText'), + notes: t('headSpecialSpringRogueNotes', { + per: 9 + }), + value: 60, + per: 9 + }, + springWarrior: { + event: events.spring, + specialClass: 'warrior', + text: t('headSpecialSpringWarriorText'), + notes: t('headSpecialSpringWarriorNotes', { + str: 9 + }), + value: 60, + str: 9 + }, + springMage: { + event: events.spring, + specialClass: 'wizard', + text: t('headSpecialSpringMageText'), + notes: t('headSpecialSpringMageNotes', { + per: 7 + }), + value: 60, + per: 7 + }, + springHealer: { + event: events.spring, + specialClass: 'healer', + text: t('headSpecialSpringHealerText'), + notes: t('headSpecialSpringHealerNotes', { + int: 7 + }), + value: 60, + int: 7 + }, + summerRogue: { + event: events.summer, + specialClass: 'rogue', + text: t('headSpecialSummerRogueText'), + notes: t('headSpecialSummerRogueNotes', { + per: 9 + }), + value: 60, + per: 9 + }, + summerWarrior: { + event: events.summer, + specialClass: 'warrior', + text: t('headSpecialSummerWarriorText'), + notes: t('headSpecialSummerWarriorNotes', { + str: 9 + }), + value: 60, + str: 9 + }, + summerMage: { + event: events.summer, + specialClass: 'wizard', + text: t('headSpecialSummerMageText'), + notes: t('headSpecialSummerMageNotes', { + per: 7 + }), + value: 60, + per: 7 + }, + summerHealer: { + event: events.summer, + specialClass: 'healer', + text: t('headSpecialSummerHealerText'), + notes: t('headSpecialSummerHealerNotes', { + int: 7 + }), + value: 60, + int: 7 + }, + fallRogue: { + event: events.fall, + specialClass: 'rogue', + text: t('headSpecialFallRogueText'), + notes: t('headSpecialFallRogueNotes', { + per: 9 + }), + value: 60, + per: 9 + }, + fallWarrior: { + event: events.fall, + specialClass: 'warrior', + text: t('headSpecialFallWarriorText'), + notes: t('headSpecialFallWarriorNotes', { + str: 9 + }), + value: 60, + str: 9 + }, + fallMage: { + event: events.fall, + specialClass: 'wizard', + text: t('headSpecialFallMageText'), + notes: t('headSpecialFallMageNotes', { + per: 7 + }), + value: 60, + per: 7 + }, + fallHealer: { + event: events.fall, + specialClass: 'healer', + text: t('headSpecialFallHealerText'), + notes: t('headSpecialFallHealerNotes', { + int: 7 + }), + value: 60, + int: 7 + }, + winter2015Rogue: { + event: events.winter2015, + specialClass: 'rogue', + text: t('headSpecialWinter2015RogueText'), + notes: t('headSpecialWinter2015RogueNotes', { + per: 9 + }), + value: 60, + per: 9 + }, + winter2015Warrior: { + event: events.winter2015, + specialClass: 'warrior', + text: t('headSpecialWinter2015WarriorText'), + notes: t('headSpecialWinter2015WarriorNotes', { + str: 9 + }), + value: 60, + str: 9 + }, + winter2015Mage: { + event: events.winter2015, + specialClass: 'wizard', + text: t('headSpecialWinter2015MageText'), + notes: t('headSpecialWinter2015MageNotes', { + per: 7 + }), + value: 60, + per: 7 + }, + winter2015Healer: { + event: events.winter2015, + specialClass: 'healer', + text: t('headSpecialWinter2015HealerText'), + notes: t('headSpecialWinter2015HealerNotes', { + int: 7 + }), + value: 60, + int: 7 + }, + nye2014: { + text: t('headSpecialNye2014Text'), + notes: t('headSpecialNye2014Notes'), + value: 0, + canOwn: (function(u) { + return u.items.gear.owned.head_special_nye2014 != null; + }) + }, + gaymerx: { + event: events.gaymerx, + text: t('headSpecialGaymerxText'), + notes: t('headSpecialGaymerxNotes'), + value: 0 + } + }, + mystery: { + 201402: { + text: t('headMystery201402Text'), + notes: t('headMystery201402Notes'), + mystery: '201402', + value: 0 + }, + 201405: { + text: t('headMystery201405Text'), + notes: t('headMystery201405Notes'), + mystery: '201405', + value: 0 + }, + 201406: { + text: t('headMystery201406Text'), + notes: t('headMystery201406Notes'), + mystery: '201406', + value: 0 + }, + 201407: { + text: t('headMystery201407Text'), + notes: t('headMystery201407Notes'), + mystery: '201407', + value: 0 + }, + 201408: { + text: t('headMystery201408Text'), + notes: t('headMystery201408Notes'), + mystery: '201408', + value: 0 + }, + 201411: { + text: t('headMystery201411Text'), + notes: t('headMystery201411Notes'), + mystery: '201411', + value: 0 + }, + 201412: { + text: t('headMystery201412Text'), + notes: t('headMystery201412Notes'), + mystery: '201412', + value: 0 + }, + 201501: { + text: t('headMystery201501Text'), + notes: t('headMystery201501Notes'), + mystery: '201501', + value: 0 + }, + 301404: { + text: t('headMystery301404Text'), + notes: t('headMystery301404Notes'), + mystery: '301404', + value: 0 + }, + 301405: { + text: t('headMystery301405Text'), + notes: t('headMystery301405Notes'), + mystery: '301405', + value: 0 + } + } + }, + shield: { + base: { + 0: { + text: t('shieldBase0Text'), + notes: t('shieldBase0Notes'), + value: 0 + } + }, + warrior: { + 1: { + text: t('shieldWarrior1Text'), + notes: t('shieldWarrior1Notes', { + con: 2 + }), + con: 2, + value: 20 + }, + 2: { + text: t('shieldWarrior2Text'), + notes: t('shieldWarrior2Notes', { + con: 3 + }), + con: 3, + value: 35 + }, + 3: { + text: t('shieldWarrior3Text'), + notes: t('shieldWarrior3Notes', { + con: 5 + }), + con: 5, + value: 50 + }, + 4: { + text: t('shieldWarrior4Text'), + notes: t('shieldWarrior4Notes', { + con: 7 + }), + con: 7, + value: 70 + }, + 5: { + text: t('shieldWarrior5Text'), + notes: t('shieldWarrior5Notes', { + con: 9 + }), + con: 9, + value: 90, + last: true + } + }, + rogue: { + 0: { + text: t('weaponRogue0Text'), + notes: t('weaponRogue0Notes'), + str: 0, + value: 0 + }, + 1: { + text: t('weaponRogue1Text'), + notes: t('weaponRogue1Notes', { + str: 2 + }), + str: 2, + value: 20 + }, + 2: { + text: t('weaponRogue2Text'), + notes: t('weaponRogue2Notes', { + str: 3 + }), + str: 3, + value: 35 + }, + 3: { + text: t('weaponRogue3Text'), + notes: t('weaponRogue3Notes', { + str: 4 + }), + str: 4, + value: 50 + }, + 4: { + text: t('weaponRogue4Text'), + notes: t('weaponRogue4Notes', { + str: 6 + }), + str: 6, + value: 70 + }, + 5: { + text: t('weaponRogue5Text'), + notes: t('weaponRogue5Notes', { + str: 8 + }), + str: 8, + value: 90 + }, + 6: { + text: t('weaponRogue6Text'), + notes: t('weaponRogue6Notes', { + str: 10 + }), + str: 10, + value: 120, + last: true + } + }, + wizard: {}, + healer: { + 1: { + text: t('shieldHealer1Text'), + notes: t('shieldHealer1Notes', { + con: 2 + }), + con: 2, + value: 20 + }, + 2: { + text: t('shieldHealer2Text'), + notes: t('shieldHealer2Notes', { + con: 4 + }), + con: 4, + value: 35 + }, + 3: { + text: t('shieldHealer3Text'), + notes: t('shieldHealer3Notes', { + con: 6 + }), + con: 6, + value: 50 + }, + 4: { + text: t('shieldHealer4Text'), + notes: t('shieldHealer4Notes', { + con: 9 + }), + con: 9, + value: 70 + }, + 5: { + text: t('shieldHealer5Text'), + notes: t('shieldHealer5Notes', { + con: 12 + }), + con: 12, + value: 90, + last: true + } + }, + special: { + 0: { + text: t('shieldSpecial0Text'), + notes: t('shieldSpecial0Notes', { + per: 20 + }), + per: 20, + value: 150, + canOwn: (function(u) { + var _ref; + return +((_ref = u.backer) != null ? _ref.tier : void 0) >= 45; + }) + }, + 1: { + text: t('shieldSpecial1Text'), + notes: t('shieldSpecial1Notes', { + attrs: 6 + }), + con: 6, + str: 6, + per: 6, + int: 6, + value: 170, + canOwn: (function(u) { + var _ref; + return +((_ref = u.contributor) != null ? _ref.level : void 0) >= 5; + }) + }, + goldenknight: { + text: t('shieldSpecialGoldenknightText'), + notes: t('shieldSpecialGoldenknightNotes', { + attrs: 25 + }), + con: 25, + per: 25, + value: 200, + canOwn: (function(u) { + return u.items.gear.owned.shield_special_goldenknight != null; + }) + }, + yeti: { + event: events.winter, + specialClass: 'warrior', + text: t('shieldSpecialYetiText'), + notes: t('shieldSpecialYetiNotes', { + con: 7 + }), + con: 7, + value: 70 + }, + ski: { + event: events.winter, + specialClass: 'rogue', + text: t('weaponSpecialSkiText'), + notes: t('weaponSpecialSkiNotes', { + str: 8 + }), + str: 8, + value: 90 + }, + snowflake: { + event: events.winter, + specialClass: 'healer', + text: t('shieldSpecialSnowflakeText'), + notes: t('shieldSpecialSnowflakeNotes', { + con: 9 + }), + con: 9, + value: 70 + }, + springRogue: { + event: events.spring, + specialClass: 'rogue', + text: t('shieldSpecialSpringRogueText'), + notes: t('shieldSpecialSpringRogueNotes', { + str: 8 + }), + value: 80, + str: 8 + }, + springWarrior: { + event: events.spring, + specialClass: 'warrior', + text: t('shieldSpecialSpringWarriorText'), + notes: t('shieldSpecialSpringWarriorNotes', { + con: 7 + }), + value: 70, + con: 7 + }, + springHealer: { + event: events.spring, + specialClass: 'healer', + text: t('shieldSpecialSpringHealerText'), + notes: t('shieldSpecialSpringHealerNotes', { + con: 9 + }), + value: 70, + con: 9 + }, + summerRogue: { + event: events.summer, + specialClass: 'rogue', + text: t('shieldSpecialSummerRogueText'), + notes: t('shieldSpecialSummerRogueNotes', { + str: 8 + }), + value: 80, + str: 8 + }, + summerWarrior: { + event: events.summer, + specialClass: 'warrior', + text: t('shieldSpecialSummerWarriorText'), + notes: t('shieldSpecialSummerWarriorNotes', { + con: 7 + }), + value: 70, + con: 7 + }, + summerHealer: { + event: events.summer, + specialClass: 'healer', + text: t('shieldSpecialSummerHealerText'), + notes: t('shieldSpecialSummerHealerNotes', { + con: 9 + }), + value: 70, + con: 9 + }, + fallRogue: { + event: events.fall, + specialClass: 'rogue', + text: t('shieldSpecialFallRogueText'), + notes: t('shieldSpecialFallRogueNotes', { + str: 8 + }), + value: 80, + str: 8 + }, + fallWarrior: { + event: events.fall, + specialClass: 'warrior', + text: t('shieldSpecialFallWarriorText'), + notes: t('shieldSpecialFallWarriorNotes', { + con: 7 + }), + value: 70, + con: 7 + }, + fallHealer: { + event: events.fall, + specialClass: 'healer', + text: t('shieldSpecialFallHealerText'), + notes: t('shieldSpecialFallHealerNotes', { + con: 9 + }), + value: 70, + con: 9 + }, + winter2015Rogue: { + event: events.winter2015, + specialClass: 'rogue', + text: t('shieldSpecialWinter2015RogueText'), + notes: t('shieldSpecialWinter2015RogueNotes', { + str: 8 + }), + value: 80, + str: 8 + }, + winter2015Warrior: { + event: events.winter2015, + specialClass: 'warrior', + text: t('shieldSpecialWinter2015WarriorText'), + notes: t('shieldSpecialWinter2015WarriorNotes', { + con: 7 + }), + value: 70, + con: 7 + }, + winter2015Healer: { + event: events.winter2015, + specialClass: 'healer', + text: t('shieldSpecialWinter2015HealerText'), + notes: t('shieldSpecialWinter2015HealerNotes', { + con: 9 + }), + value: 70, + con: 9 + } + }, + mystery: { + 301405: { + text: t('shieldMystery301405Text'), + notes: t('shieldMystery301405Notes'), + mystery: '301405', + value: 0 + } + } + }, + back: { + base: { + 0: { + text: t('backBase0Text'), + notes: t('backBase0Notes'), + value: 0 + } + }, + mystery: { + 201402: { + text: t('backMystery201402Text'), + notes: t('backMystery201402Notes'), + mystery: '201402', + value: 0 + }, + 201404: { + text: t('backMystery201404Text'), + notes: t('backMystery201404Notes'), + mystery: '201404', + value: 0 + }, + 201410: { + text: t('backMystery201410Text'), + notes: t('backMystery201410Notes'), + mystery: '201410', + value: 0 + } + }, + special: { + wondercon_red: { + text: t('backSpecialWonderconRedText'), + notes: t('backSpecialWonderconRedNotes'), + value: 0, + mystery: 'wondercon' + }, + wondercon_black: { + text: t('backSpecialWonderconBlackText'), + notes: t('backSpecialWonderconBlackNotes'), + value: 0, + mystery: 'wondercon' + } + } + }, + body: { + base: { + 0: { + text: t('bodyBase0Text'), + notes: t('bodyBase0Notes'), + value: 0 + } + }, + special: { + wondercon_red: { + text: t('bodySpecialWonderconRedText'), + notes: t('bodySpecialWonderconRedNotes'), + value: 0, + mystery: 'wondercon' + }, + wondercon_gold: { + text: t('bodySpecialWonderconGoldText'), + notes: t('bodySpecialWonderconGoldNotes'), + value: 0, + mystery: 'wondercon' + }, + wondercon_black: { + text: t('bodySpecialWonderconBlackText'), + notes: t('bodySpecialWonderconBlackNotes'), + value: 0, + mystery: 'wondercon' + }, + summerHealer: { + event: events.summer, + specialClass: 'healer', + text: t('bodySpecialSummerHealerText'), + notes: t('bodySpecialSummerHealerNotes'), + value: 20 + }, + summerMage: { + event: events.summer, + specialClass: 'wizard', + text: t('bodySpecialSummerMageText'), + notes: t('bodySpecialSummerMageNotes'), + value: 20 + } + } + }, + headAccessory: { + base: { + 0: { + text: t('headAccessoryBase0Text'), + notes: t('headAccessoryBase0Notes'), + value: 0, + last: true + } + }, + special: { + springRogue: { + event: events.spring, + specialClass: 'rogue', + text: t('headAccessorySpecialSpringRogueText'), + notes: t('headAccessorySpecialSpringRogueNotes'), + value: 20 + }, + springWarrior: { + event: events.spring, + specialClass: 'warrior', + text: t('headAccessorySpecialSpringWarriorText'), + notes: t('headAccessorySpecialSpringWarriorNotes'), + value: 20 + }, + springMage: { + event: events.spring, + specialClass: 'wizard', + text: t('headAccessorySpecialSpringMageText'), + notes: t('headAccessorySpecialSpringMageNotes'), + value: 20 + }, + springHealer: { + event: events.spring, + specialClass: 'healer', + text: t('headAccessorySpecialSpringHealerText'), + notes: t('headAccessorySpecialSpringHealerNotes'), + value: 20 + } + }, + mystery: { + 201403: { + text: t('headAccessoryMystery201403Text'), + notes: t('headAccessoryMystery201403Notes'), + mystery: '201403', + value: 0 + }, + 201404: { + text: t('headAccessoryMystery201404Text'), + notes: t('headAccessoryMystery201404Notes'), + mystery: '201404', + value: 0 + }, + 201409: { + text: t('headAccessoryMystery201409Text'), + notes: t('headAccessoryMystery201409Notes'), + mystery: '201409', + value: 0 + }, + 301405: { + text: t('headAccessoryMystery301405Text'), + notes: t('headAccessoryMystery301405Notes'), + mystery: '301405', + value: 0 + } + } + }, + eyewear: { + base: { + 0: { + text: t('eyewearBase0Text'), + notes: t('eyewearBase0Notes'), + value: 0, + last: true + } + }, + special: { + wondercon_red: { + text: t('eyewearSpecialWonderconRedText'), + notes: t('eyewearSpecialWonderconRedNotes'), + value: 0, + mystery: 'wondercon' + }, + wondercon_black: { + text: t('eyewearSpecialWonderconBlackText'), + notes: t('eyewearSpecialWonderconBlackNotes'), + value: 0, + mystery: 'wondercon' + }, + summerRogue: { + event: events.summer, + specialClass: 'rogue', + text: t('eyewearSpecialSummerRogueText'), + notes: t('eyewearSpecialSummerRogueNotes'), + value: 20 + }, + summerWarrior: { + event: events.summer, + specialClass: 'warrior', + text: t('eyewearSpecialSummerWarriorText'), + notes: t('eyewearSpecialSummerWarriorNotes'), + value: 20 + } + }, + mystery: { + 301404: { + text: t('eyewearMystery301404Text'), + notes: t('eyewearMystery301404Notes'), + mystery: '301404', + value: 0 + }, + 301405: { + text: t('eyewearMystery301405Text'), + notes: t('eyewearMystery301405Notes'), + mystery: '301405', + value: 0 + } + } + } +}; + + +/* + The gear is exported as a tree (defined above), and a flat list (eg, {weapon_healer_1: .., shield_special_0: ...}) since + they are needed in different froms at different points in the app + */ + +api.gear = { + tree: gear, + flat: {} +}; + +_.each(gearTypes, function(type) { + return _.each(classes.concat(['base', 'special', 'mystery']), function(klass) { + return _.each(gear[type][klass], function(item, i) { + var key, _canOwn; + key = "" + type + "_" + klass + "_" + i; + _.defaults(item, { + type: type, + key: key, + klass: klass, + index: i, + str: 0, + int: 0, + per: 0, + con: 0 + }); + if (item.event) { + _canOwn = item.canOwn || (function() { + return true; + }); + item.canOwn = function(u) { + return _canOwn(u) && ((u.items.gear.owned[key] != null) || (moment().isAfter(item.event.start) && moment().isBefore(item.event.end))) && (item.specialClass ? u.stats["class"] === item.specialClass : true); + }; + } + if (item.mystery) { + item.canOwn = function(u) { + return u.items.gear.owned[key] != null; + }; + } + return api.gear.flat[key] = item; + }); + }); +}); + + +/* + Time Traveler Store, mystery sets need their items mapped in + */ + +_.each(api.mystery, function(v, k) { + return v.items = _.where(api.gear.flat, { + mystery: k + }); +}); + +api.timeTravelerStore = function(owned) { + var ownedKeys; + ownedKeys = _.keys((typeof owned.toObject === "function" ? owned.toObject() : void 0) || owned); + return _.reduce(api.mystery, function(m, v, k) { + if (k === 'wondercon' || ~ownedKeys.indexOf(v.items[0].key)) { + return m; + } + m[k] = v; + return m; + }, {}); +}; + + +/* + --------------------------------------------------------------- + Potion + --------------------------------------------------------------- + */ + +api.potion = { + type: 'potion', + text: t('potionText'), + notes: t('potionNotes'), + value: 25, + key: 'potion' +}; + + +/* + --------------------------------------------------------------- + Classes + --------------------------------------------------------------- + */ + +api.classes = classes; + + +/* + --------------------------------------------------------------- + Gear Types + --------------------------------------------------------------- + */ + +api.gearTypes = gearTypes; + + +/* + --------------------------------------------------------------- + Spells + --------------------------------------------------------------- + Text, notes, and mana are obvious. The rest: + + * {target}: one of [task, self, party, user]. This is very important, because if the cast() function is expecting one + thing and receives another, it will cause errors. `self` is used for self buffs, multi-task debuffs, AOEs (eg, meteor-shower), + etc. Basically, use self for anything that's not [task, party, user] and is an instant-cast + + * {cast}: the function that's run to perform the ability's action. This is pretty slick - because this is exported to the + web, this function can be performed on the client and on the server. `user` param is self (needed for determining your + own stats for effectiveness of cast), and `target` param is one of [task, party, user]. In the case of `self` spells, + you act on `user` instead of `target`. You can trust these are the correct objects, as long as the `target` attr of the + spell is correct. Take a look at habitrpg/src/models/user.js and habitrpg/src/models/task.js for what attributes are + available on each model. Note `task.value` is its "redness". If party is passed in, it's an array of users, + so you'll want to iterate over them like: `_.each(target,function(member){...})` + + Note, user.stats.mp is docked after automatically (it's appended to functions automatically down below in an _.each) + */ + +diminishingReturns = function(bonus, max, halfway) { + if (halfway == null) { + halfway = max / 2; + } + return max * (bonus / (bonus + halfway)); +}; + +api.spells = { + wizard: { + fireball: { + text: t('spellWizardFireballText'), + mana: 10, + lvl: 11, + target: 'task', + notes: t('spellWizardFireballNotes'), + cast: function(user, target) { + var bonus; + bonus = user._statsComputed.int * user.fns.crit('per'); + target.value += diminishingReturns(bonus * .02, 4); + bonus *= Math.ceil((target.value < 0 ? 1 : target.value + 1) * .075); + user.stats.exp += diminishingReturns(bonus, 75); + return user.party.quest.progress.up += diminishingReturns(bonus * .1, 50, 30); + } + }, + mpheal: { + text: t('spellWizardMPHealText'), + mana: 30, + lvl: 12, + target: 'party', + notes: t('spellWizardMPHealNotes'), + cast: function(user, target) { + return _.each(target, function(member) { + var bonus; + bonus = Math.ceil(user._statsComputed.int * .1); + if (bonus > 25) { + bonus = 25; + } + return member.stats.mp += bonus; + }); + } + }, + earth: { + text: t('spellWizardEarthText'), + mana: 35, + lvl: 13, + target: 'party', + notes: t('spellWizardEarthNotes'), + cast: function(user, target) { + return _.each(target, function(member) { + var _base; + if ((_base = member.stats.buffs).int == null) { + _base.int = 0; + } + return member.stats.buffs.int += Math.ceil(user._statsComputed.int * .05); + }); + } + }, + frost: { + text: t('spellWizardFrostText'), + mana: 40, + lvl: 14, + target: 'self', + notes: t('spellWizardFrostNotes'), + cast: function(user, target) { + return user.stats.buffs.streaks = true; + } + } + }, + warrior: { + smash: { + text: t('spellWarriorSmashText'), + mana: 10, + lvl: 11, + target: 'task', + notes: t('spellWarriorSmashNotes'), + cast: function(user, target) { + target.value += 2.5 * (user._statsComputed.str / (user._statsComputed.str + 50)) * user.fns.crit('con'); + return user.party.quest.progress.up += Math.ceil(user._statsComputed.str * .2); + } + }, + defensiveStance: { + text: t('spellWarriorDefensiveStanceText'), + mana: 25, + lvl: 12, + target: 'self', + notes: t('spellWarriorDefensiveStanceNotes'), + cast: function(user, target) { + var _base; + if ((_base = user.stats.buffs).con == null) { + _base.con = 0; + } + return user.stats.buffs.con += Math.ceil(user._statsComputed.con * .05); + } + }, + valorousPresence: { + text: t('spellWarriorValorousPresenceText'), + mana: 20, + lvl: 13, + target: 'party', + notes: t('spellWarriorValorousPresenceNotes'), + cast: function(user, target) { + return _.each(target, function(member) { + var _base; + if ((_base = member.stats.buffs).str == null) { + _base.str = 0; + } + return member.stats.buffs.str += Math.ceil(user._statsComputed.str * .05); + }); + } + }, + intimidate: { + text: t('spellWarriorIntimidateText'), + mana: 15, + lvl: 14, + target: 'party', + notes: t('spellWarriorIntimidateNotes'), + cast: function(user, target) { + return _.each(target, function(member) { + var _base; + if ((_base = member.stats.buffs).con == null) { + _base.con = 0; + } + return member.stats.buffs.con += Math.ceil(user._statsComputed.con * .03); + }); + } + } + }, + rogue: { + pickPocket: { + text: t('spellRoguePickPocketText'), + mana: 10, + lvl: 11, + target: 'task', + notes: t('spellRoguePickPocketNotes'), + cast: function(user, target) { + var bonus; + bonus = (target.value < 0 ? 1 : target.value + 2) + (user._statsComputed.per * 0.5); + return user.stats.gp += 25 * (bonus / (bonus + 75)); + } + }, + backStab: { + text: t('spellRogueBackStabText'), + mana: 15, + lvl: 12, + target: 'task', + notes: t('spellRogueBackStabNotes'), + cast: function(user, target) { + var bonus, _crit; + _crit = user.fns.crit('str', .3); + target.value += _crit * .03; + bonus = (target.value < 0 ? 1 : target.value + 1) * _crit; + user.stats.exp += bonus; + return user.stats.gp += bonus; + } + }, + toolsOfTrade: { + text: t('spellRogueToolsOfTradeText'), + mana: 25, + lvl: 13, + target: 'party', + notes: t('spellRogueToolsOfTradeNotes'), + cast: function(user, target) { + return _.each(target, function(member) { + var _base; + if ((_base = member.stats.buffs).per == null) { + _base.per = 0; + } + return member.stats.buffs.per += Math.ceil(user._statsComputed.per * .03); + }); + } + }, + stealth: { + text: t('spellRogueStealthText'), + mana: 45, + lvl: 14, + target: 'self', + notes: t('spellRogueStealthNotes'), + cast: function(user, target) { + var _base; + if ((_base = user.stats.buffs).stealth == null) { + _base.stealth = 0; + } + return user.stats.buffs.stealth += Math.ceil(user.dailys.length * user._statsComputed.per / 100); + } + } + }, + healer: { + heal: { + text: t('spellHealerHealText'), + mana: 15, + lvl: 11, + target: 'self', + notes: t('spellHealerHealNotes'), + cast: function(user, target) { + user.stats.hp += (user._statsComputed.con + user._statsComputed.int + 5) * .075; + if (user.stats.hp > 50) { + return user.stats.hp = 50; + } + } + }, + brightness: { + text: t('spellHealerBrightnessText'), + mana: 15, + lvl: 12, + target: 'self', + notes: t('spellHealerBrightnessNotes'), + cast: function(user, target) { + return _.each(user.tasks, function(target) { + if (target.type === 'reward') { + return; + } + return target.value += 1.5 * (user._statsComputed.int / (user._statsComputed.int + 40)); + }); + } + }, + protectAura: { + text: t('spellHealerProtectAuraText'), + mana: 30, + lvl: 13, + target: 'party', + notes: t('spellHealerProtectAuraNotes'), + cast: function(user, target) { + return _.each(target, function(member) { + var _base; + if ((_base = member.stats.buffs).con == null) { + _base.con = 0; + } + return member.stats.buffs.con += Math.ceil(user._statsComputed.con * .15); + }); + } + }, + heallAll: { + text: t('spellHealerHealAllText'), + mana: 25, + lvl: 14, + target: 'party', + notes: t('spellHealerHealAllNotes'), + cast: function(user, target) { + return _.each(target, function(member) { + member.stats.hp += (user._statsComputed.con + user._statsComputed.int + 5) * .04; + if (member.stats.hp > 50) { + return member.stats.hp = 50; + } + }); + } + } + }, + special: { + snowball: { + text: t('spellSpecialSnowballAuraText'), + mana: 0, + value: 15, + target: 'user', + notes: t('spellSpecialSnowballAuraNotes'), + cast: function(user, target) { + var _base; + target.stats.buffs.snowball = true; + if ((_base = target.achievements).snowball == null) { + _base.snowball = 0; + } + target.achievements.snowball++; + return user.items.special.snowball--; + } + }, + salt: { + text: t('spellSpecialSaltText'), + mana: 0, + value: 5, + immediateUse: true, + target: 'self', + notes: t('spellSpecialSaltNotes'), + cast: function(user, target) { + user.stats.buffs.snowball = false; + return user.stats.gp -= 5; + } + }, + spookDust: { + text: t('spellSpecialSpookDustText'), + mana: 0, + value: 15, + target: 'user', + notes: t('spellSpecialSpookDustNotes'), + cast: function(user, target) { + var _base; + target.stats.buffs.spookDust = true; + if ((_base = target.achievements).spookDust == null) { + _base.spookDust = 0; + } + target.achievements.spookDust++; + return user.items.special.spookDust--; + } + }, + opaquePotion: { + text: t('spellSpecialOpaquePotionText'), + mana: 0, + value: 5, + immediateUse: true, + target: 'self', + notes: t('spellSpecialOpaquePotionNotes'), + cast: function(user, target) { + user.stats.buffs.spookDust = false; + return user.stats.gp -= 5; + } + }, + nye: { + text: t('nyeCard'), + mana: 0, + value: 10, + immediateUse: true, + target: 'user', + notes: t('nyeCardNotes'), + cast: function(user, target) { + var _base; + if (user === target) { + if ((_base = user.achievements).nye == null) { + _base.nye = 0; + } + user.achievements.nye++; + } else { + _.each([user, target], function(t) { + var _base1; + if ((_base1 = t.achievements).nye == null) { + _base1.nye = 0; + } + return t.achievements.nye++; + }); + } + if (!target.items.special.nyeReceived) { + target.items.special.nyeReceived = []; + } + target.items.special.nyeReceived.push(user.profile.name); + if (typeof target.markModified === "function") { + target.markModified('items.special.nyeReceived'); + } + return user.stats.gp -= 10; + } + } + } +}; + +_.each(api.spells, function(spellClass) { + return _.each(spellClass, function(spell, key) { + var _cast; + spell.key = key; + _cast = spell.cast; + return spell.cast = function(user, target) { + _cast(user, target); + return user.stats.mp -= spell.mana; + }; + }); +}); + +api.special = api.spells.special; + + +/* + --------------------------------------------------------------- + Drops + --------------------------------------------------------------- + */ + +api.dropEggs = { + Wolf: { + text: t('dropEggWolfText'), + adjective: t('dropEggWolfAdjective') + }, + TigerCub: { + text: t('dropEggTigerCubText'), + mountText: t('dropEggTigerCubMountText'), + adjective: t('dropEggTigerCubAdjective') + }, + PandaCub: { + text: t('dropEggPandaCubText'), + mountText: t('dropEggPandaCubMountText'), + adjective: t('dropEggPandaCubAdjective') + }, + LionCub: { + text: t('dropEggLionCubText'), + mountText: t('dropEggLionCubMountText'), + adjective: t('dropEggLionCubAdjective') + }, + Fox: { + text: t('dropEggFoxText'), + adjective: t('dropEggFoxAdjective') + }, + FlyingPig: { + text: t('dropEggFlyingPigText'), + adjective: t('dropEggFlyingPigAdjective') + }, + Dragon: { + text: t('dropEggDragonText'), + adjective: t('dropEggDragonAdjective') + }, + Cactus: { + text: t('dropEggCactusText'), + adjective: t('dropEggCactusAdjective') + }, + BearCub: { + text: t('dropEggBearCubText'), + mountText: t('dropEggBearCubMountText'), + adjective: t('dropEggBearCubAdjective') + } +}; + +_.each(api.dropEggs, function(egg, key) { + return _.defaults(egg, { + canBuy: true, + value: 3, + key: key, + notes: t('eggNotes', { + eggText: egg.text, + eggAdjective: egg.adjective + }), + mountText: egg.text + }); +}); + +api.questEggs = { + Gryphon: { + text: t('questEggGryphonText'), + adjective: t('questEggGryphonAdjective'), + canBuy: false + }, + Hedgehog: { + text: t('questEggHedgehogText'), + adjective: t('questEggHedgehogAdjective'), + canBuy: false + }, + Deer: { + text: t('questEggDeerText'), + adjective: t('questEggDeerAdjective'), + canBuy: false + }, + Egg: { + text: t('questEggEggText'), + adjective: t('questEggEggAdjective'), + canBuy: false, + noMount: true + }, + Rat: { + text: t('questEggRatText'), + adjective: t('questEggRatAdjective'), + canBuy: false + }, + Octopus: { + text: t('questEggOctopusText'), + adjective: t('questEggOctopusAdjective'), + canBuy: false + }, + Seahorse: { + text: t('questEggSeahorseText'), + adjective: t('questEggSeahorseAdjective'), + canBuy: false + }, + Parrot: { + text: t('questEggParrotText'), + adjective: t('questEggParrotAdjective'), + canBuy: false + }, + Rooster: { + text: t('questEggRoosterText'), + adjective: t('questEggRoosterAdjective'), + canBuy: false + }, + Spider: { + text: t('questEggSpiderText'), + adjective: t('questEggSpiderAdjective'), + canBuy: false + }, + Owl: { + text: t('questEggOwlText'), + adjective: t('questEggOwlAdjective'), + canBuy: false + }, + Penguin: { + text: t('questEggPenguinText'), + adjective: t('questEggPenguinAdjective'), + canBuy: false + }, + TRex: { + text: t('questEggTRexText'), + adjective: t('questEggTRexAdjective'), + canBuy: false + } +}; + +_.each(api.questEggs, function(egg, key) { + return _.defaults(egg, { + canBuy: false, + value: 3, + key: key, + notes: t('eggNotes', { + eggText: egg.text, + eggAdjective: egg.adjective + }), + mountText: egg.text + }); +}); + +api.eggs = _.assign(_.cloneDeep(api.dropEggs), api.questEggs); + +api.specialPets = { + 'Wolf-Veteran': 'veteranWolf', + 'Wolf-Cerberus': 'cerberusPup', + 'Dragon-Hydra': 'hydra', + 'Turkey-Base': 'turkey', + 'BearCub-Polar': 'polarBearPup', + 'MantisShrimp-Base': 'mantisShrimp', + 'JackOLantern-Base': 'jackolantern', + 'Mammoth-Base': 'mammoth' +}; + +api.specialMounts = { + 'BearCub-Polar': 'polarBear', + 'LionCub-Ethereal': 'etherealLion', + 'MantisShrimp-Base': 'mantisShrimp', + 'Turkey-Base': 'turkey', + 'Mammoth-Base': 'mammoth' +}; + +api.hatchingPotions = { + Base: { + value: 2, + text: t('hatchingPotionBase') + }, + White: { + value: 2, + text: t('hatchingPotionWhite') + }, + Desert: { + value: 2, + text: t('hatchingPotionDesert') + }, + Red: { + value: 3, + text: t('hatchingPotionRed') + }, + Shade: { + value: 3, + text: t('hatchingPotionShade') + }, + Skeleton: { + value: 3, + text: t('hatchingPotionSkeleton') + }, + Zombie: { + value: 4, + text: t('hatchingPotionZombie') + }, + CottonCandyPink: { + value: 4, + text: t('hatchingPotionCottonCandyPink') + }, + CottonCandyBlue: { + value: 4, + text: t('hatchingPotionCottonCandyBlue') + }, + Golden: { + value: 5, + text: t('hatchingPotionGolden') + } +}; + +_.each(api.hatchingPotions, function(pot, key) { + return _.defaults(pot, { + key: key, + value: 2, + notes: t('hatchingPotionNotes', { + potText: pot.text + }) + }); +}); + +api.pets = _.transform(api.dropEggs, function(m, egg) { + return _.defaults(m, _.transform(api.hatchingPotions, function(m2, pot) { + return m2[egg.key + "-" + pot.key] = true; + })); +}); + +api.questPets = _.transform(api.questEggs, function(m, egg) { + return _.defaults(m, _.transform(api.hatchingPotions, function(m2, pot) { + return m2[egg.key + "-" + pot.key] = true; + })); +}); + +api.mounts = _.transform(api.dropEggs, function(m, egg) { + return _.defaults(m, _.transform(api.hatchingPotions, function(m2, pot) { + return m2[egg.key + "-" + pot.key] = true; + })); +}); + +api.questMounts = _.transform(api.questEggs, function(m, egg) { + return _.defaults(m, _.transform(api.hatchingPotions, function(m2, pot) { + return m2[egg.key + "-" + pot.key] = true; + })); +}); + +api.food = { + Meat: { + canBuy: true, + canDrop: true, + text: t('foodMeat'), + target: 'Base', + article: '' + }, + Milk: { + canBuy: true, + canDrop: true, + text: t('foodMilk'), + target: 'White', + article: '' + }, + Potatoe: { + canBuy: true, + canDrop: true, + text: t('foodPotatoe'), + target: 'Desert', + article: 'a ' + }, + Strawberry: { + canBuy: true, + canDrop: true, + text: t('foodStrawberry'), + target: 'Red', + article: 'a ' + }, + Chocolate: { + canBuy: true, + canDrop: true, + text: t('foodChocolate'), + target: 'Shade', + article: '' + }, + Fish: { + canBuy: true, + canDrop: true, + text: t('foodFish'), + target: 'Skeleton', + article: 'a ' + }, + RottenMeat: { + canBuy: true, + canDrop: true, + text: t('foodRottenMeat'), + target: 'Zombie', + article: '' + }, + CottonCandyPink: { + canBuy: true, + canDrop: true, + text: t('foodCottonCandyPink'), + target: 'CottonCandyPink', + article: '' + }, + CottonCandyBlue: { + canBuy: true, + canDrop: true, + text: t('foodCottonCandyBlue'), + target: 'CottonCandyBlue', + article: '' + }, + Honey: { + canBuy: true, + canDrop: true, + text: t('foodHoney'), + target: 'Golden', + article: '' + }, + Saddle: { + canBuy: true, + canDrop: false, + text: t('foodSaddleText'), + value: 5, + notes: t('foodSaddleNotes') + }, + Cake_Skeleton: { + canBuy: false, + canDrop: false, + text: t('foodCakeSkeleton'), + target: 'Skeleton', + article: '' + }, + Cake_Base: { + canBuy: false, + canDrop: false, + text: t('foodCakeBase'), + target: 'Base', + article: '' + }, + Cake_CottonCandyBlue: { + canBuy: false, + canDrop: false, + text: t('foodCakeCottonCandyBlue'), + target: 'CottonCandyBlue', + article: '' + }, + Cake_CottonCandyPink: { + canBuy: false, + canDrop: false, + text: t('foodCakeCottonCandyPink'), + target: 'CottonCandyPink', + article: '' + }, + Cake_Shade: { + canBuy: false, + canDrop: false, + text: t('foodCakeShade'), + target: 'Shade', + article: '' + }, + Cake_White: { + canBuy: false, + canDrop: false, + text: t('foodCakeWhite'), + target: 'White', + article: '' + }, + Cake_Golden: { + canBuy: false, + canDrop: false, + text: t('foodCakeGolden'), + target: 'Golden', + article: '' + }, + Cake_Zombie: { + canBuy: false, + canDrop: false, + text: t('foodCakeZombie'), + target: 'Zombie', + article: '' + }, + Cake_Desert: { + canBuy: false, + canDrop: false, + text: t('foodCakeDesert'), + target: 'Desert', + article: '' + }, + Cake_Red: { + canBuy: false, + canDrop: false, + text: t('foodCakeRed'), + target: 'Red', + article: '' + }, + Candy_Skeleton: { + canBuy: false, + canDrop: false, + text: t('foodCandySkeleton'), + target: 'Skeleton', + article: '' + }, + Candy_Base: { + canBuy: false, + canDrop: false, + text: t('foodCandyBase'), + target: 'Base', + article: '' + }, + Candy_CottonCandyBlue: { + canBuy: false, + canDrop: false, + text: t('foodCandyCottonCandyBlue'), + target: 'CottonCandyBlue', + article: '' + }, + Candy_CottonCandyPink: { + canBuy: false, + canDrop: false, + text: t('foodCandyCottonCandyPink'), + target: 'CottonCandyPink', + article: '' + }, + Candy_Shade: { + canBuy: false, + canDrop: false, + text: t('foodCandyShade'), + target: 'Shade', + article: '' + }, + Candy_White: { + canBuy: false, + canDrop: false, + text: t('foodCandyWhite'), + target: 'White', + article: '' + }, + Candy_Golden: { + canBuy: false, + canDrop: false, + text: t('foodCandyGolden'), + target: 'Golden', + article: '' + }, + Candy_Zombie: { + canBuy: false, + canDrop: false, + text: t('foodCandyZombie'), + target: 'Zombie', + article: '' + }, + Candy_Desert: { + canBuy: false, + canDrop: false, + text: t('foodCandyDesert'), + target: 'Desert', + article: '' + }, + Candy_Red: { + canBuy: false, + canDrop: false, + text: t('foodCandyRed'), + target: 'Red', + article: '' + } +}; + +_.each(api.food, function(food, key) { + return _.defaults(food, { + value: 1, + key: key, + notes: t('foodNotes') + }); +}); + +api.quests = { + dilatory: { + text: t("questDilatoryText"), + notes: t("questDilatoryNotes"), + completion: t("questDilatoryCompletion"), + value: 0, + canBuy: false, + boss: { + name: t("questDilatoryBoss"), + hp: 5000000, + str: 1, + def: 1, + rage: { + title: t("questDilatoryBossRageTitle"), + description: t("questDilatoryBossRageDescription"), + value: 4000000, + tavern: t('questDilatoryBossRageTavern'), + stables: t('questDilatoryBossRageStables'), + market: t('questDilatoryBossRageMarket') + } + }, + drop: { + items: [ + { + type: 'pets', + key: 'MantisShrimp-Base', + text: t('questDilatoryDropMantisShrimpPet') + }, { + type: 'mounts', + key: 'MantisShrimp-Base', + text: t('questDilatoryDropMantisShrimpMount') + }, { + type: 'food', + key: 'Meat', + text: t('foodMeat') + }, { + type: 'food', + key: 'Milk', + text: t('foodMilk') + }, { + type: 'food', + key: 'Potatoe', + text: t('foodPotatoe') + }, { + type: 'food', + key: 'Strawberry', + text: t('foodStrawberry') + }, { + type: 'food', + key: 'Chocolate', + text: t('foodChocolate') + }, { + type: 'food', + key: 'Fish', + text: t('foodFish') + }, { + type: 'food', + key: 'RottenMeat', + text: t('foodRottenMeat') + }, { + type: 'food', + key: 'CottonCandyPink', + text: t('foodCottonCandyPink') + }, { + type: 'food', + key: 'CottonCandyBlue', + text: t('foodCottonCandyBlue') + }, { + type: 'food', + key: 'Honey', + text: t('foodHoney') + } + ], + gp: 0, + exp: 0 + } + }, + stressbeast: { + text: t("questStressbeastText"), + notes: t("questStressbeastNotes"), + completion: t("questStressbeastCompletion"), + completionChat: t("questStressbeastCompletionChat"), + value: 0, + canBuy: false, + boss: { + name: t("questStressbeastBoss"), + hp: 2750000, + str: 1, + def: 1, + rage: { + title: t("questStressbeastBossRageTitle"), + description: t("questStressbeastBossRageDescription"), + value: 1450000, + healing: .3, + stables: t('questStressbeastBossRageStables'), + bailey: t('questStressbeastBossRageBailey'), + guide: t('questStressbeastBossRageGuide') + }, + desperation: { + threshold: 500000, + str: 3.5, + def: 2, + text: t('questStressbeastDesperation') + } + }, + drop: { + items: [ + { + type: 'pets', + key: 'Mammoth-Base', + text: t('questStressbeastDropMammothPet') + }, { + type: 'mounts', + key: 'Mammoth-Base', + text: t('questStressbeastDropMammothMount') + }, { + type: 'food', + key: 'Meat', + text: t('foodMeat') + }, { + type: 'food', + key: 'Milk', + text: t('foodMilk') + }, { + type: 'food', + key: 'Potatoe', + text: t('foodPotatoe') + }, { + type: 'food', + key: 'Strawberry', + text: t('foodStrawberry') + }, { + type: 'food', + key: 'Chocolate', + text: t('foodChocolate') + }, { + type: 'food', + key: 'Fish', + text: t('foodFish') + }, { + type: 'food', + key: 'RottenMeat', + text: t('foodRottenMeat') + }, { + type: 'food', + key: 'CottonCandyPink', + text: t('foodCottonCandyPink') + }, { + type: 'food', + key: 'CottonCandyBlue', + text: t('foodCottonCandyBlue') + }, { + type: 'food', + key: 'Honey', + text: t('foodHoney') + } + ], + gp: 0, + exp: 0 + } + }, + evilsanta: { + canBuy: false, + text: t('questEvilSantaText'), + notes: t('questEvilSantaNotes'), + completion: t('questEvilSantaCompletion'), + value: 4, + boss: { + name: t('questEvilSantaBoss'), + hp: 300, + str: 1 + }, + drop: { + items: [ + { + type: 'mounts', + key: 'BearCub-Polar', + text: t('questEvilSantaDropBearCubPolarMount') + } + ], + gp: 20, + exp: 100 + } + }, + evilsanta2: { + canBuy: false, + text: t('questEvilSanta2Text'), + notes: t('questEvilSanta2Notes'), + completion: t('questEvilSanta2Completion'), + value: 4, + previous: 'evilsanta', + collect: { + tracks: { + text: t('questEvilSanta2CollectTracks'), + count: 20 + }, + branches: { + text: t('questEvilSanta2CollectBranches'), + count: 10 + } + }, + drop: { + items: [ + { + type: 'pets', + key: 'BearCub-Polar', + text: t('questEvilSanta2DropBearCubPolarPet') + } + ], + gp: 20, + exp: 100 + } + }, + gryphon: { + text: t('questGryphonText'), + notes: t('questGryphonNotes'), + completion: t('questGryphonCompletion'), + value: 4, + boss: { + name: t('questGryphonBoss'), + hp: 300, + str: 1.5 + }, + drop: { + items: [ + { + type: 'eggs', + key: 'Gryphon', + text: t('questGryphonDropGryphonEgg') + }, { + type: 'eggs', + key: 'Gryphon', + text: t('questGryphonDropGryphonEgg') + }, { + type: 'eggs', + key: 'Gryphon', + text: t('questGryphonDropGryphonEgg') + } + ], + gp: 25, + exp: 125 + } + }, + hedgehog: { + text: t('questHedgehogText'), + notes: t('questHedgehogNotes'), + completion: t('questHedgehogCompletion'), + value: 4, + boss: { + name: t('questHedgehogBoss'), + hp: 400, + str: 1.25 + }, + drop: { + items: [ + { + type: 'eggs', + key: 'Hedgehog', + text: t('questHedgehogDropHedgehogEgg') + }, { + type: 'eggs', + key: 'Hedgehog', + text: t('questHedgehogDropHedgehogEgg') + }, { + type: 'eggs', + key: 'Hedgehog', + text: t('questHedgehogDropHedgehogEgg') + } + ], + gp: 30, + exp: 125 + } + }, + ghost_stag: { + text: t('questGhostStagText'), + notes: t('questGhostStagNotes'), + completion: t('questGhostStagCompletion'), + value: 4, + boss: { + name: t('questGhostStagBoss'), + hp: 1200, + str: 2.5 + }, + drop: { + items: [ + { + type: 'eggs', + key: 'Deer', + text: t('questGhostStagDropDeerEgg') + }, { + type: 'eggs', + key: 'Deer', + text: t('questGhostStagDropDeerEgg') + }, { + type: 'eggs', + key: 'Deer', + text: t('questGhostStagDropDeerEgg') + } + ], + gp: 80, + exp: 800 + } + }, + vice1: { + text: t('questVice1Text'), + notes: t('questVice1Notes'), + value: 4, + lvl: 30, + boss: { + name: t('questVice1Boss'), + hp: 750, + str: 1.5 + }, + drop: { + items: [ + { + type: 'quests', + key: "vice2", + text: t('questVice1DropVice2Quest') + } + ], + gp: 20, + exp: 100 + } + }, + vice2: { + text: t('questVice2Text'), + notes: t('questVice2Notes'), + value: 4, + lvl: 35, + previous: 'vice1', + collect: { + lightCrystal: { + text: t('questVice2CollectLightCrystal'), + count: 45 + } + }, + drop: { + items: [ + { + type: 'quests', + key: 'vice3', + text: t('questVice2DropVice3Quest') + } + ], + gp: 20, + exp: 75 + } + }, + vice3: { + text: t('questVice3Text'), + notes: t('questVice3Notes'), + completion: t('questVice3Completion'), + previous: 'vice2', + value: 4, + lvl: 40, + boss: { + name: t('questVice3Boss'), + hp: 1500, + str: 3 + }, + drop: { + items: [ + { + type: 'gear', + key: "weapon_special_2", + text: t('questVice3DropWeaponSpecial2') + }, { + type: 'eggs', + key: 'Dragon', + text: t('questVice3DropDragonEgg') + }, { + type: 'eggs', + key: 'Dragon', + text: t('questVice3DropDragonEgg') + }, { + type: 'hatchingPotions', + key: 'Shade', + text: t('questVice3DropShadeHatchingPotion') + }, { + type: 'hatchingPotions', + key: 'Shade', + text: t('questVice3DropShadeHatchingPotion') + } + ], + gp: 100, + exp: 1000 + } + }, + egg: { + text: t('questEggHuntText'), + notes: t('questEggHuntNotes'), + completion: t('questEggHuntCompletion'), + value: 1, + canBuy: false, + collect: { + plainEgg: { + text: t('questEggHuntCollectPlainEgg'), + count: 100 + } + }, + drop: { + items: [ + { + type: 'eggs', + key: 'Egg', + text: t('questEggHuntDropPlainEgg') + }, { + type: 'eggs', + key: 'Egg', + text: t('questEggHuntDropPlainEgg') + }, { + type: 'eggs', + key: 'Egg', + text: t('questEggHuntDropPlainEgg') + }, { + type: 'eggs', + key: 'Egg', + text: t('questEggHuntDropPlainEgg') + }, { + type: 'eggs', + key: 'Egg', + text: t('questEggHuntDropPlainEgg') + }, { + type: 'eggs', + key: 'Egg', + text: t('questEggHuntDropPlainEgg') + }, { + type: 'eggs', + key: 'Egg', + text: t('questEggHuntDropPlainEgg') + }, { + type: 'eggs', + key: 'Egg', + text: t('questEggHuntDropPlainEgg') + }, { + type: 'eggs', + key: 'Egg', + text: t('questEggHuntDropPlainEgg') + }, { + type: 'eggs', + key: 'Egg', + text: t('questEggHuntDropPlainEgg') + } + ], + gp: 0, + exp: 0 + } + }, + rat: { + text: t('questRatText'), + notes: t('questRatNotes'), + completion: t('questRatCompletion'), + value: 4, + boss: { + name: t('questRatBoss'), + hp: 1200, + str: 2.5 + }, + drop: { + items: [ + { + type: 'eggs', + key: 'Rat', + text: t('questRatDropRatEgg') + }, { + type: 'eggs', + key: 'Rat', + text: t('questRatDropRatEgg') + }, { + type: 'eggs', + key: 'Rat', + text: t('questRatDropRatEgg') + } + ], + gp: 80, + exp: 800 + } + }, + octopus: { + text: t('questOctopusText'), + notes: t('questOctopusNotes'), + completion: t('questOctopusCompletion'), + value: 4, + boss: { + name: t('questOctopusBoss'), + hp: 1200, + str: 2.5 + }, + drop: { + items: [ + { + type: 'eggs', + key: 'Octopus', + text: t('questOctopusDropOctopusEgg') + }, { + type: 'eggs', + key: 'Octopus', + text: t('questOctopusDropOctopusEgg') + }, { + type: 'eggs', + key: 'Octopus', + text: t('questOctopusDropOctopusEgg') + } + ], + gp: 80, + exp: 800 + } + }, + dilatory_derby: { + text: t('questSeahorseText'), + notes: t('questSeahorseNotes'), + completion: t('questSeahorseCompletion'), + value: 4, + boss: { + name: t('questSeahorseBoss'), + hp: 300, + str: 1.5 + }, + drop: { + items: [ + { + type: 'eggs', + key: 'Seahorse', + text: t('questSeahorseDropSeahorseEgg') + }, { + type: 'eggs', + key: 'Seahorse', + text: t('questSeahorseDropSeahorseEgg') + }, { + type: 'eggs', + key: 'Seahorse', + text: t('questSeahorseDropSeahorseEgg') + } + ], + gp: 25, + exp: 125 + } + }, + atom1: { + text: t('questAtom1Text'), + notes: t('questAtom1Notes'), + value: 4, + lvl: 15, + collect: { + soapBars: { + text: t('questAtom1CollectSoapBars'), + count: 20 + } + }, + drop: { + items: [ + { + type: 'quests', + key: "atom2", + text: t('questAtom1Drop') + } + ], + gp: 7, + exp: 50 + } + }, + atom2: { + text: t('questAtom2Text'), + notes: t('questAtom2Notes'), + previous: 'atom1', + value: 4, + lvl: 15, + boss: { + name: t('questAtom2Boss'), + hp: 300, + str: 1 + }, + drop: { + items: [ + { + type: 'quests', + key: "atom3", + text: t('questAtom2Drop') + } + ], + gp: 20, + exp: 100 + } + }, + atom3: { + text: t('questAtom3Text'), + notes: t('questAtom3Notes'), + previous: 'atom2', + completion: t('questAtom3Completion'), + value: 4, + lvl: 15, + boss: { + name: t('questAtom3Boss'), + hp: 800, + str: 1.5 + }, + drop: { + items: [ + { + type: 'gear', + key: "head_special_2", + text: t('headSpecial2Text') + }, { + type: 'hatchingPotions', + key: "Base", + text: t('questAtom3DropPotion') + }, { + type: 'hatchingPotions', + key: "Base", + text: t('questAtom3DropPotion') + } + ], + gp: 25, + exp: 125 + } + }, + harpy: { + text: t('questHarpyText'), + notes: t('questHarpyNotes'), + completion: t('questHarpyCompletion'), + value: 4, + boss: { + name: t('questHarpyBoss'), + hp: 600, + str: 1.5 + }, + drop: { + items: [ + { + type: 'eggs', + key: 'Parrot', + text: t('questHarpyDropParrotEgg') + }, { + type: 'eggs', + key: 'Parrot', + text: t('questHarpyDropParrotEgg') + }, { + type: 'eggs', + key: 'Parrot', + text: t('questHarpyDropParrotEgg') + } + ], + gp: 43, + exp: 350 + } + }, + rooster: { + text: t('questRoosterText'), + notes: t('questRoosterNotes'), + completion: t('questRoosterCompletion'), + value: 4, + boss: { + name: t('questRoosterBoss'), + hp: 300, + str: 1.5 + }, + drop: { + items: [ + { + type: 'eggs', + key: 'Rooster', + text: t('questRoosterDropRoosterEgg') + }, { + type: 'eggs', + key: 'Rooster', + text: t('questRoosterDropRoosterEgg') + }, { + type: 'eggs', + key: 'Rooster', + text: t('questRoosterDropRoosterEgg') + } + ], + gp: 25, + exp: 125 + } + }, + spider: { + text: t('questSpiderText'), + notes: t('questSpiderNotes'), + completion: t('questSpiderCompletion'), + value: 4, + boss: { + name: t('questSpiderBoss'), + hp: 400, + str: 1.5 + }, + drop: { + items: [ + { + type: 'eggs', + key: 'Spider', + text: t('questSpiderDropSpiderEgg') + }, { + type: 'eggs', + key: 'Spider', + text: t('questSpiderDropSpiderEgg') + }, { + type: 'eggs', + key: 'Spider', + text: t('questSpiderDropSpiderEgg') + } + ], + gp: 31, + exp: 200 + } + }, + moonstone1: { + text: t('questMoonstone1Text'), + notes: t('questMoonstone1Notes'), + value: 4, + lvl: 60, + collect: { + moonstone: { + text: t('questMoonstone1CollectMoonstone'), + count: 500 + } + }, + drop: { + items: [ + { + type: 'quests', + key: "moonstone2", + text: t('questMoonstone1DropMoonstone2Quest') + } + ], + gp: 50, + exp: 100 + } + }, + moonstone2: { + text: t('questMoonstone2Text'), + notes: t('questMoonstone2Notes'), + value: 4, + lvl: 65, + previous: 'moonstone1', + boss: { + name: t('questMoonstone2Boss'), + hp: 1500, + str: 3 + }, + drop: { + items: [ + { + type: 'quests', + key: 'moonstone3', + text: t('questMoonstone2DropMoonstone3Quest') + } + ], + gp: 500, + exp: 1000 + } + }, + moonstone3: { + text: t('questMoonstone3Text'), + notes: t('questMoonstone3Notes'), + completion: t('questMoonstone3Completion'), + previous: 'moonstone2', + value: 4, + lvl: 70, + boss: { + name: t('questMoonstone3Boss'), + hp: 2000, + str: 3.5 + }, + drop: { + items: [ + { + type: 'gear', + key: "armor_special_2", + text: t('armorSpecial2Text') + }, { + type: 'food', + key: 'RottenMeat', + text: t('questMoonstone3DropRottenMeat') + }, { + type: 'food', + key: 'RottenMeat', + text: t('questMoonstone3DropRottenMeat') + }, { + type: 'food', + key: 'RottenMeat', + text: t('questMoonstone3DropRottenMeat') + }, { + type: 'food', + key: 'RottenMeat', + text: t('questMoonstone3DropRottenMeat') + }, { + type: 'food', + key: 'RottenMeat', + text: t('questMoonstone3DropRottenMeat') + }, { + type: 'hatchingPotions', + key: 'Zombie', + text: t('questMoonstone3DropZombiePotion') + }, { + type: 'hatchingPotions', + key: 'Zombie', + text: t('questMoonstone3DropZombiePotion') + }, { + type: 'hatchingPotions', + key: 'Zombie', + text: t('questMoonstone3DropZombiePotion') + } + ], + gp: 900, + exp: 1500 + } + }, + goldenknight1: { + text: t('questGoldenknight1Text'), + notes: t('questGoldenknight1Notes'), + value: 4, + lvl: 40, + collect: { + testimony: { + text: t('questGoldenknight1CollectTestimony'), + count: 300 + } + }, + drop: { + items: [ + { + type: 'quests', + key: "goldenknight2", + text: t('questGoldenknight1DropGoldenknight2Quest') + } + ], + gp: 15, + exp: 120 + } + }, + goldenknight2: { + text: t('questGoldenknight2Text'), + notes: t('questGoldenknight2Notes'), + value: 4, + previous: 'goldenknight1', + lvl: 45, + boss: { + name: t('questGoldenknight2Boss'), + hp: 1000, + str: 3 + }, + drop: { + items: [ + { + type: 'quests', + key: 'goldenknight3', + text: t('questGoldenknight2DropGoldenknight3Quest') + } + ], + gp: 75, + exp: 750 + } + }, + goldenknight3: { + text: t('questGoldenknight3Text'), + notes: t('questGoldenknight3Notes'), + completion: t('questGoldenknight3Completion'), + previous: 'goldenknight2', + value: 4, + lvl: 50, + boss: { + name: t('questGoldenknight3Boss'), + hp: 1700, + str: 3.5 + }, + drop: { + items: [ + { + type: 'food', + key: 'Honey', + text: t('questGoldenknight3DropHoney') + }, { + type: 'food', + key: 'Honey', + text: t('questGoldenknight3DropHoney') + }, { + type: 'food', + key: 'Honey', + text: t('questGoldenknight3DropHoney') + }, { + type: 'hatchingPotions', + key: 'Golden', + text: t('questGoldenknight3DropGoldenPotion') + }, { + type: 'hatchingPotions', + key: 'Golden', + text: t('questGoldenknight3DropGoldenPotion') + }, { + type: 'gear', + key: 'shield_special_goldenknight', + text: t('questGoldenknight3DropWeapon') + } + ], + gp: 900, + exp: 1500 + } + }, + basilist: { + text: t('questBasilistText'), + notes: t('questBasilistNotes'), + completion: t('questBasilistCompletion'), + canBuy: false, + value: 4, + boss: { + name: t('questBasilistBoss'), + hp: 100, + str: 0.5 + }, + drop: { + gp: 8, + exp: 42 + } + }, + owl: { + text: t('questOwlText'), + notes: t('questOwlNotes'), + completion: t('questOwlCompletion'), + value: 4, + boss: { + name: t('questOwlBoss'), + hp: 500, + str: 1.5 + }, + drop: { + items: [ + { + type: 'eggs', + key: 'Owl', + text: t('questOwlDropOwlEgg') + }, { + type: 'eggs', + key: 'Owl', + text: t('questOwlDropOwlEgg') + }, { + type: 'eggs', + key: 'Owl', + text: t('questOwlDropOwlEgg') + } + ], + gp: 37, + exp: 275 + } + }, + penguin: { + text: t('questPenguinText'), + notes: t('questPenguinNotes'), + completion: t('questPenguinCompletion'), + value: 4, + boss: { + name: t('questPenguinBoss'), + hp: 400, + str: 1.5 + }, + drop: { + items: [ + { + type: 'eggs', + key: 'Penguin', + text: t('questPenguinDropPenguinEgg') + }, { + type: 'eggs', + key: 'Penguin', + text: t('questPenguinDropPenguinEgg') + }, { + type: 'eggs', + key: 'Penguin', + text: t('questPenguinDropPenguinEgg') + } + ], + gp: 31, + exp: 200 + } + }, + trex: { + text: t('questTRexText'), + notes: t('questTRexNotes'), + completion: t('questTRexCompletion'), + value: 4, + boss: { + name: t('questTRexBoss'), + hp: 800, + str: 2 + }, + drop: { + items: [ + { + type: 'eggs', + key: 'TRex', + text: t('questTRexDropTRexEgg') + }, { + type: 'eggs', + key: 'TRex', + text: t('questTRexDropTRexEgg') + }, { + type: 'eggs', + key: 'TRex', + text: t('questTRexDropTRexEgg') + } + ], + gp: 55, + exp: 500 + } + }, + trex_undead: { + text: t('questTRexUndeadText'), + notes: t('questTRexUndeadNotes'), + completion: t('questTRexUndeadCompletion'), + value: 4, + boss: { + name: t('questTRexUndeadBoss'), + hp: 500, + str: 2, + rage: { + title: t("questTRexUndeadRageTitle"), + description: t("questTRexUndeadRageDescription"), + value: 50, + healing: .3, + effect: t('questTRexUndeadRageEffect') + } + }, + drop: { + items: [ + { + type: 'eggs', + key: 'TRex', + text: t('questTRexDropTRexEgg') + }, { + type: 'eggs', + key: 'TRex', + text: t('questTRexDropTRexEgg') + }, { + type: 'eggs', + key: 'TRex', + text: t('questTRexDropTRexEgg') + } + ], + gp: 55, + exp: 500 + } + } +}; + +_.each(api.quests, function(v, key) { + var b; + _.defaults(v, { + key: key, + canBuy: true + }); + b = v.boss; + if (b) { + _.defaults(b, { + str: 1, + def: 1 + }); + if (b.rage) { + return _.defaults(b.rage, { + title: t('bossRageTitle'), + description: t('bossRageDescription') + }); + } + } +}); + +api.backgrounds = { + backgrounds062014: { + beach: { + text: t('backgroundBeachText'), + notes: t('backgroundBeachNotes') + }, + fairy_ring: { + text: t('backgroundFairyRingText'), + notes: t('backgroundFairyRingNotes') + }, + forest: { + text: t('backgroundForestText'), + notes: t('backgroundForestNotes') + } + }, + backgrounds072014: { + open_waters: { + text: t('backgroundOpenWatersText'), + notes: t('backgroundOpenWatersNotes') + }, + coral_reef: { + text: t('backgroundCoralReefText'), + notes: t('backgroundCoralReefNotes') + }, + seafarer_ship: { + text: t('backgroundSeafarerShipText'), + notes: t('backgroundSeafarerShipNotes') + } + }, + backgrounds082014: { + volcano: { + text: t('backgroundVolcanoText'), + notes: t('backgroundVolcanoNotes') + }, + clouds: { + text: t('backgroundCloudsText'), + notes: t('backgroundCloudsNotes') + }, + dusty_canyons: { + text: t('backgroundDustyCanyonsText'), + notes: t('backgroundDustyCanyonsNotes') + } + }, + backgrounds092014: { + thunderstorm: { + text: t('backgroundThunderstormText'), + notes: t('backgroundThunderstormNotes') + }, + autumn_forest: { + text: t('backgroundAutumnForestText'), + notes: t('backgroundAutumnForestNotes') + }, + harvest_fields: { + text: t('backgroundHarvestFieldsText'), + notes: t('backgroundHarvestFieldsNotes') + } + }, + backgrounds102014: { + graveyard: { + text: t('backgroundGraveyardText'), + notes: t('backgroundGraveyardNotes') + }, + haunted_house: { + text: t('backgroundHauntedHouseText'), + notes: t('backgroundHauntedHouseNotes') + }, + pumpkin_patch: { + text: t('backgroundPumpkinPatchText'), + notes: t('backgroundPumpkinPatchNotes') + } + }, + backgrounds112014: { + harvest_feast: { + text: t('backgroundHarvestFeastText'), + notes: t('backgroundHarvestFeastNotes') + }, + sunset_meadow: { + text: t('backgroundSunsetMeadowText'), + notes: t('backgroundSunsetMeadowNotes') + }, + starry_skies: { + text: t('backgroundStarrySkiesText'), + notes: t('backgroundStarrySkiesNotes') + } + }, + backgrounds122014: { + iceberg: { + text: t('backgroundIcebergText'), + notes: t('backgroundIcebergNotes') + }, + twinkly_lights: { + text: t('backgroundTwinklyLightsText'), + notes: t('backgroundTwinklyLightsNotes') + }, + south_pole: { + text: t('backgroundSouthPoleText'), + notes: t('backgroundSouthPoleNotes') + } + }, + backgrounds012015: { + ice_cave: { + text: t('backgroundIceCaveText'), + notes: t('backgroundIceCaveNotes') + }, + frigid_peak: { + text: t('backgroundFrigidPeakText'), + notes: t('backgroundFrigidPeakNotes') + }, + snowy_pines: { + text: t('backgroundSnowyPinesText'), + notes: t('backgroundSnowyPinesNotes') + } + }, + backgrounds022015: { + blacksmithy: { + text: t('backgroundBlacksmithyText'), + notes: t('backgroundBlacksmithyNotes') + }, + crystal_cave: { + text: t('backgroundCrystalCaveText'), + notes: t('backgroundCrystalCaveNotes') + }, + distant_castle: { + text: t('backgroundDistantCastleText'), + notes: t('backgroundDistantCastleNotes') + } + } +}; + +api.subscriptionBlocks = { + basic_earned: { + months: 1, + price: 5 + }, + basic_3mo: { + months: 3, + price: 15 + }, + basic_6mo: { + months: 6, + price: 30 + }, + google_6mo: { + months: 6, + price: 24, + discount: true, + original: 30 + }, + basic_12mo: { + months: 12, + price: 48 + } +}; + +_.each(api.subscriptionBlocks, function(b, k) { + return b.key = k; +}); + +repeat = { + m: true, + t: true, + w: true, + th: true, + f: true, + s: true, + su: true +}; + +api.userDefaults = { + habits: [ + { + type: 'habit', + text: t('defaultHabit1Text'), + notes: t('defaultHabit1Notes'), + value: 0, + up: true, + down: false, + attribute: 'per' + }, { + type: 'habit', + text: t('defaultHabit2Text'), + notes: t('defaultHabit2Notes'), + value: 0, + up: false, + down: true, + attribute: 'con' + }, { + type: 'habit', + text: t('defaultHabit3Text'), + notes: t('defaultHabit3Notes'), + value: 0, + up: true, + down: true, + attribute: 'str' + } + ], + dailys: [ + { + type: 'daily', + text: t('defaultDaily1Text'), + notes: t('defaultDaily1Notes'), + value: 0, + completed: false, + repeat: repeat, + attribute: 'per' + }, { + type: 'daily', + text: t('defaultDaily2Text'), + notes: t('defaultDaily2Notes'), + value: 3, + completed: false, + repeat: repeat, + attribute: 'con' + }, { + type: 'daily', + text: t('defaultDaily3Text'), + notes: t('defaultDaily3Notes'), + value: -10, + completed: false, + repeat: repeat, + attribute: 'int' + }, { + type: 'daily', + text: t('defaultDaily4Text'), + notes: t('defaultDaily4Notes'), + checklist: [ + { + completed: true, + text: t('defaultDaily4Checklist1') + }, { + completed: false, + text: t('defaultDaily4Checklist2') + }, { + completed: false, + text: t('defaultDaily4Checklist3') + } + ], + completed: false, + repeat: repeat, + attribute: 'str' + } + ], + todos: [ + { + type: 'todo', + text: t('defaultTodo1Text'), + notes: t('defaultTodoNotes'), + completed: false, + attribute: 'int' + }, { + type: 'todo', + text: t('defaultTodo2Text'), + notes: t('defaultTodoNotes'), + checklist: [ + { + completed: false, + text: t('defaultTodo2Checklist1') + }, { + completed: false, + text: t('defaultTodo2Checklist2') + }, { + completed: false, + text: t('defaultTodo2Checklist3') + } + ], + completed: false, + attribute: 'per' + }, { + type: 'todo', + text: t('defaultTodo3Text'), + notes: t('defaultTodoNotes'), + checklist: [ + { + completed: false, + text: t('defaultTodo3Checklist1') + }, { + completed: false, + text: t('defaultTodo3Checklist2') + }, { + completed: false, + text: t('defaultTodo3Checklist3') + } + ], + completed: false, + attribute: 'per' + }, { + type: 'todo', + text: t('defaultTodo4Text'), + notes: t('defaultTodoNotes'), + checklist: [ + { + completed: false, + text: t('defaultTodo4Checklist1') + }, { + completed: false, + text: t('defaultTodo4Checklist2') + }, { + completed: false, + text: t('defaultTodo4Checklist3') + } + ], + completed: false, + attribute: 'per' + }, { + type: 'todo', + text: t('defaultTodo5Text'), + notes: t('defaultTodoNotes'), + completed: false, + attribute: 'per' + } + ], + rewards: [ + { + type: 'reward', + text: t('defaultReward1Text'), + notes: t('defaultReward1Notes'), + value: 20 + }, { + type: 'reward', + text: t('defaultReward2Text'), + notes: t('defaultReward2Notes'), + value: 10 + } + ], + tags: [ + { + name: t('defaultTag1') + }, { + name: t('defaultTag2') + }, { + name: t('defaultTag3') + } + ] +}; + + +},{"./i18n.coffee":3,"lodash":6,"moment":7}],3:[function(require,module,exports){ +var _; + +_ = require('lodash'); + +module.exports = { + strings: null, + translations: {}, + t: function(stringName) { + var clonedVars, e, locale, string, stringNotFound, vars; + vars = arguments[1]; + if (_.isString(arguments[1])) { + vars = null; + locale = arguments[1]; + } else if (arguments[2] != null) { + vars = arguments[1]; + locale = arguments[2]; + } + if ((locale == null) || (!module.exports.strings && !module.exports.translations[locale])) { + locale = 'en'; + } + string = !module.exports.strings ? module.exports.translations[locale][stringName] : module.exports.strings[stringName]; + clonedVars = _.clone(vars) || {}; + clonedVars.locale = locale; + if (string) { + try { + return _.template(string, clonedVars); + } catch (_error) { + e = _error; + return 'Error processing string. Please report to http://github.com/HabitRPG/habitrpg.'; + } + } else { + stringNotFound = !module.exports.strings ? module.exports.translations[locale].stringNotFound : module.exports.strings.stringNotFound; + try { + return _.template(stringNotFound, { + string: stringName + }); + } catch (_error) { + e = _error; + return 'Error processing string. Please report to http://github.com/HabitRPG/habitrpg.'; + } + } + } +}; + + +},{"lodash":6}],4:[function(require,module,exports){ +(function (process){ +var $w, api, content, i18n, moment, preenHistory, sanitizeOptions, sortOrder, _, + __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; }; + +moment = require('moment'); + +_ = require('lodash'); + +content = require('./content.coffee'); + +i18n = require('./i18n.coffee'); + +api = module.exports = {}; + +api.i18n = i18n; + +$w = api.$w = function(s) { + return s.split(' '); +}; + +api.dotSet = function(obj, path, val) { + var arr; + arr = path.split('.'); + return _.reduce(arr, (function(_this) { + return function(curr, next, index) { + if ((arr.length - 1) === index) { + curr[next] = val; + } + return curr[next] != null ? curr[next] : curr[next] = {}; + }; + })(this), obj); +}; + +api.dotGet = function(obj, path) { + return _.reduce(path.split('.'), ((function(_this) { + return function(curr, next) { + return curr != null ? curr[next] : void 0; + }; + })(this)), obj); +}; + + +/* + Reflists are arrays, but stored as objects. Mongoose has a helluvatime working with arrays (the main problem for our + syncing issues) - so the goal is to move away from arrays to objects, since mongoose can reference elements by ID + no problem. To maintain sorting, we use these helper functions: + */ + +api.refPush = function(reflist, item, prune) { + if (prune == null) { + prune = 0; + } + item.sort = _.isEmpty(reflist) ? 0 : _.max(reflist, 'sort').sort + 1; + if (!(item.id && !reflist[item.id])) { + item.id = api.uuid(); + } + return reflist[item.id] = item; +}; + +api.planGemLimits = { + convRate: 20, + convCap: 25 +}; + + +/* + ------------------------------------------------------ + Time / Day + ------------------------------------------------------ + */ + + +/* + Each time we're performing date math (cron, task-due-days, etc), we need to take user preferences into consideration. + Specifically {dayStart} (custom day start) and {timezoneOffset}. This function sanitizes / defaults those values. + {now} is also passed in for various purposes, one example being the test scripts scripts testing different "now" times + */ + +sanitizeOptions = function(o) { + var dayStart, now, timezoneOffset, _ref; + dayStart = !_.isNaN(+o.dayStart) && (0 <= (_ref = +o.dayStart) && _ref <= 24) ? +o.dayStart : 0; + timezoneOffset = o.timezoneOffset ? +o.timezoneOffset : +moment().zone(); + now = o.now ? moment(o.now).zone(timezoneOffset) : moment(+(new Date)).zone(timezoneOffset); + return { + dayStart: dayStart, + timezoneOffset: timezoneOffset, + now: now + }; +}; + +api.startOfWeek = api.startOfWeek = function(options) { + var o; + if (options == null) { + options = {}; + } + o = sanitizeOptions(options); + return moment(o.now).startOf('week'); +}; + +api.startOfDay = function(options) { + var dayStart, o; + if (options == null) { + options = {}; + } + o = sanitizeOptions(options); + dayStart = moment(o.now).startOf('day').add({ + hours: o.dayStart + }); + if (moment(o.now).hour() < o.dayStart) { + dayStart.subtract({ + days: 1 + }); + } + return dayStart; +}; + +api.dayMapping = { + 0: 'su', + 1: 'm', + 2: 't', + 3: 'w', + 4: 'th', + 5: 'f', + 6: 's' +}; + + +/* + Absolute diff from "yesterday" till now + */ + +api.daysSince = function(yesterday, options) { + var o; + if (options == null) { + options = {}; + } + o = sanitizeOptions(options); + return Math.abs(api.startOfDay(_.defaults({ + now: yesterday + }, o)).diff(api.startOfDay(_.defaults({ + now: o.now + }, o)), 'days')); +}; + + +/* + Should the user do this taks on this date, given the task's repeat options and user.preferences.dayStart? + */ + +api.shouldDo = function(day, repeat, options) { + var o, selected; + if (options == null) { + options = {}; + } + if (!repeat) { + return false; + } + o = sanitizeOptions(options); + selected = repeat[api.dayMapping[api.startOfDay(_.defaults({ + now: day + }, o)).day()]]; + return selected; +}; + + +/* + ------------------------------------------------------ + Scoring + ------------------------------------------------------ + */ + +api.tnl = function(lvl) { + return Math.round(((Math.pow(lvl, 2) * 0.25) + (10 * lvl) + 139.75) / 10) * 10; +}; + + +/* + A hyperbola function that creates diminishing returns, so you can't go to infinite (eg, with Exp gain). + {max} The asymptote + {bonus} All the numbers combined for your point bonus (eg, task.value * user.stats.int * critChance, etc) + {halfway} (optional) the point at which the graph starts bending + */ + +api.diminishingReturns = function(bonus, max, halfway) { + if (halfway == null) { + halfway = max / 2; + } + return max * (bonus / (bonus + halfway)); +}; + +api.monod = function(bonus, rateOfIncrease, max) { + return rateOfIncrease * max * bonus / (rateOfIncrease * bonus + max); +}; + + +/* +Preen history for users with > 7 history entries +This takes an infinite array of single day entries [day day day day day...], and turns it into a condensed array +of averages, condensing more the further back in time we go. Eg, 7 entries each for last 7 days; 1 entry each week +of this month; 1 entry for each month of this year; 1 entry per previous year: [day*7 week*4 month*12 year*infinite] + */ + +preenHistory = function(history) { + var newHistory, preen, thisMonth; + history = _.filter(history, function(h) { + return !!h; + }); + newHistory = []; + preen = function(amount, groupBy) { + var groups; + groups = _.chain(history).groupBy(function(h) { + return moment(h.date).format(groupBy); + }).sortBy(function(h, k) { + return k; + }).value(); + groups = groups.slice(-amount); + groups.pop(); + return _.each(groups, function(group) { + newHistory.push({ + date: moment(group[0].date).toDate(), + value: _.reduce(group, (function(m, obj) { + return m + obj.value; + }), 0) / group.length + }); + return true; + }); + }; + preen(50, "YYYY"); + preen(moment().format('MM'), "YYYYMM"); + thisMonth = moment().format('YYYYMM'); + newHistory = newHistory.concat(_.filter(history, function(h) { + return moment(h.date).format('YYYYMM') === thisMonth; + })); + return newHistory; +}; + + +/* + Update the in-browser store with new gear. FIXME this was in user.fns, but it was causing strange issues there + */ + +sortOrder = _.reduce(content.gearTypes, (function(m, v, k) { + m[v] = k; + return m; +}), {}); + +api.updateStore = function(user) { + var changes; + if (!user) { + return; + } + changes = []; + _.each(content.gearTypes, function(type) { + var found; + found = _.find(content.gear.tree[type][user.stats["class"]], function(item) { + return !user.items.gear.owned[item.key]; + }); + if (found) { + changes.push(found); + } + return true; + }); + changes = changes.concat(_.filter(content.gear.flat, function(v) { + var _ref; + return ((_ref = v.klass) === 'special' || _ref === 'mystery') && !user.items.gear.owned[v.key] && (typeof v.canOwn === "function" ? v.canOwn(user) : void 0); + })); + changes.push(content.potion); + return _.sortBy(changes, function(c) { + return sortOrder[c.type]; + }); +}; + + +/* +------------------------------------------------------ +Content +------------------------------------------------------ + */ + +api.content = content; + + +/* +------------------------------------------------------ +Misc Helpers +------------------------------------------------------ + */ + +api.uuid = function() { + return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, function(c) { + var r, v; + r = Math.random() * 16 | 0; + v = (c === "x" ? r : r & 0x3 | 0x8); + return v.toString(16); + }); +}; + +api.countExists = function(items) { + return _.reduce(items, (function(m, v) { + return m + (v ? 1 : 0); + }), 0); +}; + + +/* +Even though Mongoose handles task defaults, we want to make sure defaults are set on the client-side before +sending up to the server for performance + */ + +api.taskDefaults = function(task) { + var defaults, _ref, _ref1, _ref2; + if (task == null) { + task = {}; + } + if (!(task.type && ((_ref = task.type) === 'habit' || _ref === 'daily' || _ref === 'todo' || _ref === 'reward'))) { + task.type = 'habit'; + } + defaults = { + id: api.uuid(), + text: task.id != null ? task.id : '', + notes: '', + priority: 1, + challenge: {}, + attribute: 'str', + dateCreated: new Date() + }; + _.defaults(task, defaults); + if (task.type === 'habit') { + _.defaults(task, { + up: true, + down: true + }); + } + if ((_ref1 = task.type) === 'habit' || _ref1 === 'daily') { + _.defaults(task, { + history: [] + }); + } + if ((_ref2 = task.type) === 'daily' || _ref2 === 'todo') { + _.defaults(task, { + completed: false + }); + } + if (task.type === 'daily') { + _.defaults(task, { + streak: 0, + repeat: { + su: 1, + m: 1, + t: 1, + w: 1, + th: 1, + f: 1, + s: 1 + } + }); + } + task._id = task.id; + if (task.value == null) { + task.value = task.type === 'reward' ? 10 : 0; + } + if (!_.isNumber(task.priority)) { + task.priority = 1; + } + return task; +}; + +api.percent = function(x, y, dir) { + var roundFn; + switch (dir) { + case "up": + roundFn = Math.ceil; + break; + case "down": + roundFn = Math.floor; + break; + default: + roundFn = Math.round; + } + if (x === 0) { + x = 1; + } + return Math.max(0, roundFn(x / y * 100)); +}; + + +/* +Remove whitespace #FIXME are we using this anywwhere? Should we be? + */ + +api.removeWhitespace = function(str) { + if (!str) { + return ''; + } + return str.replace(/\s/g, ''); +}; + + +/* +Encode the download link for .ics iCal file + */ + +api.encodeiCalLink = function(uid, apiToken) { + var loc, _ref; + loc = (typeof window !== "undefined" && window !== null ? window.location.host : void 0) || (typeof process !== "undefined" && process !== null ? (_ref = process.env) != null ? _ref.BASE_URL : void 0 : void 0) || ''; + return encodeURIComponent("http://" + loc + "/v1/users/" + uid + "/calendar.ics?apiToken=" + apiToken); +}; + + +/* +Gold amount from their money + */ + +api.gold = function(num) { + if (num) { + return Math.floor(num); + } else { + return "0"; + } +}; + + +/* +Silver amount from their money + */ + +api.silver = function(num) { + if (num) { + return ("0" + Math.floor((num - Math.floor(num)) * 100)).slice(-2); + } else { + return "00"; + } +}; + + +/* +Task classes given everything about the class + */ + +api.taskClasses = function(task, filters, dayStart, lastCron, showCompleted, main) { + var classes, completed, enabled, filter, repeat, type, value, _ref; + if (filters == null) { + filters = []; + } + if (dayStart == null) { + dayStart = 0; + } + if (lastCron == null) { + lastCron = +(new Date); + } + if (showCompleted == null) { + showCompleted = false; + } + if (main == null) { + main = false; + } + if (!task) { + return; + } + type = task.type, completed = task.completed, value = task.value, repeat = task.repeat; + if (main) { + if (!task._editing) { + for (filter in filters) { + enabled = filters[filter]; + if (enabled && !((_ref = task.tags) != null ? _ref[filter] : void 0)) { + return 'hidden'; + } + } + } + } + classes = type; + if (task._editing) { + classes += " beingEdited"; + } + if (type === 'todo' || type === 'daily') { + if (completed || (type === 'daily' && !api.shouldDo(+(new Date), task.repeat, { + dayStart: dayStart + }))) { + classes += " completed"; + } else { + classes += " uncompleted"; + } + } else if (type === 'habit') { + if (task.down && task.up) { + classes += ' habit-wide'; + } + if (!task.down && !task.up) { + classes += ' habit-narrow'; + } + } + if (value < -20) { + classes += ' color-worst'; + } else if (value < -10) { + classes += ' color-worse'; + } else if (value < -1) { + classes += ' color-bad'; + } else if (value < 1) { + classes += ' color-neutral'; + } else if (value < 5) { + classes += ' color-good'; + } else if (value < 10) { + classes += ' color-better'; + } else { + classes += ' color-best'; + } + return classes; +}; + + +/* +Friendly timestamp + */ + +api.friendlyTimestamp = function(timestamp) { + return moment(timestamp).format('MM/DD h:mm:ss a'); +}; + + +/* +Does user have new chat messages? + */ + +api.newChatMessages = function(messages, lastMessageSeen) { + if (!((messages != null ? messages.length : void 0) > 0)) { + return false; + } + return (messages != null ? messages[0] : void 0) && (messages[0].id !== lastMessageSeen); +}; + + +/* +are any tags active? + */ + +api.noTags = function(tags) { + return _.isEmpty(tags) || _.isEmpty(_.filter(tags, function(t) { + return t; + })); +}; + + +/* +Are there tags applied? + */ + +api.appliedTags = function(userTags, taskTags) { + var arr; + arr = []; + _.each(userTags, function(t) { + if (t == null) { + return; + } + if (taskTags != null ? taskTags[t.id] : void 0) { + return arr.push(t.name); + } + }); + return arr.join(', '); +}; + +api.countPets = function(originalCount, pets) { + var count, pet; + count = originalCount != null ? originalCount : _.size(pets); + for (pet in content.questPets) { + if (pets[pet]) { + count--; + } + } + for (pet in content.specialPets) { + if (pets[pet]) { + count--; + } + } + return count; +}; + +api.countMounts = function(originalCount, mounts) { + var count2, mount; + count2 = originalCount != null ? originalCount : _.size(mounts); + for (mount in content.questPets) { + if (mounts[mount]) { + count2--; + } + } + for (mount in content.specialMounts) { + if (mounts[mount]) { + count2--; + } + } + return count2; +}; + +api.countTriad = function(pets) { + var count3, egg, potion; + count3 = 0; + for (egg in content.dropEggs) { + for (potion in content.hatchingPotions) { + if (pets[egg + "-" + potion] > 0) { + count3++; + } + } + } + return count3; +}; + + +/* +------------------------------------------------------ +User (prototype wrapper to give it ops, helper funcs, and virtuals +------------------------------------------------------ + */ + + +/* +User is now wrapped (both on client and server), adding a few new properties: + * getters (_statsComputed, tasks, etc) + * user.fns, which is a bunch of helper functions + These were originally up above, but they make more sense belonging to the user object so we don't have to pass + the user object all over the place. In fact, we should pull in more functions such as cron(), updateStats(), etc. + * user.ops, which is super important: + +If a function is inside user.ops, it has magical properties. If you call it on the client it updates the user object in +the browser and when it's done it automatically POSTs to the server, calling src/controllers/user.js#OP_NAME (the exact same name +of the op function). The first argument req is {query, body, params}, it's what the express controller function +expects. This means we call our functions as if we were calling an Express route. Eg, instead of score(task, direction), +we call score({params:{id:task.id,direction:direction}}). This also forces us to think about our routes (whether to use +params, query, or body for variables). see http://stackoverflow.com/questions/4024271/rest-api-best-practices-where-to-put-parameters + +If `src/controllers/user.js#OP_NAME` doesn't exist on the server, it's automatically added. It runs the code in user.ops.OP_NAME +to update the user model server-side, then performs `user.save()`. You can see this in action for `user.ops.buy`. That +function doesn't exist on the server - so the client calls it, it updates user in the browser, auto-POSTs to server, server +handles it by calling `user.ops.buy` again (to update user on the server), and then saves. We can do this for +everything that doesn't need any code difference from what's in user.ops.OP_NAME for special-handling server-side. If we +*do* need special handling, just add `src/controllers/user.js#OP_NAME` to override the user.ops.OP_NAME, and be +sure to call user.ops.OP_NAME at some point within the overridden function. + +TODO + * Is this the best way to wrap the user object? I thought of using user.prototype, but user is an object not a Function. + user on the server is a Mongoose model, so we can use prototype - but to do it on the client, we'd probably have to + move to $resource for user + * Move to $resource! + */ + +api.wrap = function(user, main) { + if (main == null) { + main = true; + } + if (user._wrapped) { + return; + } + user._wrapped = true; + if (main) { + user.ops = { + update: function(req, cb) { + _.each(req.body, function(v, k) { + user.fns.dotSet(k, v); + return true; + }); + return typeof cb === "function" ? cb(null, user) : void 0; + }, + sleep: function(req, cb) { + user.preferences.sleep = !user.preferences.sleep; + return typeof cb === "function" ? cb(null, {}) : void 0; + }, + revive: function(req, cb) { + var cl, gearOwned, item, losableItems, lostItem, lostStat, _base; + if (!(user.stats.hp <= 0)) { + return typeof cb === "function" ? cb({ + code: 400, + message: "Cannot revive if not dead" + }) : void 0; + } + _.merge(user.stats, { + hp: 50, + exp: 0, + gp: 0 + }); + if (user.stats.lvl > 1) { + user.stats.lvl--; + } + lostStat = user.fns.randomVal(_.reduce(['str', 'con', 'per', 'int'], (function(m, k) { + if (user.stats[k]) { + m[k] = k; + } + return m; + }), {})); + if (lostStat) { + user.stats[lostStat]--; + } + cl = user.stats["class"]; + gearOwned = (typeof (_base = user.items.gear.owned).toObject === "function" ? _base.toObject() : void 0) || user.items.gear.owned; + losableItems = {}; + _.each(gearOwned, function(v, k) { + var itm; + if (v) { + itm = content.gear.flat['' + k]; + if (itm) { + if ((itm.value > 0 || k === 'weapon_warrior_0') && (itm.klass === cl || (itm.klass === 'special' && (!itm.specialClass || itm.specialClass === cl)))) { + return losableItems['' + k] = '' + k; + } + } + } + }); + lostItem = user.fns.randomVal(losableItems); + if (item = content.gear.flat[lostItem]) { + user.items.gear.owned[lostItem] = false; + if (user.items.gear.equipped[item.type] === lostItem) { + user.items.gear.equipped[item.type] = "" + item.type + "_base_0"; + } + if (user.items.gear.costume[item.type] === lostItem) { + user.items.gear.costume[item.type] = "" + item.type + "_base_0"; + } + } + if (typeof user.markModified === "function") { + user.markModified('items.gear'); + } + return typeof cb === "function" ? cb((item ? { + code: 200, + message: i18n.t('messageLostItem', { + itemText: item.text(req.language) + }, req.language) + } : null), user) : void 0; + }, + reset: function(req, cb) { + var gear; + user.habits = []; + user.dailys = []; + user.todos = []; + user.rewards = []; + user.stats.hp = 50; + user.stats.lvl = 1; + user.stats.gp = 0; + user.stats.exp = 0; + gear = user.items.gear; + _.each(['equipped', 'costume'], function(type) { + gear[type].armor = 'armor_base_0'; + gear[type].weapon = 'weapon_base_0'; + gear[type].head = 'head_base_0'; + return gear[type].shield = 'shield_base_0'; + }); + if (typeof gear.owned === 'undefined') { + gear.owned = {}; + } + _.each(gear.owned, function(v, k) { + if (gear.owned[k]) { + gear.owned[k] = false; + } + return true; + }); + gear.owned.weapon_warrior_0 = true; + if (typeof user.markModified === "function") { + user.markModified('items.gear.owned'); + } + user.preferences.costume = false; + return typeof cb === "function" ? cb(null, user) : void 0; + }, + reroll: function(req, cb, ga) { + if (user.balance < 1) { + return typeof cb === "function" ? cb({ + code: 401, + message: i18n.t('notEnoughGems', req.language) + }) : void 0; + } + user.balance--; + _.each(user.tasks, function(task) { + if (task.type !== 'reward') { + return task.value = 0; + } + }); + user.stats.hp = 50; + if (typeof cb === "function") { + cb(null, user); + } + return ga != null ? ga.event('purchase', 'reroll').send() : void 0; + }, + rebirth: function(req, cb, ga) { + var flags, gear, lvl, stats; + if (user.balance < 2 && user.stats.lvl < 100) { + return typeof cb === "function" ? cb({ + code: 401, + message: i18n.t('notEnoughGems', req.language) + }) : void 0; + } + if (user.stats.lvl < 100) { + user.balance -= 2; + } + if (user.stats.lvl < 100) { + lvl = user.stats.lvl; + } else { + lvl = 100; + } + _.each(user.tasks, function(task) { + if (task.type !== 'reward') { + task.value = 0; + } + if (task.type === 'daily') { + return task.streak = 0; + } + }); + stats = user.stats; + stats.buffs = {}; + stats.hp = 50; + stats.lvl = 1; + stats["class"] = 'warrior'; + _.each(['per', 'int', 'con', 'str', 'points', 'gp', 'exp', 'mp'], function(value) { + return stats[value] = 0; + }); + gear = user.items.gear; + _.each(['equipped', 'costume'], function(type) { + gear[type] = {}; + gear[type].armor = 'armor_base_0'; + gear[type].weapon = 'weapon_warrior_0'; + gear[type].head = 'head_base_0'; + return gear[type].shield = 'shield_base_0'; + }); + if (user.items.currentPet) { + user.ops.equip({ + params: { + type: 'pet', + key: user.items.currentPet + } + }); + } + if (user.items.currentMount) { + user.ops.equip({ + params: { + type: 'mount', + key: user.items.currentMount + } + }); + } + _.each(gear.owned, function(v, k) { + if (gear.owned[k]) { + gear.owned[k] = false; + return true; + } + }); + gear.owned.weapon_warrior_0 = true; + if (typeof user.markModified === "function") { + user.markModified('items.gear.owned'); + } + user.preferences.costume = false; + flags = user.flags; + if (!(user.achievements.ultimateGear || user.achievements.beastMaster)) { + flags.rebirthEnabled = false; + } + flags.itemsEnabled = false; + flags.dropsEnabled = false; + flags.classSelected = false; + flags.levelDrops = {}; + if (!user.achievements.rebirths) { + user.achievements.rebirths = 1; + user.achievements.rebirthLevel = lvl; + } else if (lvl > user.achievements.rebirthLevel || lvl === 100) { + user.achievements.rebirths++; + user.achievements.rebirthLevel = lvl; + } + user.stats.buffs = {}; + if (typeof cb === "function") { + cb(null, user); + } + return ga != null ? ga.event('purchase', 'Rebirth').send() : void 0; + }, + allocateNow: function(req, cb) { + _.times(user.stats.points, user.fns.autoAllocate); + user.stats.points = 0; + if (typeof user.markModified === "function") { + user.markModified('stats'); + } + return typeof cb === "function" ? cb(null, user.stats) : void 0; + }, + clearCompleted: function(req, cb) { + _.remove(user.todos, function(t) { + var _ref; + return t.completed && !((_ref = t.challenge) != null ? _ref.id : void 0); + }); + if (typeof user.markModified === "function") { + user.markModified('todos'); + } + return typeof cb === "function" ? cb(null, user.todos) : void 0; + }, + sortTask: function(req, cb) { + var from, id, movedTask, task, tasks, to, _ref; + id = req.params.id; + _ref = req.query, to = _ref.to, from = _ref.from; + task = user.tasks[id]; + if (!task) { + return typeof cb === "function" ? cb({ + code: 404, + message: i18n.t('messageTaskNotFound', req.language) + }) : void 0; + } + if (!((to != null) && (from != null))) { + return typeof cb === "function" ? cb('?to=__&from=__ are required') : void 0; + } + tasks = user["" + task.type + "s"]; + movedTask = tasks.splice(from, 1)[0]; + if (to === -1) { + tasks.push(movedTask); + } else { + tasks.splice(to, 0, movedTask); + } + return typeof cb === "function" ? cb(null, tasks) : void 0; + }, + updateTask: function(req, cb) { + var task, _ref; + if (!(task = user.tasks[(_ref = req.params) != null ? _ref.id : void 0])) { + return typeof cb === "function" ? cb({ + code: 404, + message: i18n.t('messageTaskNotFound', req.language) + }) : void 0; + } + _.merge(task, _.omit(req.body, ['checklist', 'id', 'type'])); + if (req.body.checklist) { + task.checklist = req.body.checklist; + } + if (typeof task.markModified === "function") { + task.markModified('tags'); + } + return typeof cb === "function" ? cb(null, task) : void 0; + }, + deleteTask: function(req, cb) { + var i, task, _ref; + task = user.tasks[(_ref = req.params) != null ? _ref.id : void 0]; + if (!task) { + return typeof cb === "function" ? cb({ + code: 404, + message: i18n.t('messageTaskNotFound', req.language) + }) : void 0; + } + i = user[task.type + "s"].indexOf(task); + if (~i) { + user[task.type + "s"].splice(i, 1); + } + return typeof cb === "function" ? cb(null, {}) : void 0; + }, + addTask: function(req, cb) { + var task; + task = api.taskDefaults(req.body); + user["" + task.type + "s"].unshift(task); + if (user.preferences.newTaskEdit) { + task._editing = true; + } + if (user.preferences.tagsCollapsed) { + task._tags = true; + } + if (user.preferences.advancedCollapsed) { + task._advanced = true; + } + if (typeof cb === "function") { + cb(null, task); + } + return task; + }, + addTag: function(req, cb) { + if (user.tags == null) { + user.tags = []; + } + user.tags.push({ + name: req.body.name, + id: req.body.id || api.uuid() + }); + return typeof cb === "function" ? cb(null, user.tags) : void 0; + }, + sortTag: function(req, cb) { + var from, to, _ref; + _ref = req.query, to = _ref.to, from = _ref.from; + if (!((to != null) && (from != null))) { + return typeof cb === "function" ? cb('?to=__&from=__ are required') : void 0; + } + user.tags.splice(to, 0, user.tags.splice(from, 1)[0]); + return typeof cb === "function" ? cb(null, user.tags) : void 0; + }, + updateTag: function(req, cb) { + var i, tid; + tid = req.params.id; + i = _.findIndex(user.tags, { + id: tid + }); + if (!~i) { + return typeof cb === "function" ? cb({ + code: 404, + message: i18n.t('messageTagNotFound', req.language) + }) : void 0; + } + user.tags[i].name = req.body.name; + return typeof cb === "function" ? cb(null, user.tags[i]) : void 0; + }, + deleteTag: function(req, cb) { + var i, tag, tid; + tid = req.params.id; + i = _.findIndex(user.tags, { + id: tid + }); + if (!~i) { + return typeof cb === "function" ? cb({ + code: 404, + message: i18n.t('messageTagNotFound', req.language) + }) : void 0; + } + tag = user.tags[i]; + delete user.filters[tag.id]; + user.tags.splice(i, 1); + _.each(user.tasks, function(task) { + return delete task.tags[tag.id]; + }); + _.each(['habits', 'dailys', 'todos', 'rewards'], function(type) { + return typeof user.markModified === "function" ? user.markModified(type) : void 0; + }); + return typeof cb === "function" ? cb(null, user.tags) : void 0; + }, + addWebhook: function(req, cb) { + var wh; + wh = user.preferences.webhooks; + api.refPush(wh, { + url: req.body.url, + enabled: req.body.enabled || true, + id: req.body.id + }); + if (typeof user.markModified === "function") { + user.markModified('preferences.webhooks'); + } + return typeof cb === "function" ? cb(null, user.preferences.webhooks) : void 0; + }, + updateWebhook: function(req, cb) { + _.merge(user.preferences.webhooks[req.params.id], req.body); + if (typeof user.markModified === "function") { + user.markModified('preferences.webhooks'); + } + return typeof cb === "function" ? cb(null, user.preferences.webhooks) : void 0; + }, + deleteWebhook: function(req, cb) { + delete user.preferences.webhooks[req.params.id]; + if (typeof user.markModified === "function") { + user.markModified('preferences.webhooks'); + } + return typeof cb === "function" ? cb(null, user.preferences.webhooks) : void 0; + }, + clearPMs: function(req, cb) { + user.inbox.messages = {}; + if (typeof user.markModified === "function") { + user.markModified('inbox.messages'); + } + return typeof cb === "function" ? cb(null, user.inbox.messages) : void 0; + }, + deletePM: function(req, cb) { + delete user.inbox.messages[req.params.id]; + if (typeof user.markModified === "function") { + user.markModified('inbox.messages.' + req.params.id); + } + return typeof cb === "function" ? cb(null, user.inbox.messages) : void 0; + }, + blockUser: function(req, cb) { + var i; + i = user.inbox.blocks.indexOf(req.params.uuid); + if (~i) { + user.inbox.blocks.splice(i, 1); + } else { + user.inbox.blocks.push(req.params.uuid); + } + if (typeof user.markModified === "function") { + user.markModified('inbox.blocks'); + } + return typeof cb === "function" ? cb(null, user.inbox.blocks) : void 0; + }, + feed: function(req, cb) { + var egg, evolve, food, message, pet, potion, userPets, _ref, _ref1, _ref2; + _ref = req.params, pet = _ref.pet, food = _ref.food; + food = content.food[food]; + _ref1 = pet.split('-'), egg = _ref1[0], potion = _ref1[1]; + userPets = user.items.pets; + if (!userPets[pet]) { + return typeof cb === "function" ? cb({ + code: 404, + message: i18n.t('messagePetNotFound', req.language) + }) : void 0; + } + if (!((_ref2 = user.items.food) != null ? _ref2[food.key] : void 0)) { + return typeof cb === "function" ? cb({ + code: 404, + message: i18n.t('messageFoodNotFound', req.language) + }) : void 0; + } + if (content.specialPets[pet] || (egg === "Egg")) { + return typeof cb === "function" ? cb({ + code: 401, + message: i18n.t('messageCannotFeedPet', req.language) + }) : void 0; + } + if (user.items.mounts[pet]) { + return typeof cb === "function" ? cb({ + code: 401, + message: i18n.t('messageAlreadyMount', req.language) + }) : void 0; + } + message = ''; + evolve = function() { + userPets[pet] = -1; + user.items.mounts[pet] = true; + if (pet === user.items.currentPet) { + user.items.currentPet = ""; + } + return message = i18n.t('messageEvolve', { + egg: egg + }, req.language); + }; + if (food.key === 'Saddle') { + evolve(); + } else { + if (food.target === potion) { + userPets[pet] += 5; + message = i18n.t('messageLikesFood', { + egg: egg, + foodText: food.text(req.language) + }, req.language); + } else { + userPets[pet] += 2; + message = i18n.t('messageDontEnjoyFood', { + egg: egg, + foodText: food.text(req.language) + }, req.language); + } + if (userPets[pet] >= 50 && !user.items.mounts[pet]) { + evolve(); + } + } + user.items.food[food.key]--; + return typeof cb === "function" ? cb({ + code: 200, + message: message + }, userPets[pet]) : void 0; + }, + buySpecialSpell: function(req, cb) { + var item, key, message, _base; + key = req.params.key; + item = content.special[key]; + if (user.stats.gp < item.value) { + return typeof cb === "function" ? cb({ + code: 401, + message: i18n.t('messageNotEnoughGold', req.language) + }) : void 0; + } + user.stats.gp -= item.value; + if ((_base = user.items.special)[key] == null) { + _base[key] = 0; + } + user.items.special[key]++; + if (typeof user.markModified === "function") { + user.markModified('items.special'); + } + message = i18n.t('messageBought', { + itemText: item.text(req.language) + }, req.language); + return typeof cb === "function" ? cb({ + code: 200, + message: message + }, _.pick(user, $w('items stats'))) : void 0; + }, + purchase: function(req, cb, ga) { + var convCap, convRate, item, key, price, type, _ref, _ref1, _ref2, _ref3; + _ref = req.params, type = _ref.type, key = _ref.key; + if (type === 'gems' && key === 'gem') { + _ref1 = api.planGemLimits, convRate = _ref1.convRate, convCap = _ref1.convCap; + convCap += user.purchased.plan.consecutive.gemCapExtra; + if (!((_ref2 = user.purchased) != null ? (_ref3 = _ref2.plan) != null ? _ref3.customerId : void 0 : void 0)) { + return typeof cb === "function" ? cb({ + code: 401, + message: "Must subscribe to purchase gems with GP" + }, req) : void 0; + } + if (!(user.stats.gp >= convRate)) { + return typeof cb === "function" ? cb({ + code: 401, + message: "Not enough Gold" + }) : void 0; + } + if (user.purchased.plan.gemsBought >= convCap) { + return typeof cb === "function" ? cb({ + code: 401, + message: "You've reached the Gold=>Gem conversion cap (" + convCap + ") for this month. We have this to prevent abuse / farming. The cap will reset within the first three days of next month." + }) : void 0; + } + user.balance += .25; + user.purchased.plan.gemsBought++; + user.stats.gp -= convRate; + return typeof cb === "function" ? cb({ + code: 200, + message: "+1 Gems" + }, _.pick(user, $w('stats balance'))) : void 0; + } + if (type !== 'eggs' && type !== 'hatchingPotions' && type !== 'food' && type !== 'quests' && type !== 'gear') { + return typeof cb === "function" ? cb({ + code: 404, + message: ":type must be in [eggs,hatchingPotions,food,quests,gear]" + }, req) : void 0; + } + if (type === 'gear') { + item = content.gear.flat[key]; + if (user.items.gear.owned[key]) { + return typeof cb === "function" ? cb({ + code: 401, + message: i18n.t('alreadyHave', req.language) + }) : void 0; + } + price = (item.twoHanded ? 2 : 1) / 4; + } else { + item = content[type][key]; + price = item.value / 4; + } + if (!item) { + return typeof cb === "function" ? cb({ + code: 404, + message: ":key not found for Content." + type + }, req) : void 0; + } + if (user.balance < price) { + return typeof cb === "function" ? cb({ + code: 401, + message: i18n.t('notEnoughGems', req.language) + }) : void 0; + } + user.balance -= price; + if (type === 'gear') { + user.items.gear.owned[key] = true; + } else { + if (!(user.items[type][key] > 0)) { + user.items[type][key] = 0; + } + user.items[type][key]++; + } + if (typeof cb === "function") { + cb(null, _.pick(user, $w('items balance'))); + } + return ga != null ? ga.event('purchase', key).send() : void 0; + }, + releasePets: function(req, cb) { + var pet; + if (user.balance < 1) { + return typeof cb === "function" ? cb({ + code: 401, + message: i18n.t('notEnoughGems', req.language) + }) : void 0; + } else { + user.balance--; + for (pet in content.pets) { + user.items.pets[pet] = 0; + } + if (!user.achievements.beastMasterCount) { + user.achievements.beastMasterCount = 0; + } + user.achievements.beastMasterCount++; + user.items.currentPet = ""; + } + return typeof cb === "function" ? cb(null, user) : void 0; + }, + releaseMounts: function(req, cb) { + var mount; + if (user.balance < 1) { + return typeof cb === "function" ? cb({ + code: 401, + message: i18n.t('notEnoughGems', req.language) + }) : void 0; + } else { + user.balance -= 1; + user.items.currentMount = ""; + for (mount in content.pets) { + user.items.mounts[mount] = null; + } + if (!user.achievements.mountMasterCount) { + user.achievements.mountMasterCount = 0; + } + user.achievements.mountMasterCount++; + } + return typeof cb === "function" ? cb(null, user) : void 0; + }, + releaseBoth: function(req, cb) { + var animal, giveTriadBingo; + if (user.balance < 1.5) { + return typeof cb === "function" ? cb({ + code: 401, + message: i18n.t('notEnoughGems', req.language) + }) : void 0; + } else { + giveTriadBingo = true; + user.balance -= 1.5; + user.items.currentMount = ""; + user.items.currentPet = ""; + for (animal in content.pets) { + if (user.items.pets[animal] === -1) { + giveTriadBingo = false; + } + user.items.pets[animal] = 0; + user.items.mounts[animal] = null; + } + if (!user.achievements.beastMasterCount) { + user.achievements.beastMasterCount = 0; + } + user.achievements.beastMasterCount++; + if (!user.achievements.mountMasterCount) { + user.achievements.mountMasterCount = 0; + } + user.achievements.mountMasterCount++; + if (giveTriadBingo) { + if (!user.achievements.triadBingoCount) { + user.achievements.triadBingoCount = 0; + } + user.achievements.triadBingoCount++; + } + } + return typeof cb === "function" ? cb(null, user) : void 0; + }, + buy: function(req, cb) { + var item, key, message; + key = req.params.key; + item = key === 'potion' ? content.potion : content.gear.flat[key]; + if (!item) { + return typeof cb === "function" ? cb({ + code: 404, + message: "Item '" + key + " not found (see https://github.com/HabitRPG/habitrpg-shared/blob/develop/script/content.coffee)" + }) : void 0; + } + if (user.stats.gp < item.value) { + return typeof cb === "function" ? cb({ + code: 401, + message: i18n.t('messageNotEnoughGold', req.language) + }) : void 0; + } + if ((item.canOwn != null) && !item.canOwn(user)) { + return typeof cb === "function" ? cb({ + code: 401, + message: "You can't own this item" + }) : void 0; + } + if (item.key === 'potion') { + user.stats.hp += 15; + if (user.stats.hp > 50) { + user.stats.hp = 50; + } + } else { + user.items.gear.equipped[item.type] = item.key; + user.items.gear.owned[item.key] = true; + message = user.fns.handleTwoHanded(item, null, req); + if (message == null) { + message = i18n.t('messageBought', { + itemText: item.text(req.language) + }, req.language); + } + if (!user.achievements.ultimateGear && item.last) { + user.fns.ultimateGear(); + } + } + user.stats.gp -= item.value; + return typeof cb === "function" ? cb({ + code: 200, + message: message + }, _.pick(user, $w('items achievements stats'))) : void 0; + }, + buyMysterySet: function(req, cb) { + var mysterySet, _ref; + if (!(user.purchased.plan.consecutive.trinkets > 0)) { + return typeof cb === "function" ? cb({ + code: 401, + message: "You don't have enough Mystic Hourglasses" + }) : void 0; + } + mysterySet = (_ref = content.timeTravelerStore(user.items.gear.owned)) != null ? _ref[req.params.key] : void 0; + if ((typeof window !== "undefined" && window !== null ? window.confirm : void 0) != null) { + if (!window.confirm("Buy this full set of items for 1 Mystic Hourglass?")) { + return; + } + } + if (!mysterySet) { + return typeof cb === "function" ? cb({ + code: 404, + message: "Mystery set not found, or set already owned" + }) : void 0; + } + _.each(mysterySet.items, function(i) { + return user.items.gear.owned[i.key] = true; + }); + user.purchased.plan.consecutive.trinkets--; + return typeof cb === "function" ? cb(null, _.pick(user, $w('items purchased.plan.consecutive'))) : void 0; + }, + sell: function(req, cb) { + var key, type, _ref; + _ref = req.params, key = _ref.key, type = _ref.type; + if (type !== 'eggs' && type !== 'hatchingPotions' && type !== 'food') { + return typeof cb === "function" ? cb({ + code: 404, + message: ":type not found. Must bes in [eggs, hatchingPotions, food]" + }) : void 0; + } + if (!user.items[type][key]) { + return typeof cb === "function" ? cb({ + code: 404, + message: ":key not found for user.items." + type + }) : void 0; + } + user.items[type][key]--; + user.stats.gp += content[type][key].value; + return typeof cb === "function" ? cb(null, _.pick(user, $w('stats items'))) : void 0; + }, + equip: function(req, cb) { + var item, key, message, type, _ref; + _ref = [req.params.type || 'equipped', req.params.key], type = _ref[0], key = _ref[1]; + switch (type) { + case 'mount': + if (!user.items.mounts[key]) { + return typeof cb === "function" ? cb({ + code: 404, + message: ":You do not own this mount." + }) : void 0; + } + user.items.currentMount = user.items.currentMount === key ? '' : key; + break; + case 'pet': + if (!user.items.pets[key]) { + return typeof cb === "function" ? cb({ + code: 404, + message: ":You do not own this pet." + }) : void 0; + } + user.items.currentPet = user.items.currentPet === key ? '' : key; + break; + case 'costume': + case 'equipped': + item = content.gear.flat[key]; + if (!user.items.gear.owned[key]) { + return typeof cb === "function" ? cb({ + code: 404, + message: ":You do not own this gear." + }) : void 0; + } + if (user.items.gear[type][item.type] === key) { + user.items.gear[type][item.type] = "" + item.type + "_base_0"; + message = i18n.t('messageUnEquipped', { + itemText: item.text(req.language) + }, req.language); + } else { + user.items.gear[type][item.type] = item.key; + message = user.fns.handleTwoHanded(item, type, req); + } + if (typeof user.markModified === "function") { + user.markModified("items.gear." + type); + } + } + return typeof cb === "function" ? cb((message ? { + code: 200, + message: message + } : null), user.items) : void 0; + }, + hatch: function(req, cb) { + var egg, hatchingPotion, pet, _ref; + _ref = req.params, egg = _ref.egg, hatchingPotion = _ref.hatchingPotion; + if (!(egg && hatchingPotion)) { + return typeof cb === "function" ? cb({ + code: 404, + message: "Please specify query.egg & query.hatchingPotion" + }) : void 0; + } + if (!(user.items.eggs[egg] > 0 && user.items.hatchingPotions[hatchingPotion] > 0)) { + return typeof cb === "function" ? cb({ + code: 401, + message: i18n.t('messageMissingEggPotion', req.language) + }) : void 0; + } + pet = "" + egg + "-" + hatchingPotion; + if (user.items.pets[pet] && user.items.pets[pet] > 0) { + return typeof cb === "function" ? cb({ + code: 401, + message: i18n.t('messageAlreadyPet', req.language) + }) : void 0; + } + user.items.pets[pet] = 5; + user.items.eggs[egg]--; + user.items.hatchingPotions[hatchingPotion]--; + return typeof cb === "function" ? cb({ + code: 200, + message: i18n.t('messageHatched', req.language) + }, user.items) : void 0; + }, + unlock: function(req, cb, ga) { + var alreadyOwns, cost, fullSet, k, path, split, v; + path = req.query.path; + fullSet = ~path.indexOf(","); + cost = ~path.indexOf('background.') ? fullSet ? 3.75 : 1.75 : fullSet ? 1.25 : 0.5; + alreadyOwns = !fullSet && user.fns.dotGet("purchased." + path) === true; + if (user.balance < cost && !alreadyOwns) { + return typeof cb === "function" ? cb({ + code: 401, + message: i18n.t('notEnoughGems', req.language) + }) : void 0; + } + if (fullSet) { + _.each(path.split(","), function(p) { + user.fns.dotSet("purchased." + p, true); + return true; + }); + } else { + if (alreadyOwns) { + split = path.split('.'); + v = split.pop(); + k = split.join('.'); + if (k === 'background' && v === user.preferences.background) { + v = ''; + } + user.fns.dotSet("preferences." + k, v); + return typeof cb === "function" ? cb(null, req) : void 0; + } + user.fns.dotSet("purchased." + path, true); + } + user.balance -= cost; + if (typeof user.markModified === "function") { + user.markModified('purchased'); + } + if (typeof cb === "function") { + cb(null, _.pick(user, $w('purchased preferences'))); + } + return ga != null ? ga.event('purchase', path).send() : void 0; + }, + changeClass: function(req, cb, ga) { + var klass, _ref; + klass = (_ref = req.query) != null ? _ref["class"] : void 0; + if (klass === 'warrior' || klass === 'rogue' || klass === 'wizard' || klass === 'healer') { + user.stats["class"] = klass; + user.flags.classSelected = true; + _.each(["weapon", "armor", "shield", "head"], function(type) { + var foundKey; + foundKey = false; + _.findLast(user.items.gear.owned, function(v, k) { + if (~k.indexOf(type + "_" + klass) && v === true) { + return foundKey = k; + } + }); + user.items.gear.equipped[type] = foundKey ? foundKey : type === "weapon" ? "weapon_" + klass + "_0" : type === "shield" && klass === "rogue" ? "shield_rogue_0" : "" + type + "_base_0"; + if (type === "weapon" || (type === "shield" && klass === "rogue")) { + user.items.gear.owned["" + type + "_" + klass + "_0"] = true; + } + return true; + }); + } else { + if (user.preferences.disableClasses) { + user.preferences.disableClasses = false; + user.preferences.autoAllocate = false; + } else { + if (!(user.balance >= .75)) { + return typeof cb === "function" ? cb({ + code: 401, + message: i18n.t('notEnoughGems', req.language) + }) : void 0; + } + user.balance -= .75; + } + _.merge(user.stats, { + str: 0, + con: 0, + per: 0, + int: 0, + points: user.stats.lvl + }); + user.flags.classSelected = false; + if (ga != null) { + ga.event('purchase', 'changeClass').send(); + } + } + return typeof cb === "function" ? cb(null, _.pick(user, $w('stats flags items preferences'))) : void 0; + }, + disableClasses: function(req, cb) { + user.stats["class"] = 'warrior'; + user.flags.classSelected = true; + user.preferences.disableClasses = true; + user.preferences.autoAllocate = true; + user.stats.str = user.stats.lvl; + user.stats.points = 0; + return typeof cb === "function" ? cb(null, _.pick(user, $w('stats flags preferences'))) : void 0; + }, + allocate: function(req, cb) { + var stat; + stat = req.query.stat || 'str'; + if (user.stats.points > 0) { + user.stats[stat]++; + user.stats.points--; + if (stat === 'int') { + user.stats.mp++; + } + } + return typeof cb === "function" ? cb(null, _.pick(user, $w('stats'))) : void 0; + }, + readValentine: function(req, cb) { + user.items.special.valentineReceived.shift(); + if (typeof user.markModified === "function") { + user.markModified('items.special.valentineReceived'); + } + return typeof cb === "function" ? cb(null, 'items.special') : void 0; + }, + openMysteryItem: function(req, cb, ga) { + var item, _ref, _ref1; + item = (_ref = user.purchased.plan) != null ? (_ref1 = _ref.mysteryItems) != null ? _ref1.shift() : void 0 : void 0; + if (!item) { + return typeof cb === "function" ? cb({ + code: 400, + message: "Empty" + }) : void 0; + } + item = content.gear.flat[item]; + user.items.gear.owned[item.key] = true; + if (typeof user.markModified === "function") { + user.markModified('purchased.plan.mysteryItems'); + } + if (typeof window !== 'undefined') { + (user._tmp != null ? user._tmp : user._tmp = {}).drop = { + type: 'gear', + dialog: "" + (item.text(req.language)) + " inside!" + }; + } + return typeof cb === "function" ? cb(null, user.items.gear.owned) : void 0; + }, + readNYE: function(req, cb) { + user.items.special.nyeReceived.shift(); + if (typeof user.markModified === "function") { + user.markModified('items.special.nyeReceived'); + } + return typeof cb === "function" ? cb(null, 'items.special') : void 0; + }, + score: function(req, cb) { + var addPoints, calculateDelta, calculateReverseDelta, changeTaskValue, delta, direction, id, mpDelta, multiplier, num, options, stats, subtractPoints, task, th, _ref; + _ref = req.params, id = _ref.id, direction = _ref.direction; + task = user.tasks[id]; + options = req.query || {}; + _.defaults(options, { + times: 1, + cron: false + }); + user._tmp = {}; + stats = { + gp: +user.stats.gp, + hp: +user.stats.hp, + exp: +user.stats.exp + }; + task.value = +task.value; + task.streak = ~~task.streak; + if (task.priority == null) { + task.priority = 1; + } + if (task.value > stats.gp && task.type === 'reward') { + return typeof cb === "function" ? cb({ + code: 401, + message: i18n.t('messageNotEnoughGold', req.language) + }) : void 0; + } + delta = 0; + calculateDelta = function() { + var currVal, nextDelta, _ref1; + currVal = task.value < -47.27 ? -47.27 : task.value > 21.27 ? 21.27 : task.value; + nextDelta = Math.pow(0.9747, currVal) * (direction === 'down' ? -1 : 1); + if (((_ref1 = task.checklist) != null ? _ref1.length : void 0) > 0) { + if (direction === 'down' && task.type === 'daily' && options.cron) { + nextDelta *= 1 - _.reduce(task.checklist, (function(m, i) { + return m + (i.completed ? 1 : 0); + }), 0) / task.checklist.length; + } + if (task.type === 'todo') { + nextDelta *= 1 + _.reduce(task.checklist, (function(m, i) { + return m + (i.completed ? 1 : 0); + }), 0); + } + } + return nextDelta; + }; + calculateReverseDelta = function() { + var calc, closeEnough, currVal, diff, nextDelta, testVal, _ref1; + currVal = task.value < -47.27 ? -47.27 : task.value > 21.27 ? 21.27 : task.value; + testVal = currVal + Math.pow(0.9747, currVal) * (direction === 'down' ? -1 : 1); + closeEnough = 0.00001; + while (true) { + calc = testVal + Math.pow(0.9747, testVal); + diff = currVal - calc; + if (Math.abs(diff) < closeEnough) { + break; + } + if (diff > 0) { + testVal -= diff; + } else { + testVal += diff; + } + } + nextDelta = testVal - currVal; + if (((_ref1 = task.checklist) != null ? _ref1.length : void 0) > 0) { + if (task.type === 'todo') { + nextDelta *= 1 + _.reduce(task.checklist, (function(m, i) { + return m + (i.completed ? 1 : 0); + }), 0); + } + } + return nextDelta; + }; + changeTaskValue = function() { + return _.times(options.times, function() { + var nextDelta, _ref1; + nextDelta = !options.cron && direction === 'down' ? calculateReverseDelta() : calculateDelta(); + if (task.type !== 'reward') { + if (user.preferences.automaticAllocation === true && user.preferences.allocationMode === 'taskbased' && !(task.type === 'todo' && direction === 'down')) { + user.stats.training[task.attribute] += nextDelta; + } + if (direction === 'up' && !(task.type === 'habit' && !task.down)) { + user.party.quest.progress.up = user.party.quest.progress.up || 0; + if ((_ref1 = task.type) === 'daily' || _ref1 === 'todo') { + user.party.quest.progress.up += nextDelta * (1 + (user._statsComputed.str / 200)); + } + } + task.value += nextDelta; + } + return delta += nextDelta; + }); + }; + addPoints = function() { + var afterStreak, currStreak, gpMod, intBonus, perBonus, streakBonus, _crit; + _crit = (delta > 0 ? user.fns.crit() : 1); + if (_crit > 1) { + user._tmp.crit = _crit; + } + intBonus = 1 + (user._statsComputed.int * .025); + stats.exp += Math.round(delta * intBonus * task.priority * _crit * 6); + perBonus = 1 + user._statsComputed.per * .02; + gpMod = delta * task.priority * _crit * perBonus; + return stats.gp += task.streak ? (currStreak = direction === 'down' ? task.streak - 1 : task.streak, streakBonus = currStreak / 100 + 1, afterStreak = gpMod * streakBonus, currStreak > 0 ? gpMod > 0 ? user._tmp.streakBonus = afterStreak - gpMod : void 0 : void 0, afterStreak) : gpMod; + }; + subtractPoints = function() { + var conBonus, hpMod; + conBonus = 1 - (user._statsComputed.con / 250); + if (conBonus < .1) { + conBonus = 0.1; + } + hpMod = delta * conBonus * task.priority * 2; + return stats.hp += Math.round(hpMod * 10) / 10; + }; + switch (task.type) { + case 'habit': + changeTaskValue(); + if (delta > 0) { + addPoints(); + } else { + subtractPoints(); + } + th = (task.history != null ? task.history : task.history = []); + if (th[th.length - 1] && moment(th[th.length - 1].date).isSame(new Date, 'day')) { + th[th.length - 1].value = task.value; + } else { + th.push({ + date: +(new Date), + value: task.value + }); + } + if (typeof user.markModified === "function") { + user.markModified("habits." + (_.findIndex(user.habits, { + id: task.id + })) + ".history"); + } + break; + case 'daily': + if (options.cron) { + changeTaskValue(); + subtractPoints(); + if (!user.stats.buffs.streaks) { + task.streak = 0; + } + } else { + changeTaskValue(); + if (direction === 'down') { + delta = calculateDelta(); + } + addPoints(); + if (direction === 'up') { + task.streak = task.streak ? task.streak + 1 : 1; + if ((task.streak % 21) === 0) { + user.achievements.streak = user.achievements.streak ? user.achievements.streak + 1 : 1; + } + } else { + if ((task.streak % 21) === 0) { + user.achievements.streak = user.achievements.streak ? user.achievements.streak - 1 : 0; + } + task.streak = task.streak ? task.streak - 1 : 0; + } + } + break; + case 'todo': + if (options.cron) { + changeTaskValue(); + } else { + task.dateCompleted = direction === 'up' ? new Date : void 0; + changeTaskValue(); + if (direction === 'down') { + delta = calculateDelta(); + } + addPoints(); + multiplier = _.max([ + _.reduce(task.checklist, (function(m, i) { + return m + (i.completed ? 1 : 0); + }), 1), 1 + ]); + mpDelta = _.max([multiplier, .01 * user._statsComputed.maxMP * multiplier]); + mpDelta *= user._tmp.crit || 1; + if (direction === 'down') { + mpDelta *= -1; + } + user.stats.mp += mpDelta; + if (user.stats.mp >= user._statsComputed.maxMP) { + user.stats.mp = user._statsComputed.maxMP; + } + if (user.stats.mp < 0) { + user.stats.mp = 0; + } + } + break; + case 'reward': + changeTaskValue(); + stats.gp -= Math.abs(task.value); + num = parseFloat(task.value).toFixed(2); + if (stats.gp < 0) { + stats.hp += stats.gp; + stats.gp = 0; + } + } + user.fns.updateStats(stats, req); + if (typeof window === 'undefined') { + if (direction === 'up') { + user.fns.randomDrop({ + task: task, + delta: delta + }, req); + } + } + if (typeof cb === "function") { + cb(null, user); + } + return delta; + } + }; + } + user.fns = { + getItem: function(type) { + var item; + item = content.gear.flat[user.items.gear.equipped[type]]; + if (!item) { + return content.gear.flat["" + type + "_base_0"]; + } + return item; + }, + handleTwoHanded: function(item, type, req) { + var message, weapon, _ref; + if (type == null) { + type = 'equipped'; + } + if (item.type === "shield" && ((_ref = (weapon = content.gear.flat[user.items.gear[type].weapon])) != null ? _ref.twoHanded : void 0)) { + user.items.gear[type].weapon = 'weapon_base_0'; + message = i18n.t('messageTwoHandled', { + gearText: weapon.text(req.language) + }, req.language); + } + if (item.twoHanded) { + user.items.gear[type].shield = "shield_base_0"; + message = i18n.t('messageTwoHandled', { + gearText: item.text(req.language) + }, req.language); + } + return message; + }, + + /* + Because the same op needs to be performed on the client and the server (critical hits, item drops, etc), + we need things to be "random", but technically predictable so that they don't go out-of-sync + */ + predictableRandom: function(seed) { + var x; + if (!seed || seed === Math.PI) { + seed = _.reduce(user.stats, (function(m, v) { + if (_.isNumber(v)) { + return m + v; + } else { + return m; + } + }), 0); + } + x = Math.sin(seed++) * 10000; + return x - Math.floor(x); + }, + crit: function(stat, chance) { + if (stat == null) { + stat = 'str'; + } + if (chance == null) { + chance = .03; + } + if (user.fns.predictableRandom() <= chance * (1 + user._statsComputed[stat] / 100)) { + return 1.5 + (.02 * user._statsComputed[stat]); + } else { + return 1; + } + }, + + /* + Get a random property from an object + returns random property (the value) + */ + randomVal: function(obj, options) { + var array, rand; + array = (options != null ? options.key : void 0) ? _.keys(obj) : _.values(obj); + rand = user.fns.predictableRandom(options != null ? options.seed : void 0); + array.sort(); + return array[Math.floor(rand * array.length)]; + }, + + /* + This allows you to set object properties by dot-path. Eg, you can run pathSet('stats.hp',50,user) which is the same as + user.stats.hp = 50. This is useful because in our habitrpg-shared functions we're returning changesets as {path:value}, + so that different consumers can implement setters their own way. Derby needs model.set(path, value) for example, where + Angular sets object properties directly - in which case, this function will be used. + */ + dotSet: function(path, val) { + return api.dotSet(user, path, val); + }, + dotGet: function(path) { + return api.dotGet(user, path); + }, + randomDrop: function(modifiers, req) { + var acceptableDrops, chance, drop, dropK, dropMultiplier, quest, rarity, task, _base, _base1, _base2, _name, _name1, _name2, _ref, _ref1, _ref2, _ref3; + task = modifiers.task; + chance = _.min([Math.abs(task.value - 21.27), 37.5]) / 150 + .02; + chance *= task.priority * (1 + (task.streak / 100 || 0)) * (1 + (user._statsComputed.per / 100)) * (1 + (user.contributor.level / 40 || 0)) * (1 + (user.achievements.rebirths / 20 || 0)) * (1 + (user.achievements.streak / 200 || 0)) * (user._tmp.crit || 1) * (1 + .5 * (_.reduce(task.checklist, (function(m, i) { + return m + (i.completed ? 1 : 0); + }), 0) || 0)); + chance = api.diminishingReturns(chance, 0.75); + quest = content.quests[(_ref = user.party.quest) != null ? _ref.key : void 0]; + if ((quest != null ? quest.collect : void 0) && user.fns.predictableRandom(user.stats.gp) < chance) { + dropK = user.fns.randomVal(quest.collect, { + key: true + }); + user.party.quest.progress.collect[dropK]++; + if (typeof user.markModified === "function") { + user.markModified('party.quest.progress'); + } + } + dropMultiplier = ((_ref1 = user.purchased) != null ? (_ref2 = _ref1.plan) != null ? _ref2.customerId : void 0 : void 0) ? 2 : 1; + if ((api.daysSince(user.items.lastDrop.date, user.preferences) === 0) && (user.items.lastDrop.count >= dropMultiplier * (5 + Math.floor(user._statsComputed.per / 25) + (user.contributor.level || 0)))) { + return; + } + if (((_ref3 = user.flags) != null ? _ref3.dropsEnabled : void 0) && user.fns.predictableRandom(user.stats.exp) < chance) { + rarity = user.fns.predictableRandom(user.stats.gp); + if (rarity > .6) { + drop = user.fns.randomVal(_.where(content.food, { + canDrop: true + })); + if ((_base = user.items.food)[_name = drop.key] == null) { + _base[_name] = 0; + } + user.items.food[drop.key] += 1; + drop.type = 'Food'; + drop.dialog = i18n.t('messageDropFood', { + dropArticle: drop.article, + dropText: drop.text(req.language), + dropNotes: drop.notes(req.language) + }, req.language); + } else if (rarity > .3) { + drop = user.fns.randomVal(_.where(content.eggs, { + canBuy: true + })); + if ((_base1 = user.items.eggs)[_name1 = drop.key] == null) { + _base1[_name1] = 0; + } + user.items.eggs[drop.key]++; + drop.type = 'Egg'; + drop.dialog = i18n.t('messageDropEgg', { + dropText: drop.text(req.language), + dropNotes: drop.notes(req.language) + }, req.language); + } else { + acceptableDrops = rarity < .02 ? ['Golden'] : rarity < .09 ? ['Zombie', 'CottonCandyPink', 'CottonCandyBlue'] : rarity < .18 ? ['Red', 'Shade', 'Skeleton'] : ['Base', 'White', 'Desert']; + drop = user.fns.randomVal(_.pick(content.hatchingPotions, (function(v, k) { + return __indexOf.call(acceptableDrops, k) >= 0; + }))); + if ((_base2 = user.items.hatchingPotions)[_name2 = drop.key] == null) { + _base2[_name2] = 0; + } + user.items.hatchingPotions[drop.key]++; + drop.type = 'HatchingPotion'; + drop.dialog = i18n.t('messageDropPotion', { + dropText: drop.text(req.language), + dropNotes: drop.notes(req.language) + }, req.language); + } + user._tmp.drop = drop; + user.items.lastDrop.date = +(new Date); + return user.items.lastDrop.count++; + } + }, + + /* + Updates user stats with new stats. Handles death, leveling up, etc + {stats} new stats + {update} if aggregated changes, pass in userObj as update. otherwise commits will be made immediately + */ + autoAllocate: function() { + return user.stats[(function() { + var diff, ideal, preference, stats, suggested; + switch (user.preferences.allocationMode) { + case "flat": + stats = _.pick(user.stats, $w('con str per int')); + return _.invert(stats)[_.min(stats)]; + case "classbased": + ideal = [user.stats.lvl / 7 * 3, user.stats.lvl / 7 * 2, user.stats.lvl / 7, user.stats.lvl / 7]; + preference = (function() { + switch (user.stats["class"]) { + case "wizard": + return ["int", "per", "con", "str"]; + case "rogue": + return ["per", "str", "int", "con"]; + case "healer": + return ["con", "int", "str", "per"]; + default: + return ["str", "con", "per", "int"]; + } + })(); + diff = [user.stats[preference[0]] - ideal[0], user.stats[preference[1]] - ideal[1], user.stats[preference[2]] - ideal[2], user.stats[preference[3]] - ideal[3]]; + suggested = _.findIndex(diff, (function(val) { + if (val === _.min(diff)) { + return true; + } + })); + if (~suggested) { + return preference[suggested]; + } else { + return "str"; + } + case "taskbased": + suggested = _.invert(user.stats.training)[_.max(user.stats.training)]; + _.merge(user.stats.training, { + str: 0, + int: 0, + con: 0, + per: 0 + }); + return suggested || "str"; + default: + return "str"; + } + })()]++; + }, + updateStats: function(stats, req) { + var tnl; + if (stats.hp <= 0) { + return user.stats.hp = 0; + } + user.stats.hp = stats.hp; + user.stats.gp = stats.gp >= 0 ? stats.gp : 0; + tnl = api.tnl(user.stats.lvl); + if (stats.exp >= tnl) { + user.stats.exp = stats.exp; + while (stats.exp >= tnl) { + stats.exp -= tnl; + user.stats.lvl++; + tnl = api.tnl(user.stats.lvl); + if (user.preferences.automaticAllocation) { + user.fns.autoAllocate(); + } else { + user.stats.points = user.stats.lvl - (user.stats.con + user.stats.str + user.stats.per + user.stats.int); + } + user.stats.hp = 50; + } + } + user.stats.exp = stats.exp; + if (user.flags == null) { + user.flags = {}; + } + if (!user.flags.customizationsNotification && (user.stats.exp > 5 || user.stats.lvl > 1)) { + user.flags.customizationsNotification = true; + } + if (!user.flags.itemsEnabled && (user.stats.exp > 10 || user.stats.lvl > 1)) { + user.flags.itemsEnabled = true; + } + if (!user.flags.partyEnabled && user.stats.lvl >= 3) { + user.flags.partyEnabled = true; + } + if (!user.flags.dropsEnabled && user.stats.lvl >= 4) { + user.flags.dropsEnabled = true; + if (user.items.eggs["Wolf"] > 0) { + user.items.eggs["Wolf"]++; + } else { + user.items.eggs["Wolf"] = 1; + } + } + if (!user.flags.classSelected && user.stats.lvl >= 10) { + user.flags.classSelected; + } + _.each({ + vice1: 30, + atom1: 15, + moonstone1: 60, + goldenknight1: 40 + }, function(lvl, k) { + var _base, _base1, _ref; + if (!((_ref = user.flags.levelDrops) != null ? _ref[k] : void 0) && user.stats.lvl >= lvl) { + if ((_base = user.items.quests)[k] == null) { + _base[k] = 0; + } + user.items.quests[k]++; + ((_base1 = user.flags).levelDrops != null ? _base1.levelDrops : _base1.levelDrops = {})[k] = true; + if (typeof user.markModified === "function") { + user.markModified('flags.levelDrops'); + } + return user._tmp.drop = _.defaults(content.quests[k], { + type: 'Quest', + dialog: i18n.t('messageFoundQuest', { + questText: content.quests[k].text(req.language) + }, req.language) + }); + } + }); + if (!user.flags.rebirthEnabled && (user.stats.lvl >= 50 || user.achievements.ultimateGear || user.achievements.beastMaster)) { + user.flags.rebirthEnabled = true; + } + if (user.stats.lvl >= 100 && !user.flags.freeRebirth) { + return user.flags.freeRebirth = true; + } + }, + + /* + ------------------------------------------------------ + Cron + ------------------------------------------------------ + */ + + /* + At end of day, add value to all incomplete Daily & Todo tasks (further incentive) + For incomplete Dailys, deduct experience + Make sure to run this function once in a while as server will not take care of overnight calculations. + And you have to run it every time client connects. + {user} + */ + cron: function(options) { + var clearBuffs, daysMissed, expTally, lvl, lvlDiv2, now, perfect, plan, progress, todoTally, _base, _base1, _base2, _base3, _progress, _ref, _ref1, _ref2; + if (options == null) { + options = {}; + } + now = +options.now || +(new Date); + daysMissed = api.daysSince(user.lastCron, _.defaults({ + now: now + }, user.preferences)); + if (!(daysMissed > 0)) { + return; + } + user.auth.timestamps.loggedin = new Date(); + user.lastCron = now; + if (user.items.lastDrop.count > 0) { + user.items.lastDrop.count = 0; + } + perfect = true; + clearBuffs = { + str: 0, + int: 0, + per: 0, + con: 0, + stealth: 0, + streaks: false + }; + plan = (_ref = user.purchased) != null ? _ref.plan : void 0; + if (plan != null ? plan.customerId : void 0) { + if (moment(plan.dateUpdated).format('MMYYYY') !== moment().format('MMYYYY')) { + plan.gemsBought = 0; + plan.dateUpdated = new Date(); + _.defaults(plan.consecutive, { + count: 0, + offset: 0, + trinkets: 0, + gemCapExtra: 0 + }); + plan.consecutive.count++; + if (plan.consecutive.offset > 0) { + plan.consecutive.offset--; + } else if (plan.consecutive.count % 3 === 0) { + plan.consecutive.trinkets++; + plan.consecutive.gemCapExtra += 5; + if (plan.consecutive.gemCapExtra > 25) { + plan.consecutive.gemCapExtra = 25; + } + } + } + if (plan.dateTerminated && moment(plan.dateTerminated).isBefore(+(new Date))) { + _.merge(plan, { + planId: null, + customerId: null, + paymentMethod: null + }); + _.merge(plan.consecutive, { + count: 0, + offset: 0, + gemCapExtra: 0 + }); + if (typeof user.markModified === "function") { + user.markModified('purchased.plan'); + } + } + } + if (user.preferences.sleep === true) { + user.stats.buffs = clearBuffs; + return; + } + todoTally = 0; + if ((_base = user.party.quest.progress).down == null) { + _base.down = 0; + } + user.todos.concat(user.dailys).forEach(function(task) { + var absVal, completed, delta, id, repeat, scheduleMisses, type; + if (!task) { + return; + } + id = task.id, type = task.type, completed = task.completed, repeat = task.repeat; + if ((type === 'daily') && !completed && user.stats.buffs.stealth && user.stats.buffs.stealth--) { + return; + } + if (!completed) { + scheduleMisses = daysMissed; + if ((type === 'daily') && repeat) { + scheduleMisses = 0; + _.times(daysMissed, function(n) { + var thatDay; + thatDay = moment(now).subtract({ + days: n + 1 + }); + if (api.shouldDo(thatDay, repeat, user.preferences)) { + return scheduleMisses++; + } + }); + } + if (scheduleMisses > 0) { + if (type === 'daily') { + perfect = false; + } + delta = user.ops.score({ + params: { + id: task.id, + direction: 'down' + }, + query: { + times: scheduleMisses, + cron: true + } + }); + if (type === 'daily') { + user.party.quest.progress.down += delta; + } + } + } + switch (type) { + case 'daily': + (task.history != null ? task.history : task.history = []).push({ + date: +(new Date), + value: task.value + }); + task.completed = false; + return _.each(task.checklist, (function(i) { + i.completed = false; + return true; + })); + case 'todo': + absVal = completed ? Math.abs(task.value) : task.value; + return todoTally += absVal; + } + }); + user.habits.forEach(function(task) { + if (task.up === false || task.down === false) { + if (Math.abs(task.value) < 0.1) { + return task.value = 0; + } else { + return task.value = task.value / 2; + } + } + }); + ((_base1 = (user.history != null ? user.history : user.history = {})).todos != null ? _base1.todos : _base1.todos = []).push({ + date: now, + value: todoTally + }); + expTally = user.stats.exp; + lvl = 0; + while (lvl < (user.stats.lvl - 1)) { + lvl++; + expTally += api.tnl(lvl); + } + ((_base2 = user.history).exp != null ? _base2.exp : _base2.exp = []).push({ + date: now, + value: expTally + }); + if (!((_ref1 = user.purchased) != null ? (_ref2 = _ref1.plan) != null ? _ref2.customerId : void 0 : void 0)) { + user.fns.preenUserHistory(); + if (typeof user.markModified === "function") { + user.markModified('history'); + } + if (typeof user.markModified === "function") { + user.markModified('dailys'); + } + } + user.stats.buffs = perfect ? ((_base3 = user.achievements).perfect != null ? _base3.perfect : _base3.perfect = 0, user.achievements.perfect++, user.stats.lvl < 100 ? lvlDiv2 = Math.ceil(user.stats.lvl / 2) : lvlDiv2 = 50, { + str: lvlDiv2, + int: lvlDiv2, + per: lvlDiv2, + con: lvlDiv2, + stealth: 0, + streaks: false + }) : clearBuffs; + user.stats.mp += _.max([10, .1 * user._statsComputed.maxMP]); + if (user.stats.mp > user._statsComputed.maxMP) { + user.stats.mp = user._statsComputed.maxMP; + } + progress = user.party.quest.progress; + _progress = _.cloneDeep(progress); + _.merge(progress, { + down: 0, + up: 0 + }); + progress.collect = _.transform(progress.collect, (function(m, v, k) { + return m[k] = 0; + })); + return _progress; + }, + preenUserHistory: function(minHistLen) { + if (minHistLen == null) { + minHistLen = 7; + } + _.each(user.habits.concat(user.dailys), function(task) { + var _ref; + if (((_ref = task.history) != null ? _ref.length : void 0) > minHistLen) { + task.history = preenHistory(task.history); + } + return true; + }); + _.defaults(user.history, { + todos: [], + exp: [] + }); + if (user.history.exp.length > minHistLen) { + user.history.exp = preenHistory(user.history.exp); + } + if (user.history.todos.length > minHistLen) { + return user.history.todos = preenHistory(user.history.todos); + } + }, + ultimateGear: function() { + var gear, lastGearClassTypeMatrix, ownedLastGear, shouldGrant; + gear = typeof window !== "undefined" && window !== null ? user.items.gear.owned : user.items.gear.owned.toObject(); + ownedLastGear = _.chain(content.gear.flat).pick(_.keys(gear)).values().filter(function(gear) { + return gear.last; + }); + lastGearClassTypeMatrix = {}; + _.each(content.classes, function(klass) { + lastGearClassTypeMatrix[klass] = {}; + return _.each(['armor', 'weapon', 'shield', 'head'], function(type) { + lastGearClassTypeMatrix[klass][type] = false; + return true; + }); + }); + ownedLastGear.each(function(gear) { + if (gear.twoHanded) { + lastGearClassTypeMatrix[gear.klass]["shield"] = true; + } + return lastGearClassTypeMatrix[gear.klass][gear.type] = true; + }); + shouldGrant = _(lastGearClassTypeMatrix).values().reduce((function(ans, klass) { + return ans || _(klass).values().reduce((function(ans, gearType) { + return ans && gearType; + }), true); + }), false).valueOf(); + return user.achievements.ultimateGear = shouldGrant; + }, + nullify: function() { + user.ops = null; + user.fns = null; + return user = null; + } + }; + Object.defineProperty(user, '_statsComputed', { + get: function() { + var computed; + computed = _.reduce(['per', 'con', 'str', 'int'], (function(_this) { + return function(m, stat) { + m[stat] = _.reduce($w('stats stats.buffs items.gear.equipped.weapon items.gear.equipped.armor items.gear.equipped.head items.gear.equipped.shield'), function(m2, path) { + var item, val; + val = user.fns.dotGet(path); + return m2 + (~path.indexOf('items.gear') ? (item = content.gear.flat[val], (+(item != null ? item[stat] : void 0) || 0) * ((item != null ? item.klass : void 0) === user.stats["class"] || (item != null ? item.specialClass : void 0) === user.stats["class"] ? 1.5 : 1)) : +val[stat] || 0); + }, 0); + if (user.stats.lvl < 100) { + m[stat] += (user.stats.lvl - 1) / 2; + } else { + m[stat] += 50; + } + return m; + }; + })(this), {}); + computed.maxMP = computed.int * 2 + 30; + return computed; + } + }); + return Object.defineProperty(user, 'tasks', { + get: function() { + var tasks; + tasks = user.habits.concat(user.dailys).concat(user.todos).concat(user.rewards); + return _.object(_.pluck(tasks, "id"), tasks); + } + }); +}; + + +}).call(this,require('_process')) +},{"./content.coffee":2,"./i18n.coffee":3,"_process":5,"lodash":6,"moment":7}],5:[function(require,module,exports){ +// shim for using process in browser + +var process = module.exports = {}; +var queue = []; +var draining = false; + +function drainQueue() { + if (draining) { + return; + } + draining = true; + var currentQueue; + var len = queue.length; + while(len) { + currentQueue = queue; + queue = []; + var i = -1; + while (++i < len) { + currentQueue[i](); + } + len = queue.length; + } + draining = false; +} +process.nextTick = function (fun) { + queue.push(fun); + if (!draining) { + setTimeout(drainQueue, 0); + } +}; + +process.title = 'browser'; +process.browser = true; +process.env = {}; +process.argv = []; +process.version = ''; // empty string to avoid regexp issues + +function noop() {} + +process.on = noop; +process.addListener = noop; +process.once = noop; +process.off = noop; +process.removeListener = noop; +process.removeAllListeners = noop; +process.emit = noop; + +process.binding = function (name) { + throw new Error('process.binding is not supported'); +}; + +// TODO(shtylman) +process.cwd = function () { return '/' }; +process.chdir = function (dir) { + throw new Error('process.chdir is not supported'); +}; +process.umask = function() { return 0; }; + +},{}],6:[function(require,module,exports){ (function (global){ /** * @license @@ -6798,7 +13937,7 @@ if (typeof window !== 'undefined') { }.call(this)); }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],3:[function(require,module,exports){ +},{}],7:[function(require,module,exports){ (function (global){ //! moment.js //! version : 2.8.4 @@ -9738,7143 +16877,4 @@ if (typeof window !== 'undefined') { }).call(this); }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],4:[function(require,module,exports){ -var api, classes, diminishingReturns, events, gear, gearTypes, i18n, moment, repeat, t, _; - -_ = require('lodash'); - -api = module.exports; - -moment = require('moment'); - -i18n = require('./i18n.coffee'); - -t = function(string, vars) { - var func; - func = function(lang) { - if (vars == null) { - vars = { - a: 'a' - }; - } - return i18n.t(string, vars, lang); - }; - func.i18nLangFunc = true; - return func; -}; - - -/* - --------------------------------------------------------------- - Gear (Weapons, Armor, Head, Shield) - Item definitions: {index, text, notes, value, str, def, int, per, classes, type} - --------------------------------------------------------------- - */ - -classes = ['warrior', 'rogue', 'healer', 'wizard']; - -gearTypes = ['weapon', 'armor', 'head', 'shield', 'body', 'back', 'headAccessory', 'eyewear']; - -events = { - winter: { - start: '2013-12-31', - end: '2014-02-01' - }, - 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' - }, - fall: { - start: '2014-09-21', - end: '2014-11-01' - }, - winter2015: { - start: '2014-12-21', - end: '2015-02-02' - } -}; - -api.mystery = { - 201402: { - start: '2014-02-22', - end: '2014-02-28', - text: 'Winged Messenger Set' - }, - 201403: { - start: '2014-03-24', - end: '2014-04-02', - text: 'Forest Walker Set' - }, - 201404: { - start: '2014-04-24', - end: '2014-05-02', - text: 'Twilight Butterfly Set' - }, - 201405: { - start: '2014-05-21', - end: '2014-06-02', - text: 'Flame Wielder Set' - }, - 201406: { - start: '2014-06-23', - end: '2014-07-02', - text: 'Octomage Set' - }, - 201407: { - start: '2014-07-23', - end: '2014-08-02', - text: 'Undersea Explorer Set' - }, - 201408: { - start: '2014-08-23', - end: '2014-09-02', - text: 'Sun Sorcerer Set' - }, - 201409: { - start: '2014-09-24', - end: '2014-10-02', - text: 'Autumn Strider Item Set' - }, - 201410: { - start: '2014-10-24', - end: '2014-11-02', - text: 'Winged Goblin Set' - }, - 201411: { - start: '2014-11-24', - end: '2014-12-02', - text: 'Feast and Fun Set' - }, - 201412: { - start: '2014-12-25', - end: '2015-01-02', - text: 'Penguin Set' - }, - 201501: { - start: '2015-01-26', - end: '2015-02-02', - text: 'Starry Knight Set' - }, - 301404: { - start: '3014-03-24', - end: '3014-04-02', - text: 'Steampunk Standard Set' - }, - 301405: { - start: '3014-04-24', - end: '3014-05-02', - text: 'Steampunk Accessories Set' - }, - wondercon: { - start: '2014-03-24', - end: '2014-04-01' - } -}; - -_.each(api.mystery, function(v, k) { - return v.key = k; -}); - -gear = { - weapon: { - base: { - 0: { - text: t('weaponBase0Text'), - notes: t('weaponBase0Notes'), - value: 0 - } - }, - warrior: { - 0: { - text: t('weaponWarrior0Text'), - notes: t('weaponWarrior0Notes'), - value: 0 - }, - 1: { - text: t('weaponWarrior1Text'), - notes: t('weaponWarrior1Notes', { - str: 3 - }), - str: 3, - value: 20 - }, - 2: { - text: t('weaponWarrior2Text'), - notes: t('weaponWarrior2Notes', { - str: 6 - }), - str: 6, - value: 30 - }, - 3: { - text: t('weaponWarrior3Text'), - notes: t('weaponWarrior3Notes', { - str: 9 - }), - str: 9, - value: 45 - }, - 4: { - text: t('weaponWarrior4Text'), - notes: t('weaponWarrior4Notes', { - str: 12 - }), - str: 12, - value: 65 - }, - 5: { - text: t('weaponWarrior5Text'), - notes: t('weaponWarrior5Notes', { - str: 15 - }), - str: 15, - value: 90 - }, - 6: { - text: t('weaponWarrior6Text'), - notes: t('weaponWarrior6Notes', { - str: 18 - }), - str: 18, - value: 120, - last: true - } - }, - rogue: { - 0: { - text: t('weaponRogue0Text'), - notes: t('weaponRogue0Notes'), - str: 0, - value: 0 - }, - 1: { - text: t('weaponRogue1Text'), - notes: t('weaponRogue1Notes', { - str: 2 - }), - str: 2, - value: 20 - }, - 2: { - text: t('weaponRogue2Text'), - notes: t('weaponRogue2Notes', { - str: 3 - }), - str: 3, - value: 35 - }, - 3: { - text: t('weaponRogue3Text'), - notes: t('weaponRogue3Notes', { - str: 4 - }), - str: 4, - value: 50 - }, - 4: { - text: t('weaponRogue4Text'), - notes: t('weaponRogue4Notes', { - str: 6 - }), - str: 6, - value: 70 - }, - 5: { - text: t('weaponRogue5Text'), - notes: t('weaponRogue5Notes', { - str: 8 - }), - str: 8, - value: 90 - }, - 6: { - text: t('weaponRogue6Text'), - notes: t('weaponRogue6Notes', { - str: 10 - }), - str: 10, - value: 120, - last: true - } - }, - wizard: { - 0: { - twoHanded: true, - text: t('weaponWizard0Text'), - notes: t('weaponWizard0Notes'), - value: 0 - }, - 1: { - twoHanded: true, - text: t('weaponWizard1Text'), - notes: t('weaponWizard1Notes', { - int: 3, - per: 1 - }), - int: 3, - per: 1, - value: 30 - }, - 2: { - twoHanded: true, - text: t('weaponWizard2Text'), - notes: t('weaponWizard2Notes', { - int: 6, - per: 2 - }), - int: 6, - per: 2, - value: 50 - }, - 3: { - twoHanded: true, - text: t('weaponWizard3Text'), - notes: t('weaponWizard3Notes', { - int: 9, - per: 3 - }), - int: 9, - per: 3, - value: 80 - }, - 4: { - twoHanded: true, - text: t('weaponWizard4Text'), - notes: t('weaponWizard4Notes', { - int: 12, - per: 5 - }), - int: 12, - per: 5, - value: 120 - }, - 5: { - twoHanded: true, - text: t('weaponWizard5Text'), - notes: t('weaponWizard5Notes', { - int: 15, - per: 7 - }), - int: 15, - per: 7, - value: 160 - }, - 6: { - twoHanded: true, - text: t('weaponWizard6Text'), - notes: t('weaponWizard6Notes', { - int: 18, - per: 10 - }), - int: 18, - per: 10, - value: 200, - last: true - } - }, - healer: { - 0: { - text: t('weaponHealer0Text'), - notes: t('weaponHealer0Notes'), - value: 0 - }, - 1: { - text: t('weaponHealer1Text'), - notes: t('weaponHealer1Notes', { - int: 2 - }), - int: 2, - value: 20 - }, - 2: { - text: t('weaponHealer2Text'), - notes: t('weaponHealer2Notes', { - int: 3 - }), - int: 3, - value: 30 - }, - 3: { - text: t('weaponHealer3Text'), - notes: t('weaponHealer3Notes', { - int: 5 - }), - int: 5, - value: 45 - }, - 4: { - text: t('weaponHealer4Text'), - notes: t('weaponHealer4Notes', { - int: 7 - }), - int: 7, - value: 65 - }, - 5: { - text: t('weaponHealer5Text'), - notes: t('weaponHealer5Notes', { - int: 9 - }), - int: 9, - value: 90 - }, - 6: { - text: t('weaponHealer6Text'), - notes: t('weaponHealer6Notes', { - int: 11 - }), - int: 11, - value: 120, - last: true - } - }, - special: { - 0: { - text: t('weaponSpecial0Text'), - notes: t('weaponSpecial0Notes', { - str: 20 - }), - str: 20, - value: 150, - canOwn: (function(u) { - var _ref; - return +((_ref = u.backer) != null ? _ref.tier : void 0) >= 70; - }) - }, - 1: { - text: t('weaponSpecial1Text'), - notes: t('weaponSpecial1Notes', { - attrs: 6 - }), - str: 6, - per: 6, - con: 6, - int: 6, - value: 170, - canOwn: (function(u) { - var _ref; - return +((_ref = u.contributor) != null ? _ref.level : void 0) >= 4; - }) - }, - 2: { - text: t('weaponSpecial2Text'), - notes: t('weaponSpecial2Notes', { - attrs: 25 - }), - str: 25, - per: 25, - value: 200, - canOwn: (function(u) { - var _ref; - return (+((_ref = u.backer) != null ? _ref.tier : void 0) >= 300) || (u.items.gear.owned.weapon_special_2 != null); - }) - }, - 3: { - text: t('weaponSpecial3Text'), - notes: t('weaponSpecial3Notes', { - attrs: 17 - }), - str: 17, - int: 17, - con: 17, - value: 200, - canOwn: (function(u) { - var _ref; - return (+((_ref = u.backer) != null ? _ref.tier : void 0) >= 300) || (u.items.gear.owned.weapon_special_3 != null); - }) - }, - critical: { - text: t('weaponSpecialCriticalText'), - notes: t('weaponSpecialCriticalNotes', { - attrs: 40 - }), - str: 40, - per: 40, - value: 200, - canOwn: (function(u) { - var _ref; - return !!((_ref = u.contributor) != null ? _ref.critical : void 0); - }) - }, - yeti: { - event: events.winter, - specialClass: 'warrior', - text: t('weaponSpecialYetiText'), - notes: t('weaponSpecialYetiNotes', { - str: 15 - }), - str: 15, - value: 90 - }, - ski: { - event: events.winter, - specialClass: 'rogue', - text: t('weaponSpecialSkiText'), - notes: t('weaponSpecialSkiNotes', { - str: 8 - }), - str: 8, - value: 90 - }, - candycane: { - event: events.winter, - specialClass: 'wizard', - twoHanded: true, - text: t('weaponSpecialCandycaneText'), - notes: t('weaponSpecialCandycaneNotes', { - int: 15, - per: 7 - }), - int: 15, - per: 7, - value: 160 - }, - snowflake: { - event: events.winter, - specialClass: 'healer', - text: t('weaponSpecialSnowflakeText'), - notes: t('weaponSpecialSnowflakeNotes', { - int: 9 - }), - int: 9, - value: 90 - }, - springRogue: { - event: events.spring, - specialClass: 'rogue', - text: t('weaponSpecialSpringRogueText'), - notes: t('weaponSpecialSpringRogueNotes', { - str: 8 - }), - value: 80, - str: 8 - }, - springWarrior: { - event: events.spring, - specialClass: 'warrior', - text: t('weaponSpecialSpringWarriorText'), - notes: t('weaponSpecialSpringWarriorNotes', { - str: 15 - }), - value: 90, - str: 15 - }, - springMage: { - event: events.spring, - specialClass: 'wizard', - twoHanded: true, - text: t('weaponSpecialSpringMageText'), - notes: t('weaponSpecialSpringMageNotes', { - int: 15, - per: 7 - }), - value: 160, - int: 15, - per: 7 - }, - springHealer: { - event: events.spring, - specialClass: 'healer', - text: t('weaponSpecialSpringHealerText'), - notes: t('weaponSpecialSpringHealerNotes', { - int: 9 - }), - value: 90, - int: 9 - }, - summerRogue: { - event: events.summer, - specialClass: 'rogue', - text: t('weaponSpecialSummerRogueText'), - notes: t('weaponSpecialSummerRogueNotes', { - str: 8 - }), - value: 80, - str: 8 - }, - summerWarrior: { - event: events.summer, - specialClass: 'warrior', - text: t('weaponSpecialSummerWarriorText'), - notes: t('weaponSpecialSummerWarriorNotes', { - str: 15 - }), - value: 90, - str: 15 - }, - summerMage: { - event: events.summer, - specialClass: 'wizard', - twoHanded: true, - text: t('weaponSpecialSummerMageText'), - notes: t('weaponSpecialSummerMageNotes', { - int: 15, - per: 7 - }), - value: 160, - int: 15, - per: 7 - }, - summerHealer: { - event: events.summer, - specialClass: 'healer', - text: t('weaponSpecialSummerHealerText'), - notes: t('weaponSpecialSummerHealerNotes', { - int: 9 - }), - value: 90, - int: 9 - }, - fallRogue: { - event: events.fall, - specialClass: 'rogue', - text: t('weaponSpecialFallRogueText'), - notes: t('weaponSpecialFallRogueNotes', { - str: 8 - }), - value: 80, - str: 8 - }, - fallWarrior: { - event: events.fall, - specialClass: 'warrior', - text: t('weaponSpecialFallWarriorText'), - notes: t('weaponSpecialFallWarriorNotes', { - str: 15 - }), - value: 90, - str: 15 - }, - fallMage: { - event: events.fall, - specialClass: 'wizard', - twoHanded: true, - text: t('weaponSpecialFallMageText'), - notes: t('weaponSpecialFallMageNotes', { - int: 15, - per: 7 - }), - value: 160, - int: 15, - per: 7 - }, - fallHealer: { - event: events.fall, - specialClass: 'healer', - text: t('weaponSpecialFallHealerText'), - notes: t('weaponSpecialFallHealerNotes', { - int: 9 - }), - value: 90, - int: 9 - }, - winter2015Rogue: { - event: events.winter2015, - specialClass: 'rogue', - text: t('weaponSpecialWinter2015RogueText'), - notes: t('weaponSpecialWinter2015RogueNotes', { - str: 8 - }), - value: 80, - str: 8 - }, - winter2015Warrior: { - event: events.winter2015, - specialClass: 'warrior', - text: t('weaponSpecialWinter2015WarriorText'), - notes: t('weaponSpecialWinter2015WarriorNotes', { - str: 15 - }), - value: 90, - str: 15 - }, - winter2015Mage: { - event: events.winter2015, - specialClass: 'wizard', - twoHanded: true, - text: t('weaponSpecialWinter2015MageText'), - notes: t('weaponSpecialWinter2015MageNotes', { - int: 15, - per: 7 - }), - value: 160, - int: 15, - per: 7 - }, - winter2015Healer: { - event: events.winter2015, - specialClass: 'healer', - text: t('weaponSpecialWinter2015HealerText'), - notes: t('weaponSpecialWinter2015HealerNotes', { - int: 9 - }), - value: 90, - int: 9 - } - }, - mystery: { - 201411: { - text: t('weaponMystery201411Text'), - notes: t('weaponMystery201411Notes'), - mystery: '201411', - value: 0 - }, - 301404: { - text: t('weaponMystery301404Text'), - notes: t('weaponMystery301404Notes'), - mystery: '301404', - value: 0 - } - } - }, - armor: { - base: { - 0: { - text: t('armorBase0Text'), - notes: t('armorBase0Notes'), - value: 0 - } - }, - warrior: { - 1: { - text: t('armorWarrior1Text'), - notes: t('armorWarrior1Notes', { - con: 3 - }), - con: 3, - value: 30 - }, - 2: { - text: t('armorWarrior2Text'), - notes: t('armorWarrior2Notes', { - con: 5 - }), - con: 5, - value: 45 - }, - 3: { - text: t('armorWarrior3Text'), - notes: t('armorWarrior3Notes', { - con: 7 - }), - con: 7, - value: 65 - }, - 4: { - text: t('armorWarrior4Text'), - notes: t('armorWarrior4Notes', { - con: 9 - }), - con: 9, - value: 90 - }, - 5: { - text: t('armorWarrior5Text'), - notes: t('armorWarrior5Notes', { - con: 11 - }), - con: 11, - value: 120, - last: true - } - }, - rogue: { - 1: { - text: t('armorRogue1Text'), - notes: t('armorRogue1Notes', { - per: 6 - }), - per: 6, - value: 30 - }, - 2: { - text: t('armorRogue2Text'), - notes: t('armorRogue2Notes', { - per: 9 - }), - per: 9, - value: 45 - }, - 3: { - text: t('armorRogue3Text'), - notes: t('armorRogue3Notes', { - per: 12 - }), - per: 12, - value: 65 - }, - 4: { - text: t('armorRogue4Text'), - notes: t('armorRogue4Notes', { - per: 15 - }), - per: 15, - value: 90 - }, - 5: { - text: t('armorRogue5Text'), - notes: t('armorRogue5Notes', { - per: 18 - }), - per: 18, - value: 120, - last: true - } - }, - wizard: { - 1: { - text: t('armorWizard1Text'), - notes: t('armorWizard1Notes', { - int: 2 - }), - int: 2, - value: 30 - }, - 2: { - text: t('armorWizard2Text'), - notes: t('armorWizard2Notes', { - int: 4 - }), - int: 4, - value: 45 - }, - 3: { - text: t('armorWizard3Text'), - notes: t('armorWizard3Notes', { - int: 6 - }), - int: 6, - value: 65 - }, - 4: { - text: t('armorWizard4Text'), - notes: t('armorWizard4Notes', { - int: 9 - }), - int: 9, - value: 90 - }, - 5: { - text: t('armorWizard5Text'), - notes: t('armorWizard5Notes', { - int: 12 - }), - int: 12, - value: 120, - last: true - } - }, - healer: { - 1: { - text: t('armorHealer1Text'), - notes: t('armorHealer1Notes', { - con: 6 - }), - con: 6, - value: 30 - }, - 2: { - text: t('armorHealer2Text'), - notes: t('armorHealer2Notes', { - con: 9 - }), - con: 9, - value: 45 - }, - 3: { - text: t('armorHealer3Text'), - notes: t('armorHealer3Notes', { - con: 12 - }), - con: 12, - value: 65 - }, - 4: { - text: t('armorHealer4Text'), - notes: t('armorHealer4Notes', { - con: 15 - }), - con: 15, - value: 90 - }, - 5: { - text: t('armorHealer5Text'), - notes: t('armorHealer5Notes', { - con: 18 - }), - con: 18, - value: 120, - last: true - } - }, - special: { - 0: { - text: t('armorSpecial0Text'), - notes: t('armorSpecial0Notes', { - con: 20 - }), - con: 20, - value: 150, - canOwn: (function(u) { - var _ref; - return +((_ref = u.backer) != null ? _ref.tier : void 0) >= 45; - }) - }, - 1: { - text: t('armorSpecial1Text'), - notes: t('armorSpecial1Notes', { - attrs: 6 - }), - con: 6, - str: 6, - per: 6, - int: 6, - value: 170, - canOwn: (function(u) { - var _ref; - return +((_ref = u.contributor) != null ? _ref.level : void 0) >= 2; - }) - }, - 2: { - text: t('armorSpecial2Text'), - notes: t('armorSpecial2Notes', { - attrs: 25 - }), - int: 25, - con: 25, - value: 200, - canOwn: (function(u) { - var _ref; - return +((_ref = u.backer) != null ? _ref.tier : void 0) >= 300 || (u.items.gear.owned.armor_special_2 != null); - }) - }, - yeti: { - event: events.winter, - specialClass: 'warrior', - text: t('armorSpecialYetiText'), - notes: t('armorSpecialYetiNotes', { - con: 9 - }), - con: 9, - value: 90 - }, - ski: { - event: events.winter, - specialClass: 'rogue', - text: t('armorSpecialSkiText'), - notes: t('armorSpecialSkiNotes', { - per: 15 - }), - per: 15, - value: 90 - }, - candycane: { - event: events.winter, - specialClass: 'wizard', - text: t('armorSpecialCandycaneText'), - notes: t('armorSpecialCandycaneNotes', { - int: 9 - }), - int: 9, - value: 90 - }, - snowflake: { - event: events.winter, - specialClass: 'healer', - text: t('armorSpecialSnowflakeText'), - notes: t('armorSpecialSnowflakeNotes', { - con: 15 - }), - con: 15, - value: 90 - }, - birthday: { - event: events.birthday, - text: t('armorSpecialBirthdayText'), - notes: t('armorSpecialBirthdayNotes'), - value: 0 - }, - springRogue: { - event: events.spring, - specialClass: 'rogue', - text: t('armorSpecialSpringRogueText'), - notes: t('armorSpecialSpringRogueNotes', { - per: 15 - }), - value: 90, - per: 15 - }, - springWarrior: { - event: events.spring, - specialClass: 'warrior', - text: t('armorSpecialSpringWarriorText'), - notes: t('armorSpecialSpringWarriorNotes', { - con: 9 - }), - value: 90, - con: 9 - }, - springMage: { - event: events.spring, - specialClass: 'wizard', - text: t('armorSpecialSpringMageText'), - notes: t('armorSpecialSpringMageNotes', { - int: 9 - }), - value: 90, - int: 9 - }, - springHealer: { - event: events.spring, - specialClass: 'healer', - text: t('armorSpecialSpringHealerText'), - notes: t('armorSpecialSpringHealerNotes', { - con: 15 - }), - value: 90, - con: 15 - }, - summerRogue: { - event: events.summer, - specialClass: 'rogue', - text: t('armorSpecialSummerRogueText'), - notes: t('armorSpecialSummerRogueNotes', { - per: 15 - }), - value: 90, - per: 15 - }, - 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 - }, - fallRogue: { - event: events.fall, - specialClass: 'rogue', - text: t('armorSpecialFallRogueText'), - notes: t('armorSpecialFallRogueNotes', { - per: 15 - }), - value: 90, - per: 15 - }, - fallWarrior: { - event: events.fall, - specialClass: 'warrior', - text: t('armorSpecialFallWarriorText'), - notes: t('armorSpecialFallWarriorNotes', { - con: 9 - }), - value: 90, - con: 9 - }, - fallMage: { - event: events.fall, - specialClass: 'wizard', - text: t('armorSpecialFallMageText'), - notes: t('armorSpecialFallMageNotes', { - int: 9 - }), - value: 90, - int: 9 - }, - fallHealer: { - event: events.fall, - specialClass: 'healer', - text: t('armorSpecialFallHealerText'), - notes: t('armorSpecialFallHealerNotes', { - con: 15 - }), - value: 90, - con: 15 - }, - winter2015Rogue: { - event: events.winter2015, - specialClass: 'rogue', - text: t('armorSpecialWinter2015RogueText'), - notes: t('armorSpecialWinter2015RogueNotes', { - per: 15 - }), - value: 90, - per: 15 - }, - winter2015Warrior: { - event: events.winter2015, - specialClass: 'warrior', - text: t('armorSpecialWinter2015WarriorText'), - notes: t('armorSpecialWinter2015WarriorNotes', { - con: 9 - }), - value: 90, - con: 9 - }, - winter2015Mage: { - event: events.winter2015, - specialClass: 'wizard', - text: t('armorSpecialWinter2015MageText'), - notes: t('armorSpecialWinter2015MageNotes', { - int: 9 - }), - value: 90, - int: 9 - }, - winter2015Healer: { - event: events.winter2015, - specialClass: 'healer', - text: t('armorSpecialWinter2015HealerText'), - notes: t('armorSpecialWinter2015HealerNotes', { - con: 15 - }), - value: 90, - con: 15 - }, - birthday2015: { - text: t('armorSpecialBirthday2015Text'), - notes: t('armorSpecialBirthday2015Notes'), - value: 0, - canOwn: (function(u) { - return u.items.gear.owned.armor_special_birthday2015 != null; - }) - }, - gaymerx: { - event: events.gaymerx, - text: t('armorSpecialGaymerxText'), - notes: t('armorSpecialGaymerxNotes'), - value: 0 - } - }, - mystery: { - 201402: { - text: t('armorMystery201402Text'), - notes: t('armorMystery201402Notes'), - mystery: '201402', - value: 0 - }, - 201403: { - text: t('armorMystery201403Text'), - notes: t('armorMystery201403Notes'), - mystery: '201403', - value: 0 - }, - 201405: { - text: t('armorMystery201405Text'), - notes: t('armorMystery201405Notes'), - mystery: '201405', - value: 0 - }, - 201406: { - text: t('armorMystery201406Text'), - notes: t('armorMystery201406Notes'), - mystery: '201406', - value: 0 - }, - 201407: { - text: t('armorMystery201407Text'), - notes: t('armorMystery201407Notes'), - mystery: '201407', - value: 0 - }, - 201408: { - text: t('armorMystery201408Text'), - notes: t('armorMystery201408Notes'), - mystery: '201408', - value: 0 - }, - 201409: { - text: t('armorMystery201409Text'), - notes: t('armorMystery201409Notes'), - mystery: '201409', - value: 0 - }, - 201410: { - text: t('armorMystery201410Text'), - notes: t('armorMystery201410Notes'), - mystery: '201410', - value: 0 - }, - 201412: { - text: t('armorMystery201412Text'), - notes: t('armorMystery201412Notes'), - mystery: '201412', - value: 0 - }, - 201501: { - text: t('armorMystery201501Text'), - notes: t('armorMystery201501Notes'), - mystery: '201501', - value: 0 - }, - 301404: { - text: t('armorMystery301404Text'), - notes: t('armorMystery301404Notes'), - mystery: '301404', - value: 0 - } - } - }, - head: { - base: { - 0: { - text: t('headBase0Text'), - notes: t('headBase0Notes'), - value: 0 - } - }, - warrior: { - 1: { - text: t('headWarrior1Text'), - notes: t('headWarrior1Notes', { - str: 2 - }), - str: 2, - value: 15 - }, - 2: { - text: t('headWarrior2Text'), - notes: t('headWarrior2Notes', { - str: 4 - }), - str: 4, - value: 25 - }, - 3: { - text: t('headWarrior3Text'), - notes: t('headWarrior3Notes', { - str: 6 - }), - str: 6, - value: 40 - }, - 4: { - text: t('headWarrior4Text'), - notes: t('headWarrior4Notes', { - str: 9 - }), - str: 9, - value: 60 - }, - 5: { - text: t('headWarrior5Text'), - notes: t('headWarrior5Notes', { - str: 12 - }), - str: 12, - value: 80, - last: true - } - }, - rogue: { - 1: { - text: t('headRogue1Text'), - notes: t('headRogue1Notes', { - per: 2 - }), - per: 2, - value: 15 - }, - 2: { - text: t('headRogue2Text'), - notes: t('headRogue2Notes', { - per: 4 - }), - per: 4, - value: 25 - }, - 3: { - text: t('headRogue3Text'), - notes: t('headRogue3Notes', { - per: 6 - }), - per: 6, - value: 40 - }, - 4: { - text: t('headRogue4Text'), - notes: t('headRogue4Notes', { - per: 9 - }), - per: 9, - value: 60 - }, - 5: { - text: t('headRogue5Text'), - notes: t('headRogue5Notes', { - per: 12 - }), - per: 12, - value: 80, - last: true - } - }, - wizard: { - 1: { - text: t('headWizard1Text'), - notes: t('headWizard1Notes', { - per: 2 - }), - per: 2, - value: 15 - }, - 2: { - text: t('headWizard2Text'), - notes: t('headWizard2Notes', { - per: 3 - }), - per: 3, - value: 25 - }, - 3: { - text: t('headWizard3Text'), - notes: t('headWizard3Notes', { - per: 5 - }), - per: 5, - value: 40 - }, - 4: { - text: t('headWizard4Text'), - notes: t('headWizard4Notes', { - per: 7 - }), - per: 7, - value: 60 - }, - 5: { - text: t('headWizard5Text'), - notes: t('headWizard5Notes', { - per: 10 - }), - per: 10, - value: 80, - last: true - } - }, - healer: { - 1: { - text: t('headHealer1Text'), - notes: t('headHealer1Notes', { - int: 2 - }), - int: 2, - value: 15 - }, - 2: { - text: t('headHealer2Text'), - notes: t('headHealer2Notes', { - int: 3 - }), - int: 3, - value: 25 - }, - 3: { - text: t('headHealer3Text'), - notes: t('headHealer3Notes', { - int: 5 - }), - int: 5, - value: 40 - }, - 4: { - text: t('headHealer4Text'), - notes: t('headHealer4Notes', { - int: 7 - }), - int: 7, - value: 60 - }, - 5: { - text: t('headHealer5Text'), - notes: t('headHealer5Notes', { - int: 9 - }), - int: 9, - value: 80, - last: true - } - }, - special: { - 0: { - text: t('headSpecial0Text'), - notes: t('headSpecial0Notes', { - int: 20 - }), - int: 20, - value: 150, - canOwn: (function(u) { - var _ref; - return +((_ref = u.backer) != null ? _ref.tier : void 0) >= 45; - }) - }, - 1: { - text: t('headSpecial1Text'), - notes: t('headSpecial1Notes', { - attrs: 6 - }), - con: 6, - str: 6, - per: 6, - int: 6, - value: 170, - canOwn: (function(u) { - var _ref; - return +((_ref = u.contributor) != null ? _ref.level : void 0) >= 3; - }) - }, - 2: { - text: t('headSpecial2Text'), - notes: t('headSpecial2Notes', { - attrs: 25 - }), - int: 25, - str: 25, - value: 200, - canOwn: (function(u) { - var _ref; - return (+((_ref = u.backer) != null ? _ref.tier : void 0) >= 300) || (u.items.gear.owned.head_special_2 != null); - }) - }, - nye: { - event: events.winter, - text: t('headSpecialNyeText'), - notes: t('headSpecialNyeNotes'), - value: 0 - }, - yeti: { - event: events.winter, - specialClass: 'warrior', - text: t('headSpecialYetiText'), - notes: t('headSpecialYetiNotes', { - str: 9 - }), - str: 9, - value: 60 - }, - ski: { - event: events.winter, - specialClass: 'rogue', - text: t('headSpecialSkiText'), - notes: t('headSpecialSkiNotes', { - per: 9 - }), - per: 9, - value: 60 - }, - candycane: { - event: events.winter, - specialClass: 'wizard', - text: t('headSpecialCandycaneText'), - notes: t('headSpecialCandycaneNotes', { - per: 7 - }), - per: 7, - value: 60 - }, - snowflake: { - event: events.winter, - specialClass: 'healer', - text: t('headSpecialSnowflakeText'), - notes: t('headSpecialSnowflakeNotes', { - int: 7 - }), - int: 7, - value: 60 - }, - springRogue: { - event: events.spring, - specialClass: 'rogue', - text: t('headSpecialSpringRogueText'), - notes: t('headSpecialSpringRogueNotes', { - per: 9 - }), - value: 60, - per: 9 - }, - springWarrior: { - event: events.spring, - specialClass: 'warrior', - text: t('headSpecialSpringWarriorText'), - notes: t('headSpecialSpringWarriorNotes', { - str: 9 - }), - value: 60, - str: 9 - }, - springMage: { - event: events.spring, - specialClass: 'wizard', - text: t('headSpecialSpringMageText'), - notes: t('headSpecialSpringMageNotes', { - per: 7 - }), - value: 60, - per: 7 - }, - springHealer: { - event: events.spring, - specialClass: 'healer', - text: t('headSpecialSpringHealerText'), - notes: t('headSpecialSpringHealerNotes', { - int: 7 - }), - value: 60, - int: 7 - }, - summerRogue: { - event: events.summer, - specialClass: 'rogue', - text: t('headSpecialSummerRogueText'), - notes: t('headSpecialSummerRogueNotes', { - per: 9 - }), - value: 60, - per: 9 - }, - summerWarrior: { - event: events.summer, - specialClass: 'warrior', - text: t('headSpecialSummerWarriorText'), - notes: t('headSpecialSummerWarriorNotes', { - str: 9 - }), - value: 60, - str: 9 - }, - summerMage: { - event: events.summer, - specialClass: 'wizard', - text: t('headSpecialSummerMageText'), - notes: t('headSpecialSummerMageNotes', { - per: 7 - }), - value: 60, - per: 7 - }, - summerHealer: { - event: events.summer, - specialClass: 'healer', - text: t('headSpecialSummerHealerText'), - notes: t('headSpecialSummerHealerNotes', { - int: 7 - }), - value: 60, - int: 7 - }, - fallRogue: { - event: events.fall, - specialClass: 'rogue', - text: t('headSpecialFallRogueText'), - notes: t('headSpecialFallRogueNotes', { - per: 9 - }), - value: 60, - per: 9 - }, - fallWarrior: { - event: events.fall, - specialClass: 'warrior', - text: t('headSpecialFallWarriorText'), - notes: t('headSpecialFallWarriorNotes', { - str: 9 - }), - value: 60, - str: 9 - }, - fallMage: { - event: events.fall, - specialClass: 'wizard', - text: t('headSpecialFallMageText'), - notes: t('headSpecialFallMageNotes', { - per: 7 - }), - value: 60, - per: 7 - }, - fallHealer: { - event: events.fall, - specialClass: 'healer', - text: t('headSpecialFallHealerText'), - notes: t('headSpecialFallHealerNotes', { - int: 7 - }), - value: 60, - int: 7 - }, - winter2015Rogue: { - event: events.winter2015, - specialClass: 'rogue', - text: t('headSpecialWinter2015RogueText'), - notes: t('headSpecialWinter2015RogueNotes', { - per: 9 - }), - value: 60, - per: 9 - }, - winter2015Warrior: { - event: events.winter2015, - specialClass: 'warrior', - text: t('headSpecialWinter2015WarriorText'), - notes: t('headSpecialWinter2015WarriorNotes', { - str: 9 - }), - value: 60, - str: 9 - }, - winter2015Mage: { - event: events.winter2015, - specialClass: 'wizard', - text: t('headSpecialWinter2015MageText'), - notes: t('headSpecialWinter2015MageNotes', { - per: 7 - }), - value: 60, - per: 7 - }, - winter2015Healer: { - event: events.winter2015, - specialClass: 'healer', - text: t('headSpecialWinter2015HealerText'), - notes: t('headSpecialWinter2015HealerNotes', { - int: 7 - }), - value: 60, - int: 7 - }, - nye2014: { - text: t('headSpecialNye2014Text'), - notes: t('headSpecialNye2014Notes'), - value: 0, - canOwn: (function(u) { - return u.items.gear.owned.head_special_nye2014 != null; - }) - }, - gaymerx: { - event: events.gaymerx, - text: t('headSpecialGaymerxText'), - notes: t('headSpecialGaymerxNotes'), - value: 0 - } - }, - mystery: { - 201402: { - text: t('headMystery201402Text'), - notes: t('headMystery201402Notes'), - mystery: '201402', - value: 0 - }, - 201405: { - text: t('headMystery201405Text'), - notes: t('headMystery201405Notes'), - mystery: '201405', - value: 0 - }, - 201406: { - text: t('headMystery201406Text'), - notes: t('headMystery201406Notes'), - mystery: '201406', - value: 0 - }, - 201407: { - text: t('headMystery201407Text'), - notes: t('headMystery201407Notes'), - mystery: '201407', - value: 0 - }, - 201408: { - text: t('headMystery201408Text'), - notes: t('headMystery201408Notes'), - mystery: '201408', - value: 0 - }, - 201411: { - text: t('headMystery201411Text'), - notes: t('headMystery201411Notes'), - mystery: '201411', - value: 0 - }, - 201412: { - text: t('headMystery201412Text'), - notes: t('headMystery201412Notes'), - mystery: '201412', - value: 0 - }, - 201501: { - text: t('headMystery201501Text'), - notes: t('headMystery201501Notes'), - mystery: '201501', - value: 0 - }, - 301404: { - text: t('headMystery301404Text'), - notes: t('headMystery301404Notes'), - mystery: '301404', - value: 0 - }, - 301405: { - text: t('headMystery301405Text'), - notes: t('headMystery301405Notes'), - mystery: '301405', - value: 0 - } - } - }, - shield: { - base: { - 0: { - text: t('shieldBase0Text'), - notes: t('shieldBase0Notes'), - value: 0 - } - }, - warrior: { - 1: { - text: t('shieldWarrior1Text'), - notes: t('shieldWarrior1Notes', { - con: 2 - }), - con: 2, - value: 20 - }, - 2: { - text: t('shieldWarrior2Text'), - notes: t('shieldWarrior2Notes', { - con: 3 - }), - con: 3, - value: 35 - }, - 3: { - text: t('shieldWarrior3Text'), - notes: t('shieldWarrior3Notes', { - con: 5 - }), - con: 5, - value: 50 - }, - 4: { - text: t('shieldWarrior4Text'), - notes: t('shieldWarrior4Notes', { - con: 7 - }), - con: 7, - value: 70 - }, - 5: { - text: t('shieldWarrior5Text'), - notes: t('shieldWarrior5Notes', { - con: 9 - }), - con: 9, - value: 90, - last: true - } - }, - rogue: { - 0: { - text: t('weaponRogue0Text'), - notes: t('weaponRogue0Notes'), - str: 0, - value: 0 - }, - 1: { - text: t('weaponRogue1Text'), - notes: t('weaponRogue1Notes', { - str: 2 - }), - str: 2, - value: 20 - }, - 2: { - text: t('weaponRogue2Text'), - notes: t('weaponRogue2Notes', { - str: 3 - }), - str: 3, - value: 35 - }, - 3: { - text: t('weaponRogue3Text'), - notes: t('weaponRogue3Notes', { - str: 4 - }), - str: 4, - value: 50 - }, - 4: { - text: t('weaponRogue4Text'), - notes: t('weaponRogue4Notes', { - str: 6 - }), - str: 6, - value: 70 - }, - 5: { - text: t('weaponRogue5Text'), - notes: t('weaponRogue5Notes', { - str: 8 - }), - str: 8, - value: 90 - }, - 6: { - text: t('weaponRogue6Text'), - notes: t('weaponRogue6Notes', { - str: 10 - }), - str: 10, - value: 120, - last: true - } - }, - wizard: {}, - healer: { - 1: { - text: t('shieldHealer1Text'), - notes: t('shieldHealer1Notes', { - con: 2 - }), - con: 2, - value: 20 - }, - 2: { - text: t('shieldHealer2Text'), - notes: t('shieldHealer2Notes', { - con: 4 - }), - con: 4, - value: 35 - }, - 3: { - text: t('shieldHealer3Text'), - notes: t('shieldHealer3Notes', { - con: 6 - }), - con: 6, - value: 50 - }, - 4: { - text: t('shieldHealer4Text'), - notes: t('shieldHealer4Notes', { - con: 9 - }), - con: 9, - value: 70 - }, - 5: { - text: t('shieldHealer5Text'), - notes: t('shieldHealer5Notes', { - con: 12 - }), - con: 12, - value: 90, - last: true - } - }, - special: { - 0: { - text: t('shieldSpecial0Text'), - notes: t('shieldSpecial0Notes', { - per: 20 - }), - per: 20, - value: 150, - canOwn: (function(u) { - var _ref; - return +((_ref = u.backer) != null ? _ref.tier : void 0) >= 45; - }) - }, - 1: { - text: t('shieldSpecial1Text'), - notes: t('shieldSpecial1Notes', { - attrs: 6 - }), - con: 6, - str: 6, - per: 6, - int: 6, - value: 170, - canOwn: (function(u) { - var _ref; - return +((_ref = u.contributor) != null ? _ref.level : void 0) >= 5; - }) - }, - goldenknight: { - text: t('shieldSpecialGoldenknightText'), - notes: t('shieldSpecialGoldenknightNotes', { - attrs: 25 - }), - con: 25, - per: 25, - value: 200, - canOwn: (function(u) { - return u.items.gear.owned.shield_special_goldenknight != null; - }) - }, - yeti: { - event: events.winter, - specialClass: 'warrior', - text: t('shieldSpecialYetiText'), - notes: t('shieldSpecialYetiNotes', { - con: 7 - }), - con: 7, - value: 70 - }, - ski: { - event: events.winter, - specialClass: 'rogue', - text: t('weaponSpecialSkiText'), - notes: t('weaponSpecialSkiNotes', { - str: 8 - }), - str: 8, - value: 90 - }, - snowflake: { - event: events.winter, - specialClass: 'healer', - text: t('shieldSpecialSnowflakeText'), - notes: t('shieldSpecialSnowflakeNotes', { - con: 9 - }), - con: 9, - value: 70 - }, - springRogue: { - event: events.spring, - specialClass: 'rogue', - text: t('shieldSpecialSpringRogueText'), - notes: t('shieldSpecialSpringRogueNotes', { - str: 8 - }), - value: 80, - str: 8 - }, - springWarrior: { - event: events.spring, - specialClass: 'warrior', - text: t('shieldSpecialSpringWarriorText'), - notes: t('shieldSpecialSpringWarriorNotes', { - con: 7 - }), - value: 70, - con: 7 - }, - springHealer: { - event: events.spring, - specialClass: 'healer', - text: t('shieldSpecialSpringHealerText'), - notes: t('shieldSpecialSpringHealerNotes', { - con: 9 - }), - value: 70, - con: 9 - }, - summerRogue: { - event: events.summer, - specialClass: 'rogue', - text: t('shieldSpecialSummerRogueText'), - notes: t('shieldSpecialSummerRogueNotes', { - str: 8 - }), - value: 80, - str: 8 - }, - summerWarrior: { - event: events.summer, - specialClass: 'warrior', - text: t('shieldSpecialSummerWarriorText'), - notes: t('shieldSpecialSummerWarriorNotes', { - con: 7 - }), - value: 70, - con: 7 - }, - summerHealer: { - event: events.summer, - specialClass: 'healer', - text: t('shieldSpecialSummerHealerText'), - notes: t('shieldSpecialSummerHealerNotes', { - con: 9 - }), - value: 70, - con: 9 - }, - fallRogue: { - event: events.fall, - specialClass: 'rogue', - text: t('shieldSpecialFallRogueText'), - notes: t('shieldSpecialFallRogueNotes', { - str: 8 - }), - value: 80, - str: 8 - }, - fallWarrior: { - event: events.fall, - specialClass: 'warrior', - text: t('shieldSpecialFallWarriorText'), - notes: t('shieldSpecialFallWarriorNotes', { - con: 7 - }), - value: 70, - con: 7 - }, - fallHealer: { - event: events.fall, - specialClass: 'healer', - text: t('shieldSpecialFallHealerText'), - notes: t('shieldSpecialFallHealerNotes', { - con: 9 - }), - value: 70, - con: 9 - }, - winter2015Rogue: { - event: events.winter2015, - specialClass: 'rogue', - text: t('shieldSpecialWinter2015RogueText'), - notes: t('shieldSpecialWinter2015RogueNotes', { - str: 8 - }), - value: 80, - str: 8 - }, - winter2015Warrior: { - event: events.winter2015, - specialClass: 'warrior', - text: t('shieldSpecialWinter2015WarriorText'), - notes: t('shieldSpecialWinter2015WarriorNotes', { - con: 7 - }), - value: 70, - con: 7 - }, - winter2015Healer: { - event: events.winter2015, - specialClass: 'healer', - text: t('shieldSpecialWinter2015HealerText'), - notes: t('shieldSpecialWinter2015HealerNotes', { - con: 9 - }), - value: 70, - con: 9 - } - }, - mystery: { - 301405: { - text: t('shieldMystery301405Text'), - notes: t('shieldMystery301405Notes'), - mystery: '301405', - value: 0 - } - } - }, - back: { - base: { - 0: { - text: t('backBase0Text'), - notes: t('backBase0Notes'), - value: 0 - } - }, - mystery: { - 201402: { - text: t('backMystery201402Text'), - notes: t('backMystery201402Notes'), - mystery: '201402', - value: 0 - }, - 201404: { - text: t('backMystery201404Text'), - notes: t('backMystery201404Notes'), - mystery: '201404', - value: 0 - }, - 201410: { - text: t('backMystery201410Text'), - notes: t('backMystery201410Notes'), - mystery: '201410', - value: 0 - } - }, - special: { - wondercon_red: { - text: t('backSpecialWonderconRedText'), - notes: t('backSpecialWonderconRedNotes'), - value: 0, - mystery: 'wondercon' - }, - wondercon_black: { - text: t('backSpecialWonderconBlackText'), - notes: t('backSpecialWonderconBlackNotes'), - value: 0, - mystery: 'wondercon' - } - } - }, - body: { - base: { - 0: { - text: t('bodyBase0Text'), - notes: t('bodyBase0Notes'), - value: 0 - } - }, - special: { - wondercon_red: { - text: t('bodySpecialWonderconRedText'), - notes: t('bodySpecialWonderconRedNotes'), - value: 0, - mystery: 'wondercon' - }, - wondercon_gold: { - text: t('bodySpecialWonderconGoldText'), - notes: t('bodySpecialWonderconGoldNotes'), - value: 0, - mystery: 'wondercon' - }, - wondercon_black: { - text: t('bodySpecialWonderconBlackText'), - notes: t('bodySpecialWonderconBlackNotes'), - value: 0, - mystery: 'wondercon' - }, - summerHealer: { - event: events.summer, - specialClass: 'healer', - text: t('bodySpecialSummerHealerText'), - notes: t('bodySpecialSummerHealerNotes'), - value: 20 - }, - summerMage: { - event: events.summer, - specialClass: 'wizard', - text: t('bodySpecialSummerMageText'), - notes: t('bodySpecialSummerMageNotes'), - value: 20 - } - } - }, - headAccessory: { - base: { - 0: { - text: t('headAccessoryBase0Text'), - notes: t('headAccessoryBase0Notes'), - value: 0, - last: true - } - }, - special: { - springRogue: { - event: events.spring, - specialClass: 'rogue', - text: t('headAccessorySpecialSpringRogueText'), - notes: t('headAccessorySpecialSpringRogueNotes'), - value: 20 - }, - springWarrior: { - event: events.spring, - specialClass: 'warrior', - text: t('headAccessorySpecialSpringWarriorText'), - notes: t('headAccessorySpecialSpringWarriorNotes'), - value: 20 - }, - springMage: { - event: events.spring, - specialClass: 'wizard', - text: t('headAccessorySpecialSpringMageText'), - notes: t('headAccessorySpecialSpringMageNotes'), - value: 20 - }, - springHealer: { - event: events.spring, - specialClass: 'healer', - text: t('headAccessorySpecialSpringHealerText'), - notes: t('headAccessorySpecialSpringHealerNotes'), - value: 20 - } - }, - mystery: { - 201403: { - text: t('headAccessoryMystery201403Text'), - notes: t('headAccessoryMystery201403Notes'), - mystery: '201403', - value: 0 - }, - 201404: { - text: t('headAccessoryMystery201404Text'), - notes: t('headAccessoryMystery201404Notes'), - mystery: '201404', - value: 0 - }, - 201409: { - text: t('headAccessoryMystery201409Text'), - notes: t('headAccessoryMystery201409Notes'), - mystery: '201409', - value: 0 - }, - 301405: { - text: t('headAccessoryMystery301405Text'), - notes: t('headAccessoryMystery301405Notes'), - mystery: '301405', - value: 0 - } - } - }, - eyewear: { - base: { - 0: { - text: t('eyewearBase0Text'), - notes: t('eyewearBase0Notes'), - value: 0, - last: true - } - }, - special: { - wondercon_red: { - text: t('eyewearSpecialWonderconRedText'), - notes: t('eyewearSpecialWonderconRedNotes'), - value: 0, - mystery: 'wondercon' - }, - wondercon_black: { - text: t('eyewearSpecialWonderconBlackText'), - notes: t('eyewearSpecialWonderconBlackNotes'), - value: 0, - mystery: 'wondercon' - }, - summerRogue: { - event: events.summer, - specialClass: 'rogue', - text: t('eyewearSpecialSummerRogueText'), - notes: t('eyewearSpecialSummerRogueNotes'), - value: 20 - }, - summerWarrior: { - event: events.summer, - specialClass: 'warrior', - text: t('eyewearSpecialSummerWarriorText'), - notes: t('eyewearSpecialSummerWarriorNotes'), - value: 20 - } - }, - mystery: { - 301404: { - text: t('eyewearMystery301404Text'), - notes: t('eyewearMystery301404Notes'), - mystery: '301404', - value: 0 - }, - 301405: { - text: t('eyewearMystery301405Text'), - notes: t('eyewearMystery301405Notes'), - mystery: '301405', - value: 0 - } - } - } -}; - - -/* - The gear is exported as a tree (defined above), and a flat list (eg, {weapon_healer_1: .., shield_special_0: ...}) since - they are needed in different froms at different points in the app - */ - -api.gear = { - tree: gear, - flat: {} -}; - -_.each(gearTypes, function(type) { - return _.each(classes.concat(['base', 'special', 'mystery']), function(klass) { - return _.each(gear[type][klass], function(item, i) { - var key, _canOwn; - key = "" + type + "_" + klass + "_" + i; - _.defaults(item, { - type: type, - key: key, - klass: klass, - index: i, - str: 0, - int: 0, - per: 0, - con: 0 - }); - if (item.event) { - _canOwn = item.canOwn || (function() { - return true; - }); - item.canOwn = function(u) { - return _canOwn(u) && ((u.items.gear.owned[key] != null) || (moment().isAfter(item.event.start) && moment().isBefore(item.event.end))) && (item.specialClass ? u.stats["class"] === item.specialClass : true); - }; - } - if (item.mystery) { - item.canOwn = function(u) { - return u.items.gear.owned[key] != null; - }; - } - return api.gear.flat[key] = item; - }); - }); -}); - - -/* - Time Traveler Store, mystery sets need their items mapped in - */ - -_.each(api.mystery, function(v, k) { - return v.items = _.where(api.gear.flat, { - mystery: k - }); -}); - -api.timeTravelerStore = function(owned) { - var ownedKeys; - ownedKeys = _.keys((typeof owned.toObject === "function" ? owned.toObject() : void 0) || owned); - return _.reduce(api.mystery, function(m, v, k) { - if (k === 'wondercon' || ~ownedKeys.indexOf(v.items[0].key)) { - return m; - } - m[k] = v; - return m; - }, {}); -}; - - -/* - --------------------------------------------------------------- - Potion - --------------------------------------------------------------- - */ - -api.potion = { - type: 'potion', - text: t('potionText'), - notes: t('potionNotes'), - value: 25, - key: 'potion' -}; - - -/* - --------------------------------------------------------------- - Classes - --------------------------------------------------------------- - */ - -api.classes = classes; - - -/* - --------------------------------------------------------------- - Gear Types - --------------------------------------------------------------- - */ - -api.gearTypes = gearTypes; - - -/* - --------------------------------------------------------------- - Spells - --------------------------------------------------------------- - Text, notes, and mana are obvious. The rest: - - * {target}: one of [task, self, party, user]. This is very important, because if the cast() function is expecting one - thing and receives another, it will cause errors. `self` is used for self buffs, multi-task debuffs, AOEs (eg, meteor-shower), - etc. Basically, use self for anything that's not [task, party, user] and is an instant-cast - - * {cast}: the function that's run to perform the ability's action. This is pretty slick - because this is exported to the - web, this function can be performed on the client and on the server. `user` param is self (needed for determining your - own stats for effectiveness of cast), and `target` param is one of [task, party, user]. In the case of `self` spells, - you act on `user` instead of `target`. You can trust these are the correct objects, as long as the `target` attr of the - spell is correct. Take a look at habitrpg/src/models/user.js and habitrpg/src/models/task.js for what attributes are - available on each model. Note `task.value` is its "redness". If party is passed in, it's an array of users, - so you'll want to iterate over them like: `_.each(target,function(member){...})` - - Note, user.stats.mp is docked after automatically (it's appended to functions automatically down below in an _.each) - */ - -diminishingReturns = function(bonus, max, halfway) { - if (halfway == null) { - halfway = max / 2; - } - return max * (bonus / (bonus + halfway)); -}; - -api.spells = { - wizard: { - fireball: { - text: t('spellWizardFireballText'), - mana: 10, - lvl: 11, - target: 'task', - notes: t('spellWizardFireballNotes'), - cast: function(user, target) { - var bonus; - bonus = user._statsComputed.int * user.fns.crit('per'); - target.value += diminishingReturns(bonus * .02, 4); - bonus *= Math.ceil((target.value < 0 ? 1 : target.value + 1) * .075); - user.stats.exp += diminishingReturns(bonus, 75); - return user.party.quest.progress.up += diminishingReturns(bonus * .1, 50, 30); - } - }, - mpheal: { - text: t('spellWizardMPHealText'), - mana: 30, - lvl: 12, - target: 'party', - notes: t('spellWizardMPHealNotes'), - cast: function(user, target) { - return _.each(target, function(member) { - var bonus; - bonus = Math.ceil(user._statsComputed.int * .1); - if (bonus > 25) { - bonus = 25; - } - return member.stats.mp += bonus; - }); - } - }, - earth: { - text: t('spellWizardEarthText'), - mana: 35, - lvl: 13, - target: 'party', - notes: t('spellWizardEarthNotes'), - cast: function(user, target) { - return _.each(target, function(member) { - var _base; - if ((_base = member.stats.buffs).int == null) { - _base.int = 0; - } - return member.stats.buffs.int += Math.ceil(user._statsComputed.int * .05); - }); - } - }, - frost: { - text: t('spellWizardFrostText'), - mana: 40, - lvl: 14, - target: 'self', - notes: t('spellWizardFrostNotes'), - cast: function(user, target) { - return user.stats.buffs.streaks = true; - } - } - }, - warrior: { - smash: { - text: t('spellWarriorSmashText'), - mana: 10, - lvl: 11, - target: 'task', - notes: t('spellWarriorSmashNotes'), - cast: function(user, target) { - target.value += 2.5 * (user._statsComputed.str / (user._statsComputed.str + 50)) * user.fns.crit('con'); - return user.party.quest.progress.up += Math.ceil(user._statsComputed.str * .2); - } - }, - defensiveStance: { - text: t('spellWarriorDefensiveStanceText'), - mana: 25, - lvl: 12, - target: 'self', - notes: t('spellWarriorDefensiveStanceNotes'), - cast: function(user, target) { - var _base; - if ((_base = user.stats.buffs).con == null) { - _base.con = 0; - } - return user.stats.buffs.con += Math.ceil(user._statsComputed.con * .05); - } - }, - valorousPresence: { - text: t('spellWarriorValorousPresenceText'), - mana: 20, - lvl: 13, - target: 'party', - notes: t('spellWarriorValorousPresenceNotes'), - cast: function(user, target) { - return _.each(target, function(member) { - var _base; - if ((_base = member.stats.buffs).str == null) { - _base.str = 0; - } - return member.stats.buffs.str += Math.ceil(user._statsComputed.str * .05); - }); - } - }, - intimidate: { - text: t('spellWarriorIntimidateText'), - mana: 15, - lvl: 14, - target: 'party', - notes: t('spellWarriorIntimidateNotes'), - cast: function(user, target) { - return _.each(target, function(member) { - var _base; - if ((_base = member.stats.buffs).con == null) { - _base.con = 0; - } - return member.stats.buffs.con += Math.ceil(user._statsComputed.con * .03); - }); - } - } - }, - rogue: { - pickPocket: { - text: t('spellRoguePickPocketText'), - mana: 10, - lvl: 11, - target: 'task', - notes: t('spellRoguePickPocketNotes'), - cast: function(user, target) { - var bonus; - bonus = (target.value < 0 ? 1 : target.value + 2) + (user._statsComputed.per * 0.5); - return user.stats.gp += 25 * (bonus / (bonus + 75)); - } - }, - backStab: { - text: t('spellRogueBackStabText'), - mana: 15, - lvl: 12, - target: 'task', - notes: t('spellRogueBackStabNotes'), - cast: function(user, target) { - var bonus, _crit; - _crit = user.fns.crit('str', .3); - target.value += _crit * .03; - bonus = (target.value < 0 ? 1 : target.value + 1) * _crit; - user.stats.exp += bonus; - return user.stats.gp += bonus; - } - }, - toolsOfTrade: { - text: t('spellRogueToolsOfTradeText'), - mana: 25, - lvl: 13, - target: 'party', - notes: t('spellRogueToolsOfTradeNotes'), - cast: function(user, target) { - return _.each(target, function(member) { - var _base; - if ((_base = member.stats.buffs).per == null) { - _base.per = 0; - } - return member.stats.buffs.per += Math.ceil(user._statsComputed.per * .03); - }); - } - }, - stealth: { - text: t('spellRogueStealthText'), - mana: 45, - lvl: 14, - target: 'self', - notes: t('spellRogueStealthNotes'), - cast: function(user, target) { - var _base; - if ((_base = user.stats.buffs).stealth == null) { - _base.stealth = 0; - } - return user.stats.buffs.stealth += Math.ceil(user.dailys.length * user._statsComputed.per / 100); - } - } - }, - healer: { - heal: { - text: t('spellHealerHealText'), - mana: 15, - lvl: 11, - target: 'self', - notes: t('spellHealerHealNotes'), - cast: function(user, target) { - user.stats.hp += (user._statsComputed.con + user._statsComputed.int + 5) * .075; - if (user.stats.hp > 50) { - return user.stats.hp = 50; - } - } - }, - brightness: { - text: t('spellHealerBrightnessText'), - mana: 15, - lvl: 12, - target: 'self', - notes: t('spellHealerBrightnessNotes'), - cast: function(user, target) { - return _.each(user.tasks, function(target) { - if (target.type === 'reward') { - return; - } - return target.value += 1.5 * (user._statsComputed.int / (user._statsComputed.int + 40)); - }); - } - }, - protectAura: { - text: t('spellHealerProtectAuraText'), - mana: 30, - lvl: 13, - target: 'party', - notes: t('spellHealerProtectAuraNotes'), - cast: function(user, target) { - return _.each(target, function(member) { - var _base; - if ((_base = member.stats.buffs).con == null) { - _base.con = 0; - } - return member.stats.buffs.con += Math.ceil(user._statsComputed.con * .15); - }); - } - }, - heallAll: { - text: t('spellHealerHealAllText'), - mana: 25, - lvl: 14, - target: 'party', - notes: t('spellHealerHealAllNotes'), - cast: function(user, target) { - return _.each(target, function(member) { - member.stats.hp += (user._statsComputed.con + user._statsComputed.int + 5) * .04; - if (member.stats.hp > 50) { - return member.stats.hp = 50; - } - }); - } - } - }, - special: { - snowball: { - text: t('spellSpecialSnowballAuraText'), - mana: 0, - value: 15, - target: 'user', - notes: t('spellSpecialSnowballAuraNotes'), - cast: function(user, target) { - var _base; - target.stats.buffs.snowball = true; - if ((_base = target.achievements).snowball == null) { - _base.snowball = 0; - } - target.achievements.snowball++; - return user.items.special.snowball--; - } - }, - salt: { - text: t('spellSpecialSaltText'), - mana: 0, - value: 5, - immediateUse: true, - target: 'self', - notes: t('spellSpecialSaltNotes'), - cast: function(user, target) { - user.stats.buffs.snowball = false; - return user.stats.gp -= 5; - } - }, - spookDust: { - text: t('spellSpecialSpookDustText'), - mana: 0, - value: 15, - target: 'user', - notes: t('spellSpecialSpookDustNotes'), - cast: function(user, target) { - var _base; - target.stats.buffs.spookDust = true; - if ((_base = target.achievements).spookDust == null) { - _base.spookDust = 0; - } - target.achievements.spookDust++; - return user.items.special.spookDust--; - } - }, - opaquePotion: { - text: t('spellSpecialOpaquePotionText'), - mana: 0, - value: 5, - immediateUse: true, - target: 'self', - notes: t('spellSpecialOpaquePotionNotes'), - cast: function(user, target) { - user.stats.buffs.spookDust = false; - return user.stats.gp -= 5; - } - }, - nye: { - text: t('nyeCard'), - mana: 0, - value: 10, - immediateUse: true, - target: 'user', - notes: t('nyeCardNotes'), - cast: function(user, target) { - var _base; - if (user === target) { - if ((_base = user.achievements).nye == null) { - _base.nye = 0; - } - user.achievements.nye++; - } else { - _.each([user, target], function(t) { - var _base1; - if ((_base1 = t.achievements).nye == null) { - _base1.nye = 0; - } - return t.achievements.nye++; - }); - } - if (!target.items.special.nyeReceived) { - target.items.special.nyeReceived = []; - } - target.items.special.nyeReceived.push(user.profile.name); - if (typeof target.markModified === "function") { - target.markModified('items.special.nyeReceived'); - } - return user.stats.gp -= 10; - } - } - } -}; - -_.each(api.spells, function(spellClass) { - return _.each(spellClass, function(spell, key) { - var _cast; - spell.key = key; - _cast = spell.cast; - return spell.cast = function(user, target) { - _cast(user, target); - return user.stats.mp -= spell.mana; - }; - }); -}); - -api.special = api.spells.special; - - -/* - --------------------------------------------------------------- - Drops - --------------------------------------------------------------- - */ - -api.dropEggs = { - Wolf: { - text: t('dropEggWolfText'), - adjective: t('dropEggWolfAdjective') - }, - TigerCub: { - text: t('dropEggTigerCubText'), - mountText: t('dropEggTigerCubMountText'), - adjective: t('dropEggTigerCubAdjective') - }, - PandaCub: { - text: t('dropEggPandaCubText'), - mountText: t('dropEggPandaCubMountText'), - adjective: t('dropEggPandaCubAdjective') - }, - LionCub: { - text: t('dropEggLionCubText'), - mountText: t('dropEggLionCubMountText'), - adjective: t('dropEggLionCubAdjective') - }, - Fox: { - text: t('dropEggFoxText'), - adjective: t('dropEggFoxAdjective') - }, - FlyingPig: { - text: t('dropEggFlyingPigText'), - adjective: t('dropEggFlyingPigAdjective') - }, - Dragon: { - text: t('dropEggDragonText'), - adjective: t('dropEggDragonAdjective') - }, - Cactus: { - text: t('dropEggCactusText'), - adjective: t('dropEggCactusAdjective') - }, - BearCub: { - text: t('dropEggBearCubText'), - mountText: t('dropEggBearCubMountText'), - adjective: t('dropEggBearCubAdjective') - } -}; - -_.each(api.dropEggs, function(egg, key) { - return _.defaults(egg, { - canBuy: true, - value: 3, - key: key, - notes: t('eggNotes', { - eggText: egg.text, - eggAdjective: egg.adjective - }), - mountText: egg.text - }); -}); - -api.questEggs = { - Gryphon: { - text: t('questEggGryphonText'), - adjective: t('questEggGryphonAdjective'), - canBuy: false - }, - Hedgehog: { - text: t('questEggHedgehogText'), - adjective: t('questEggHedgehogAdjective'), - canBuy: false - }, - Deer: { - text: t('questEggDeerText'), - adjective: t('questEggDeerAdjective'), - canBuy: false - }, - Egg: { - text: t('questEggEggText'), - adjective: t('questEggEggAdjective'), - canBuy: false, - noMount: true - }, - Rat: { - text: t('questEggRatText'), - adjective: t('questEggRatAdjective'), - canBuy: false - }, - Octopus: { - text: t('questEggOctopusText'), - adjective: t('questEggOctopusAdjective'), - canBuy: false - }, - Seahorse: { - text: t('questEggSeahorseText'), - adjective: t('questEggSeahorseAdjective'), - canBuy: false - }, - Parrot: { - text: t('questEggParrotText'), - adjective: t('questEggParrotAdjective'), - canBuy: false - }, - Rooster: { - text: t('questEggRoosterText'), - adjective: t('questEggRoosterAdjective'), - canBuy: false - }, - Spider: { - text: t('questEggSpiderText'), - adjective: t('questEggSpiderAdjective'), - canBuy: false - }, - Owl: { - text: t('questEggOwlText'), - adjective: t('questEggOwlAdjective'), - canBuy: false - }, - Penguin: { - text: t('questEggPenguinText'), - adjective: t('questEggPenguinAdjective'), - canBuy: false - }, - TRex: { - text: t('questEggTRexText'), - adjective: t('questEggTRexAdjective'), - canBuy: false - } -}; - -_.each(api.questEggs, function(egg, key) { - return _.defaults(egg, { - canBuy: false, - value: 3, - key: key, - notes: t('eggNotes', { - eggText: egg.text, - eggAdjective: egg.adjective - }), - mountText: egg.text - }); -}); - -api.eggs = _.assign(_.cloneDeep(api.dropEggs), api.questEggs); - -api.specialPets = { - 'Wolf-Veteran': 'veteranWolf', - 'Wolf-Cerberus': 'cerberusPup', - 'Dragon-Hydra': 'hydra', - 'Turkey-Base': 'turkey', - 'BearCub-Polar': 'polarBearPup', - 'MantisShrimp-Base': 'mantisShrimp', - 'JackOLantern-Base': 'jackolantern', - 'Mammoth-Base': 'mammoth' -}; - -api.specialMounts = { - 'BearCub-Polar': 'polarBear', - 'LionCub-Ethereal': 'etherealLion', - 'MantisShrimp-Base': 'mantisShrimp', - 'Turkey-Base': 'turkey', - 'Mammoth-Base': 'mammoth' -}; - -api.hatchingPotions = { - Base: { - value: 2, - text: t('hatchingPotionBase') - }, - White: { - value: 2, - text: t('hatchingPotionWhite') - }, - Desert: { - value: 2, - text: t('hatchingPotionDesert') - }, - Red: { - value: 3, - text: t('hatchingPotionRed') - }, - Shade: { - value: 3, - text: t('hatchingPotionShade') - }, - Skeleton: { - value: 3, - text: t('hatchingPotionSkeleton') - }, - Zombie: { - value: 4, - text: t('hatchingPotionZombie') - }, - CottonCandyPink: { - value: 4, - text: t('hatchingPotionCottonCandyPink') - }, - CottonCandyBlue: { - value: 4, - text: t('hatchingPotionCottonCandyBlue') - }, - Golden: { - value: 5, - text: t('hatchingPotionGolden') - } -}; - -_.each(api.hatchingPotions, function(pot, key) { - return _.defaults(pot, { - key: key, - value: 2, - notes: t('hatchingPotionNotes', { - potText: pot.text - }) - }); -}); - -api.pets = _.transform(api.dropEggs, function(m, egg) { - return _.defaults(m, _.transform(api.hatchingPotions, function(m2, pot) { - return m2[egg.key + "-" + pot.key] = true; - })); -}); - -api.questPets = _.transform(api.questEggs, function(m, egg) { - return _.defaults(m, _.transform(api.hatchingPotions, function(m2, pot) { - return m2[egg.key + "-" + pot.key] = true; - })); -}); - -api.mounts = _.transform(api.dropEggs, function(m, egg) { - return _.defaults(m, _.transform(api.hatchingPotions, function(m2, pot) { - return m2[egg.key + "-" + pot.key] = true; - })); -}); - -api.questMounts = _.transform(api.questEggs, function(m, egg) { - return _.defaults(m, _.transform(api.hatchingPotions, function(m2, pot) { - return m2[egg.key + "-" + pot.key] = true; - })); -}); - -api.food = { - Meat: { - canBuy: true, - canDrop: true, - text: t('foodMeat'), - target: 'Base', - article: '' - }, - Milk: { - canBuy: true, - canDrop: true, - text: t('foodMilk'), - target: 'White', - article: '' - }, - Potatoe: { - canBuy: true, - canDrop: true, - text: t('foodPotatoe'), - target: 'Desert', - article: 'a ' - }, - Strawberry: { - canBuy: true, - canDrop: true, - text: t('foodStrawberry'), - target: 'Red', - article: 'a ' - }, - Chocolate: { - canBuy: true, - canDrop: true, - text: t('foodChocolate'), - target: 'Shade', - article: '' - }, - Fish: { - canBuy: true, - canDrop: true, - text: t('foodFish'), - target: 'Skeleton', - article: 'a ' - }, - RottenMeat: { - canBuy: true, - canDrop: true, - text: t('foodRottenMeat'), - target: 'Zombie', - article: '' - }, - CottonCandyPink: { - canBuy: true, - canDrop: true, - text: t('foodCottonCandyPink'), - target: 'CottonCandyPink', - article: '' - }, - CottonCandyBlue: { - canBuy: true, - canDrop: true, - text: t('foodCottonCandyBlue'), - target: 'CottonCandyBlue', - article: '' - }, - Honey: { - canBuy: true, - canDrop: true, - text: t('foodHoney'), - target: 'Golden', - article: '' - }, - Saddle: { - canBuy: true, - canDrop: false, - text: t('foodSaddleText'), - value: 5, - notes: t('foodSaddleNotes') - }, - Cake_Skeleton: { - canBuy: false, - canDrop: false, - text: t('foodCakeSkeleton'), - target: 'Skeleton', - article: '' - }, - Cake_Base: { - canBuy: false, - canDrop: false, - text: t('foodCakeBase'), - target: 'Base', - article: '' - }, - Cake_CottonCandyBlue: { - canBuy: false, - canDrop: false, - text: t('foodCakeCottonCandyBlue'), - target: 'CottonCandyBlue', - article: '' - }, - Cake_CottonCandyPink: { - canBuy: false, - canDrop: false, - text: t('foodCakeCottonCandyPink'), - target: 'CottonCandyPink', - article: '' - }, - Cake_Shade: { - canBuy: false, - canDrop: false, - text: t('foodCakeShade'), - target: 'Shade', - article: '' - }, - Cake_White: { - canBuy: false, - canDrop: false, - text: t('foodCakeWhite'), - target: 'White', - article: '' - }, - Cake_Golden: { - canBuy: false, - canDrop: false, - text: t('foodCakeGolden'), - target: 'Golden', - article: '' - }, - Cake_Zombie: { - canBuy: false, - canDrop: false, - text: t('foodCakeZombie'), - target: 'Zombie', - article: '' - }, - Cake_Desert: { - canBuy: false, - canDrop: false, - text: t('foodCakeDesert'), - target: 'Desert', - article: '' - }, - Cake_Red: { - canBuy: false, - canDrop: false, - text: t('foodCakeRed'), - target: 'Red', - article: '' - }, - Candy_Skeleton: { - canBuy: false, - canDrop: false, - text: t('foodCandySkeleton'), - target: 'Skeleton', - article: '' - }, - Candy_Base: { - canBuy: false, - canDrop: false, - text: t('foodCandyBase'), - target: 'Base', - article: '' - }, - Candy_CottonCandyBlue: { - canBuy: false, - canDrop: false, - text: t('foodCandyCottonCandyBlue'), - target: 'CottonCandyBlue', - article: '' - }, - Candy_CottonCandyPink: { - canBuy: false, - canDrop: false, - text: t('foodCandyCottonCandyPink'), - target: 'CottonCandyPink', - article: '' - }, - Candy_Shade: { - canBuy: false, - canDrop: false, - text: t('foodCandyShade'), - target: 'Shade', - article: '' - }, - Candy_White: { - canBuy: false, - canDrop: false, - text: t('foodCandyWhite'), - target: 'White', - article: '' - }, - Candy_Golden: { - canBuy: false, - canDrop: false, - text: t('foodCandyGolden'), - target: 'Golden', - article: '' - }, - Candy_Zombie: { - canBuy: false, - canDrop: false, - text: t('foodCandyZombie'), - target: 'Zombie', - article: '' - }, - Candy_Desert: { - canBuy: false, - canDrop: false, - text: t('foodCandyDesert'), - target: 'Desert', - article: '' - }, - Candy_Red: { - canBuy: false, - canDrop: false, - text: t('foodCandyRed'), - target: 'Red', - article: '' - } -}; - -_.each(api.food, function(food, key) { - return _.defaults(food, { - value: 1, - key: key, - notes: t('foodNotes') - }); -}); - -api.quests = { - dilatory: { - text: t("questDilatoryText"), - notes: t("questDilatoryNotes"), - completion: t("questDilatoryCompletion"), - value: 0, - canBuy: false, - boss: { - name: t("questDilatoryBoss"), - hp: 5000000, - str: 1, - def: 1, - rage: { - title: t("questDilatoryBossRageTitle"), - description: t("questDilatoryBossRageDescription"), - value: 4000000, - tavern: t('questDilatoryBossRageTavern'), - stables: t('questDilatoryBossRageStables'), - market: t('questDilatoryBossRageMarket') - } - }, - drop: { - items: [ - { - type: 'pets', - key: 'MantisShrimp-Base', - text: t('questDilatoryDropMantisShrimpPet') - }, { - type: 'mounts', - key: 'MantisShrimp-Base', - text: t('questDilatoryDropMantisShrimpMount') - }, { - type: 'food', - key: 'Meat', - text: t('foodMeat') - }, { - type: 'food', - key: 'Milk', - text: t('foodMilk') - }, { - type: 'food', - key: 'Potatoe', - text: t('foodPotatoe') - }, { - type: 'food', - key: 'Strawberry', - text: t('foodStrawberry') - }, { - type: 'food', - key: 'Chocolate', - text: t('foodChocolate') - }, { - type: 'food', - key: 'Fish', - text: t('foodFish') - }, { - type: 'food', - key: 'RottenMeat', - text: t('foodRottenMeat') - }, { - type: 'food', - key: 'CottonCandyPink', - text: t('foodCottonCandyPink') - }, { - type: 'food', - key: 'CottonCandyBlue', - text: t('foodCottonCandyBlue') - }, { - type: 'food', - key: 'Honey', - text: t('foodHoney') - } - ], - gp: 0, - exp: 0 - } - }, - stressbeast: { - text: t("questStressbeastText"), - notes: t("questStressbeastNotes"), - completion: t("questStressbeastCompletion"), - completionChat: t("questStressbeastCompletionChat"), - value: 0, - canBuy: false, - boss: { - name: t("questStressbeastBoss"), - hp: 2750000, - str: 1, - def: 1, - rage: { - title: t("questStressbeastBossRageTitle"), - description: t("questStressbeastBossRageDescription"), - value: 1450000, - healing: .3, - stables: t('questStressbeastBossRageStables'), - bailey: t('questStressbeastBossRageBailey'), - guide: t('questStressbeastBossRageGuide') - }, - desperation: { - threshold: 500000, - str: 3.5, - def: 2, - text: t('questStressbeastDesperation') - } - }, - drop: { - items: [ - { - type: 'pets', - key: 'Mammoth-Base', - text: t('questStressbeastDropMammothPet') - }, { - type: 'mounts', - key: 'Mammoth-Base', - text: t('questStressbeastDropMammothMount') - }, { - type: 'food', - key: 'Meat', - text: t('foodMeat') - }, { - type: 'food', - key: 'Milk', - text: t('foodMilk') - }, { - type: 'food', - key: 'Potatoe', - text: t('foodPotatoe') - }, { - type: 'food', - key: 'Strawberry', - text: t('foodStrawberry') - }, { - type: 'food', - key: 'Chocolate', - text: t('foodChocolate') - }, { - type: 'food', - key: 'Fish', - text: t('foodFish') - }, { - type: 'food', - key: 'RottenMeat', - text: t('foodRottenMeat') - }, { - type: 'food', - key: 'CottonCandyPink', - text: t('foodCottonCandyPink') - }, { - type: 'food', - key: 'CottonCandyBlue', - text: t('foodCottonCandyBlue') - }, { - type: 'food', - key: 'Honey', - text: t('foodHoney') - } - ], - gp: 0, - exp: 0 - } - }, - evilsanta: { - canBuy: false, - text: t('questEvilSantaText'), - notes: t('questEvilSantaNotes'), - completion: t('questEvilSantaCompletion'), - value: 4, - boss: { - name: t('questEvilSantaBoss'), - hp: 300, - str: 1 - }, - drop: { - items: [ - { - type: 'mounts', - key: 'BearCub-Polar', - text: t('questEvilSantaDropBearCubPolarMount') - } - ], - gp: 20, - exp: 100 - } - }, - evilsanta2: { - canBuy: false, - text: t('questEvilSanta2Text'), - notes: t('questEvilSanta2Notes'), - completion: t('questEvilSanta2Completion'), - value: 4, - previous: 'evilsanta', - collect: { - tracks: { - text: t('questEvilSanta2CollectTracks'), - count: 20 - }, - branches: { - text: t('questEvilSanta2CollectBranches'), - count: 10 - } - }, - drop: { - items: [ - { - type: 'pets', - key: 'BearCub-Polar', - text: t('questEvilSanta2DropBearCubPolarPet') - } - ], - gp: 20, - exp: 100 - } - }, - gryphon: { - text: t('questGryphonText'), - notes: t('questGryphonNotes'), - completion: t('questGryphonCompletion'), - value: 4, - boss: { - name: t('questGryphonBoss'), - hp: 300, - str: 1.5 - }, - drop: { - items: [ - { - type: 'eggs', - key: 'Gryphon', - text: t('questGryphonDropGryphonEgg') - }, { - type: 'eggs', - key: 'Gryphon', - text: t('questGryphonDropGryphonEgg') - }, { - type: 'eggs', - key: 'Gryphon', - text: t('questGryphonDropGryphonEgg') - } - ], - gp: 25, - exp: 125 - } - }, - hedgehog: { - text: t('questHedgehogText'), - notes: t('questHedgehogNotes'), - completion: t('questHedgehogCompletion'), - value: 4, - boss: { - name: t('questHedgehogBoss'), - hp: 400, - str: 1.25 - }, - drop: { - items: [ - { - type: 'eggs', - key: 'Hedgehog', - text: t('questHedgehogDropHedgehogEgg') - }, { - type: 'eggs', - key: 'Hedgehog', - text: t('questHedgehogDropHedgehogEgg') - }, { - type: 'eggs', - key: 'Hedgehog', - text: t('questHedgehogDropHedgehogEgg') - } - ], - gp: 30, - exp: 125 - } - }, - ghost_stag: { - text: t('questGhostStagText'), - notes: t('questGhostStagNotes'), - completion: t('questGhostStagCompletion'), - value: 4, - boss: { - name: t('questGhostStagBoss'), - hp: 1200, - str: 2.5 - }, - drop: { - items: [ - { - type: 'eggs', - key: 'Deer', - text: t('questGhostStagDropDeerEgg') - }, { - type: 'eggs', - key: 'Deer', - text: t('questGhostStagDropDeerEgg') - }, { - type: 'eggs', - key: 'Deer', - text: t('questGhostStagDropDeerEgg') - } - ], - gp: 80, - exp: 800 - } - }, - vice1: { - text: t('questVice1Text'), - notes: t('questVice1Notes'), - value: 4, - lvl: 30, - boss: { - name: t('questVice1Boss'), - hp: 750, - str: 1.5 - }, - drop: { - items: [ - { - type: 'quests', - key: "vice2", - text: t('questVice1DropVice2Quest') - } - ], - gp: 20, - exp: 100 - } - }, - vice2: { - text: t('questVice2Text'), - notes: t('questVice2Notes'), - value: 4, - lvl: 35, - previous: 'vice1', - collect: { - lightCrystal: { - text: t('questVice2CollectLightCrystal'), - count: 45 - } - }, - drop: { - items: [ - { - type: 'quests', - key: 'vice3', - text: t('questVice2DropVice3Quest') - } - ], - gp: 20, - exp: 75 - } - }, - vice3: { - text: t('questVice3Text'), - notes: t('questVice3Notes'), - completion: t('questVice3Completion'), - previous: 'vice2', - value: 4, - lvl: 40, - boss: { - name: t('questVice3Boss'), - hp: 1500, - str: 3 - }, - drop: { - items: [ - { - type: 'gear', - key: "weapon_special_2", - text: t('questVice3DropWeaponSpecial2') - }, { - type: 'eggs', - key: 'Dragon', - text: t('questVice3DropDragonEgg') - }, { - type: 'eggs', - key: 'Dragon', - text: t('questVice3DropDragonEgg') - }, { - type: 'hatchingPotions', - key: 'Shade', - text: t('questVice3DropShadeHatchingPotion') - }, { - type: 'hatchingPotions', - key: 'Shade', - text: t('questVice3DropShadeHatchingPotion') - } - ], - gp: 100, - exp: 1000 - } - }, - egg: { - text: t('questEggHuntText'), - notes: t('questEggHuntNotes'), - completion: t('questEggHuntCompletion'), - value: 1, - canBuy: false, - collect: { - plainEgg: { - text: t('questEggHuntCollectPlainEgg'), - count: 100 - } - }, - drop: { - items: [ - { - type: 'eggs', - key: 'Egg', - text: t('questEggHuntDropPlainEgg') - }, { - type: 'eggs', - key: 'Egg', - text: t('questEggHuntDropPlainEgg') - }, { - type: 'eggs', - key: 'Egg', - text: t('questEggHuntDropPlainEgg') - }, { - type: 'eggs', - key: 'Egg', - text: t('questEggHuntDropPlainEgg') - }, { - type: 'eggs', - key: 'Egg', - text: t('questEggHuntDropPlainEgg') - }, { - type: 'eggs', - key: 'Egg', - text: t('questEggHuntDropPlainEgg') - }, { - type: 'eggs', - key: 'Egg', - text: t('questEggHuntDropPlainEgg') - }, { - type: 'eggs', - key: 'Egg', - text: t('questEggHuntDropPlainEgg') - }, { - type: 'eggs', - key: 'Egg', - text: t('questEggHuntDropPlainEgg') - }, { - type: 'eggs', - key: 'Egg', - text: t('questEggHuntDropPlainEgg') - } - ], - gp: 0, - exp: 0 - } - }, - rat: { - text: t('questRatText'), - notes: t('questRatNotes'), - completion: t('questRatCompletion'), - value: 4, - boss: { - name: t('questRatBoss'), - hp: 1200, - str: 2.5 - }, - drop: { - items: [ - { - type: 'eggs', - key: 'Rat', - text: t('questRatDropRatEgg') - }, { - type: 'eggs', - key: 'Rat', - text: t('questRatDropRatEgg') - }, { - type: 'eggs', - key: 'Rat', - text: t('questRatDropRatEgg') - } - ], - gp: 80, - exp: 800 - } - }, - octopus: { - text: t('questOctopusText'), - notes: t('questOctopusNotes'), - completion: t('questOctopusCompletion'), - value: 4, - boss: { - name: t('questOctopusBoss'), - hp: 1200, - str: 2.5 - }, - drop: { - items: [ - { - type: 'eggs', - key: 'Octopus', - text: t('questOctopusDropOctopusEgg') - }, { - type: 'eggs', - key: 'Octopus', - text: t('questOctopusDropOctopusEgg') - }, { - type: 'eggs', - key: 'Octopus', - text: t('questOctopusDropOctopusEgg') - } - ], - gp: 80, - exp: 800 - } - }, - dilatory_derby: { - text: t('questSeahorseText'), - notes: t('questSeahorseNotes'), - completion: t('questSeahorseCompletion'), - value: 4, - boss: { - name: t('questSeahorseBoss'), - hp: 300, - str: 1.5 - }, - drop: { - items: [ - { - type: 'eggs', - key: 'Seahorse', - text: t('questSeahorseDropSeahorseEgg') - }, { - type: 'eggs', - key: 'Seahorse', - text: t('questSeahorseDropSeahorseEgg') - }, { - type: 'eggs', - key: 'Seahorse', - text: t('questSeahorseDropSeahorseEgg') - } - ], - gp: 25, - exp: 125 - } - }, - atom1: { - text: t('questAtom1Text'), - notes: t('questAtom1Notes'), - value: 4, - lvl: 15, - collect: { - soapBars: { - text: t('questAtom1CollectSoapBars'), - count: 20 - } - }, - drop: { - items: [ - { - type: 'quests', - key: "atom2", - text: t('questAtom1Drop') - } - ], - gp: 7, - exp: 50 - } - }, - atom2: { - text: t('questAtom2Text'), - notes: t('questAtom2Notes'), - previous: 'atom1', - value: 4, - lvl: 15, - boss: { - name: t('questAtom2Boss'), - hp: 300, - str: 1 - }, - drop: { - items: [ - { - type: 'quests', - key: "atom3", - text: t('questAtom2Drop') - } - ], - gp: 20, - exp: 100 - } - }, - atom3: { - text: t('questAtom3Text'), - notes: t('questAtom3Notes'), - previous: 'atom2', - completion: t('questAtom3Completion'), - value: 4, - lvl: 15, - boss: { - name: t('questAtom3Boss'), - hp: 800, - str: 1.5 - }, - drop: { - items: [ - { - type: 'gear', - key: "head_special_2", - text: t('headSpecial2Text') - }, { - type: 'hatchingPotions', - key: "Base", - text: t('questAtom3DropPotion') - }, { - type: 'hatchingPotions', - key: "Base", - text: t('questAtom3DropPotion') - } - ], - gp: 25, - exp: 125 - } - }, - harpy: { - text: t('questHarpyText'), - notes: t('questHarpyNotes'), - completion: t('questHarpyCompletion'), - value: 4, - boss: { - name: t('questHarpyBoss'), - hp: 600, - str: 1.5 - }, - drop: { - items: [ - { - type: 'eggs', - key: 'Parrot', - text: t('questHarpyDropParrotEgg') - }, { - type: 'eggs', - key: 'Parrot', - text: t('questHarpyDropParrotEgg') - }, { - type: 'eggs', - key: 'Parrot', - text: t('questHarpyDropParrotEgg') - } - ], - gp: 43, - exp: 350 - } - }, - rooster: { - text: t('questRoosterText'), - notes: t('questRoosterNotes'), - completion: t('questRoosterCompletion'), - value: 4, - boss: { - name: t('questRoosterBoss'), - hp: 300, - str: 1.5 - }, - drop: { - items: [ - { - type: 'eggs', - key: 'Rooster', - text: t('questRoosterDropRoosterEgg') - }, { - type: 'eggs', - key: 'Rooster', - text: t('questRoosterDropRoosterEgg') - }, { - type: 'eggs', - key: 'Rooster', - text: t('questRoosterDropRoosterEgg') - } - ], - gp: 25, - exp: 125 - } - }, - spider: { - text: t('questSpiderText'), - notes: t('questSpiderNotes'), - completion: t('questSpiderCompletion'), - value: 4, - boss: { - name: t('questSpiderBoss'), - hp: 400, - str: 1.5 - }, - drop: { - items: [ - { - type: 'eggs', - key: 'Spider', - text: t('questSpiderDropSpiderEgg') - }, { - type: 'eggs', - key: 'Spider', - text: t('questSpiderDropSpiderEgg') - }, { - type: 'eggs', - key: 'Spider', - text: t('questSpiderDropSpiderEgg') - } - ], - gp: 31, - exp: 200 - } - }, - moonstone1: { - text: t('questMoonstone1Text'), - notes: t('questMoonstone1Notes'), - value: 4, - lvl: 60, - collect: { - moonstone: { - text: t('questMoonstone1CollectMoonstone'), - count: 500 - } - }, - drop: { - items: [ - { - type: 'quests', - key: "moonstone2", - text: t('questMoonstone1DropMoonstone2Quest') - } - ], - gp: 50, - exp: 100 - } - }, - moonstone2: { - text: t('questMoonstone2Text'), - notes: t('questMoonstone2Notes'), - value: 4, - lvl: 65, - previous: 'moonstone1', - boss: { - name: t('questMoonstone2Boss'), - hp: 1500, - str: 3 - }, - drop: { - items: [ - { - type: 'quests', - key: 'moonstone3', - text: t('questMoonstone2DropMoonstone3Quest') - } - ], - gp: 500, - exp: 1000 - } - }, - moonstone3: { - text: t('questMoonstone3Text'), - notes: t('questMoonstone3Notes'), - completion: t('questMoonstone3Completion'), - previous: 'moonstone2', - value: 4, - lvl: 70, - boss: { - name: t('questMoonstone3Boss'), - hp: 2000, - str: 3.5 - }, - drop: { - items: [ - { - type: 'gear', - key: "armor_special_2", - text: t('armorSpecial2Text') - }, { - type: 'food', - key: 'RottenMeat', - text: t('questMoonstone3DropRottenMeat') - }, { - type: 'food', - key: 'RottenMeat', - text: t('questMoonstone3DropRottenMeat') - }, { - type: 'food', - key: 'RottenMeat', - text: t('questMoonstone3DropRottenMeat') - }, { - type: 'food', - key: 'RottenMeat', - text: t('questMoonstone3DropRottenMeat') - }, { - type: 'food', - key: 'RottenMeat', - text: t('questMoonstone3DropRottenMeat') - }, { - type: 'hatchingPotions', - key: 'Zombie', - text: t('questMoonstone3DropZombiePotion') - }, { - type: 'hatchingPotions', - key: 'Zombie', - text: t('questMoonstone3DropZombiePotion') - }, { - type: 'hatchingPotions', - key: 'Zombie', - text: t('questMoonstone3DropZombiePotion') - } - ], - gp: 900, - exp: 1500 - } - }, - goldenknight1: { - text: t('questGoldenknight1Text'), - notes: t('questGoldenknight1Notes'), - value: 4, - lvl: 40, - collect: { - testimony: { - text: t('questGoldenknight1CollectTestimony'), - count: 300 - } - }, - drop: { - items: [ - { - type: 'quests', - key: "goldenknight2", - text: t('questGoldenknight1DropGoldenknight2Quest') - } - ], - gp: 15, - exp: 120 - } - }, - goldenknight2: { - text: t('questGoldenknight2Text'), - notes: t('questGoldenknight2Notes'), - value: 4, - previous: 'goldenknight1', - lvl: 45, - boss: { - name: t('questGoldenknight2Boss'), - hp: 1000, - str: 3 - }, - drop: { - items: [ - { - type: 'quests', - key: 'goldenknight3', - text: t('questGoldenknight2DropGoldenknight3Quest') - } - ], - gp: 75, - exp: 750 - } - }, - goldenknight3: { - text: t('questGoldenknight3Text'), - notes: t('questGoldenknight3Notes'), - completion: t('questGoldenknight3Completion'), - previous: 'goldenknight2', - value: 4, - lvl: 50, - boss: { - name: t('questGoldenknight3Boss'), - hp: 1700, - str: 3.5 - }, - drop: { - items: [ - { - type: 'food', - key: 'Honey', - text: t('questGoldenknight3DropHoney') - }, { - type: 'food', - key: 'Honey', - text: t('questGoldenknight3DropHoney') - }, { - type: 'food', - key: 'Honey', - text: t('questGoldenknight3DropHoney') - }, { - type: 'hatchingPotions', - key: 'Golden', - text: t('questGoldenknight3DropGoldenPotion') - }, { - type: 'hatchingPotions', - key: 'Golden', - text: t('questGoldenknight3DropGoldenPotion') - }, { - type: 'gear', - key: 'shield_special_goldenknight', - text: t('questGoldenknight3DropWeapon') - } - ], - gp: 900, - exp: 1500 - } - }, - basilist: { - text: t('questBasilistText'), - notes: t('questBasilistNotes'), - completion: t('questBasilistCompletion'), - canBuy: false, - value: 4, - boss: { - name: t('questBasilistBoss'), - hp: 100, - str: 0.5 - }, - drop: { - gp: 8, - exp: 42 - } - }, - owl: { - text: t('questOwlText'), - notes: t('questOwlNotes'), - completion: t('questOwlCompletion'), - value: 4, - boss: { - name: t('questOwlBoss'), - hp: 500, - str: 1.5 - }, - drop: { - items: [ - { - type: 'eggs', - key: 'Owl', - text: t('questOwlDropOwlEgg') - }, { - type: 'eggs', - key: 'Owl', - text: t('questOwlDropOwlEgg') - }, { - type: 'eggs', - key: 'Owl', - text: t('questOwlDropOwlEgg') - } - ], - gp: 37, - exp: 275 - } - }, - penguin: { - text: t('questPenguinText'), - notes: t('questPenguinNotes'), - completion: t('questPenguinCompletion'), - value: 4, - boss: { - name: t('questPenguinBoss'), - hp: 400, - str: 1.5 - }, - drop: { - items: [ - { - type: 'eggs', - key: 'Penguin', - text: t('questPenguinDropPenguinEgg') - }, { - type: 'eggs', - key: 'Penguin', - text: t('questPenguinDropPenguinEgg') - }, { - type: 'eggs', - key: 'Penguin', - text: t('questPenguinDropPenguinEgg') - } - ], - gp: 31, - exp: 200 - } - }, - trex: { - text: t('questTRexText'), - notes: t('questTRexNotes'), - completion: t('questTRexCompletion'), - value: 4, - boss: { - name: t('questTRexBoss'), - hp: 800, - str: 2 - }, - drop: { - items: [ - { - type: 'eggs', - key: 'TRex', - text: t('questTRexDropTRexEgg') - }, { - type: 'eggs', - key: 'TRex', - text: t('questTRexDropTRexEgg') - }, { - type: 'eggs', - key: 'TRex', - text: t('questTRexDropTRexEgg') - } - ], - gp: 55, - exp: 500 - } - }, - trex_undead: { - text: t('questTRexUndeadText'), - notes: t('questTRexUndeadNotes'), - completion: t('questTRexUndeadCompletion'), - value: 4, - boss: { - name: t('questTRexUndeadBoss'), - hp: 500, - str: 2, - rage: { - title: t("questTRexUndeadRageTitle"), - description: t("questTRexUndeadRageDescription"), - value: 50, - healing: .3, - effect: t('questTRexUndeadRageEffect') - } - }, - drop: { - items: [ - { - type: 'eggs', - key: 'TRex', - text: t('questTRexDropTRexEgg') - }, { - type: 'eggs', - key: 'TRex', - text: t('questTRexDropTRexEgg') - }, { - type: 'eggs', - key: 'TRex', - text: t('questTRexDropTRexEgg') - } - ], - gp: 55, - exp: 500 - } - } -}; - -_.each(api.quests, function(v, key) { - var b; - _.defaults(v, { - key: key, - canBuy: true - }); - b = v.boss; - if (b) { - _.defaults(b, { - str: 1, - def: 1 - }); - if (b.rage) { - return _.defaults(b.rage, { - title: t('bossRageTitle'), - description: t('bossRageDescription') - }); - } - } -}); - -api.backgrounds = { - backgrounds062014: { - beach: { - text: t('backgroundBeachText'), - notes: t('backgroundBeachNotes') - }, - fairy_ring: { - text: t('backgroundFairyRingText'), - notes: t('backgroundFairyRingNotes') - }, - forest: { - text: t('backgroundForestText'), - notes: t('backgroundForestNotes') - } - }, - backgrounds072014: { - open_waters: { - text: t('backgroundOpenWatersText'), - notes: t('backgroundOpenWatersNotes') - }, - coral_reef: { - text: t('backgroundCoralReefText'), - notes: t('backgroundCoralReefNotes') - }, - seafarer_ship: { - text: t('backgroundSeafarerShipText'), - notes: t('backgroundSeafarerShipNotes') - } - }, - backgrounds082014: { - volcano: { - text: t('backgroundVolcanoText'), - notes: t('backgroundVolcanoNotes') - }, - clouds: { - text: t('backgroundCloudsText'), - notes: t('backgroundCloudsNotes') - }, - dusty_canyons: { - text: t('backgroundDustyCanyonsText'), - notes: t('backgroundDustyCanyonsNotes') - } - }, - backgrounds092014: { - thunderstorm: { - text: t('backgroundThunderstormText'), - notes: t('backgroundThunderstormNotes') - }, - autumn_forest: { - text: t('backgroundAutumnForestText'), - notes: t('backgroundAutumnForestNotes') - }, - harvest_fields: { - text: t('backgroundHarvestFieldsText'), - notes: t('backgroundHarvestFieldsNotes') - } - }, - backgrounds102014: { - graveyard: { - text: t('backgroundGraveyardText'), - notes: t('backgroundGraveyardNotes') - }, - haunted_house: { - text: t('backgroundHauntedHouseText'), - notes: t('backgroundHauntedHouseNotes') - }, - pumpkin_patch: { - text: t('backgroundPumpkinPatchText'), - notes: t('backgroundPumpkinPatchNotes') - } - }, - backgrounds112014: { - harvest_feast: { - text: t('backgroundHarvestFeastText'), - notes: t('backgroundHarvestFeastNotes') - }, - sunset_meadow: { - text: t('backgroundSunsetMeadowText'), - notes: t('backgroundSunsetMeadowNotes') - }, - starry_skies: { - text: t('backgroundStarrySkiesText'), - notes: t('backgroundStarrySkiesNotes') - } - }, - backgrounds122014: { - iceberg: { - text: t('backgroundIcebergText'), - notes: t('backgroundIcebergNotes') - }, - twinkly_lights: { - text: t('backgroundTwinklyLightsText'), - notes: t('backgroundTwinklyLightsNotes') - }, - south_pole: { - text: t('backgroundSouthPoleText'), - notes: t('backgroundSouthPoleNotes') - } - }, - backgrounds012015: { - ice_cave: { - text: t('backgroundIceCaveText'), - notes: t('backgroundIceCaveNotes') - }, - frigid_peak: { - text: t('backgroundFrigidPeakText'), - notes: t('backgroundFrigidPeakNotes') - }, - snowy_pines: { - text: t('backgroundSnowyPinesText'), - notes: t('backgroundSnowyPinesNotes') - } - }, - backgrounds022015: { - blacksmithy: { - text: t('backgroundBlacksmithyText'), - notes: t('backgroundBlacksmithyNotes') - }, - crystal_cave: { - text: t('backgroundCrystalCaveText'), - notes: t('backgroundCrystalCaveNotes') - }, - distant_castle: { - text: t('backgroundDistantCastleText'), - notes: t('backgroundDistantCastleNotes') - } - } -}; - -api.subscriptionBlocks = { - basic_earned: { - months: 1, - price: 5 - }, - basic_3mo: { - months: 3, - price: 15 - }, - basic_6mo: { - months: 6, - price: 30 - }, - google_6mo: { - months: 6, - price: 24, - discount: true, - original: 30 - }, - basic_12mo: { - months: 12, - price: 48 - } -}; - -_.each(api.subscriptionBlocks, function(b, k) { - return b.key = k; -}); - -repeat = { - m: true, - t: true, - w: true, - th: true, - f: true, - s: true, - su: true -}; - -api.userDefaults = { - habits: [ - { - type: 'habit', - text: t('defaultHabit1Text'), - notes: t('defaultHabit1Notes'), - value: 0, - up: true, - down: false, - attribute: 'per' - }, { - type: 'habit', - text: t('defaultHabit2Text'), - notes: t('defaultHabit2Notes'), - value: 0, - up: false, - down: true, - attribute: 'con' - }, { - type: 'habit', - text: t('defaultHabit3Text'), - notes: t('defaultHabit3Notes'), - value: 0, - up: true, - down: true, - attribute: 'str' - } - ], - dailys: [ - { - type: 'daily', - text: t('defaultDaily1Text'), - notes: t('defaultDaily1Notes'), - value: 0, - completed: false, - repeat: repeat, - attribute: 'per' - }, { - type: 'daily', - text: t('defaultDaily2Text'), - notes: t('defaultDaily2Notes'), - value: 3, - completed: false, - repeat: repeat, - attribute: 'con' - }, { - type: 'daily', - text: t('defaultDaily3Text'), - notes: t('defaultDaily3Notes'), - value: -10, - completed: false, - repeat: repeat, - attribute: 'int' - }, { - type: 'daily', - text: t('defaultDaily4Text'), - notes: t('defaultDaily4Notes'), - checklist: [ - { - completed: true, - text: t('defaultDaily4Checklist1') - }, { - completed: false, - text: t('defaultDaily4Checklist2') - }, { - completed: false, - text: t('defaultDaily4Checklist3') - } - ], - completed: false, - repeat: repeat, - attribute: 'str' - } - ], - todos: [ - { - type: 'todo', - text: t('defaultTodo1Text'), - notes: t('defaultTodoNotes'), - completed: false, - attribute: 'int' - }, { - type: 'todo', - text: t('defaultTodo2Text'), - notes: t('defaultTodoNotes'), - checklist: [ - { - completed: false, - text: t('defaultTodo2Checklist1') - }, { - completed: false, - text: t('defaultTodo2Checklist2') - }, { - completed: false, - text: t('defaultTodo2Checklist3') - } - ], - completed: false, - attribute: 'per' - }, { - type: 'todo', - text: t('defaultTodo3Text'), - notes: t('defaultTodoNotes'), - checklist: [ - { - completed: false, - text: t('defaultTodo3Checklist1') - }, { - completed: false, - text: t('defaultTodo3Checklist2') - }, { - completed: false, - text: t('defaultTodo3Checklist3') - } - ], - completed: false, - attribute: 'per' - }, { - type: 'todo', - text: t('defaultTodo4Text'), - notes: t('defaultTodoNotes'), - checklist: [ - { - completed: false, - text: t('defaultTodo4Checklist1') - }, { - completed: false, - text: t('defaultTodo4Checklist2') - }, { - completed: false, - text: t('defaultTodo4Checklist3') - } - ], - completed: false, - attribute: 'per' - }, { - type: 'todo', - text: t('defaultTodo5Text'), - notes: t('defaultTodoNotes'), - completed: false, - attribute: 'per' - } - ], - rewards: [ - { - type: 'reward', - text: t('defaultReward1Text'), - notes: t('defaultReward1Notes'), - value: 20 - }, { - type: 'reward', - text: t('defaultReward2Text'), - notes: t('defaultReward2Notes'), - value: 10 - } - ], - tags: [ - { - name: t('defaultTag1') - }, { - name: t('defaultTag2') - }, { - name: t('defaultTag3') - } - ] -}; - - -},{"./i18n.coffee":5,"lodash":2,"moment":3}],5:[function(require,module,exports){ -var _; - -_ = require('lodash'); - -module.exports = { - strings: null, - translations: {}, - t: function(stringName) { - var clonedVars, e, locale, string, stringNotFound, vars; - vars = arguments[1]; - if (_.isString(arguments[1])) { - vars = null; - locale = arguments[1]; - } else if (arguments[2] != null) { - vars = arguments[1]; - locale = arguments[2]; - } - if ((locale == null) || (!module.exports.strings && !module.exports.translations[locale])) { - locale = 'en'; - } - string = !module.exports.strings ? module.exports.translations[locale][stringName] : module.exports.strings[stringName]; - clonedVars = _.clone(vars) || {}; - clonedVars.locale = locale; - if (string) { - try { - return _.template(string, clonedVars); - } catch (_error) { - e = _error; - return 'Error processing string. Please report to http://github.com/HabitRPG/habitrpg.'; - } - } else { - stringNotFound = !module.exports.strings ? module.exports.translations[locale].stringNotFound : module.exports.strings.stringNotFound; - try { - return _.template(stringNotFound, { - string: stringName - }); - } catch (_error) { - e = _error; - return 'Error processing string. Please report to http://github.com/HabitRPG/habitrpg.'; - } - } - } -}; - - -},{"lodash":2}],6:[function(require,module,exports){ -(function (process){ -var $w, api, content, i18n, moment, preenHistory, sanitizeOptions, sortOrder, _, - __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; }; - -moment = require('moment'); - -_ = require('lodash'); - -content = require('./content.coffee'); - -i18n = require('./i18n.coffee'); - -api = module.exports = {}; - -api.i18n = i18n; - -$w = api.$w = function(s) { - return s.split(' '); -}; - -api.dotSet = function(obj, path, val) { - var arr; - arr = path.split('.'); - return _.reduce(arr, (function(_this) { - return function(curr, next, index) { - if ((arr.length - 1) === index) { - curr[next] = val; - } - return curr[next] != null ? curr[next] : curr[next] = {}; - }; - })(this), obj); -}; - -api.dotGet = function(obj, path) { - return _.reduce(path.split('.'), ((function(_this) { - return function(curr, next) { - return curr != null ? curr[next] : void 0; - }; - })(this)), obj); -}; - - -/* - Reflists are arrays, but stored as objects. Mongoose has a helluvatime working with arrays (the main problem for our - syncing issues) - so the goal is to move away from arrays to objects, since mongoose can reference elements by ID - no problem. To maintain sorting, we use these helper functions: - */ - -api.refPush = function(reflist, item, prune) { - if (prune == null) { - prune = 0; - } - item.sort = _.isEmpty(reflist) ? 0 : _.max(reflist, 'sort').sort + 1; - if (!(item.id && !reflist[item.id])) { - item.id = api.uuid(); - } - return reflist[item.id] = item; -}; - -api.planGemLimits = { - convRate: 20, - convCap: 25 -}; - - -/* - ------------------------------------------------------ - Time / Day - ------------------------------------------------------ - */ - - -/* - Each time we're performing date math (cron, task-due-days, etc), we need to take user preferences into consideration. - Specifically {dayStart} (custom day start) and {timezoneOffset}. This function sanitizes / defaults those values. - {now} is also passed in for various purposes, one example being the test scripts scripts testing different "now" times - */ - -sanitizeOptions = function(o) { - var dayStart, now, timezoneOffset, _ref; - dayStart = !_.isNaN(+o.dayStart) && (0 <= (_ref = +o.dayStart) && _ref <= 24) ? +o.dayStart : 0; - timezoneOffset = o.timezoneOffset ? +o.timezoneOffset : +moment().zone(); - now = o.now ? moment(o.now).zone(timezoneOffset) : moment(+(new Date)).zone(timezoneOffset); - return { - dayStart: dayStart, - timezoneOffset: timezoneOffset, - now: now - }; -}; - -api.startOfWeek = api.startOfWeek = function(options) { - var o; - if (options == null) { - options = {}; - } - o = sanitizeOptions(options); - return moment(o.now).startOf('week'); -}; - -api.startOfDay = function(options) { - var dayStart, o; - if (options == null) { - options = {}; - } - o = sanitizeOptions(options); - dayStart = moment(o.now).startOf('day').add({ - hours: o.dayStart - }); - if (moment(o.now).hour() < o.dayStart) { - dayStart.subtract({ - days: 1 - }); - } - return dayStart; -}; - -api.dayMapping = { - 0: 'su', - 1: 'm', - 2: 't', - 3: 'w', - 4: 'th', - 5: 'f', - 6: 's' -}; - - -/* - Absolute diff from "yesterday" till now - */ - -api.daysSince = function(yesterday, options) { - var o; - if (options == null) { - options = {}; - } - o = sanitizeOptions(options); - return Math.abs(api.startOfDay(_.defaults({ - now: yesterday - }, o)).diff(api.startOfDay(_.defaults({ - now: o.now - }, o)), 'days')); -}; - - -/* - Should the user do this taks on this date, given the task's repeat options and user.preferences.dayStart? - */ - -api.shouldDo = function(day, repeat, options) { - var o, selected; - if (options == null) { - options = {}; - } - if (!repeat) { - return false; - } - o = sanitizeOptions(options); - selected = repeat[api.dayMapping[api.startOfDay(_.defaults({ - now: day - }, o)).day()]]; - return selected; -}; - - -/* - ------------------------------------------------------ - Scoring - ------------------------------------------------------ - */ - -api.tnl = function(lvl) { - return Math.round(((Math.pow(lvl, 2) * 0.25) + (10 * lvl) + 139.75) / 10) * 10; -}; - - -/* - A hyperbola function that creates diminishing returns, so you can't go to infinite (eg, with Exp gain). - {max} The asymptote - {bonus} All the numbers combined for your point bonus (eg, task.value * user.stats.int * critChance, etc) - {halfway} (optional) the point at which the graph starts bending - */ - -api.diminishingReturns = function(bonus, max, halfway) { - if (halfway == null) { - halfway = max / 2; - } - return max * (bonus / (bonus + halfway)); -}; - -api.monod = function(bonus, rateOfIncrease, max) { - return rateOfIncrease * max * bonus / (rateOfIncrease * bonus + max); -}; - - -/* -Preen history for users with > 7 history entries -This takes an infinite array of single day entries [day day day day day...], and turns it into a condensed array -of averages, condensing more the further back in time we go. Eg, 7 entries each for last 7 days; 1 entry each week -of this month; 1 entry for each month of this year; 1 entry per previous year: [day*7 week*4 month*12 year*infinite] - */ - -preenHistory = function(history) { - var newHistory, preen, thisMonth; - history = _.filter(history, function(h) { - return !!h; - }); - newHistory = []; - preen = function(amount, groupBy) { - var groups; - groups = _.chain(history).groupBy(function(h) { - return moment(h.date).format(groupBy); - }).sortBy(function(h, k) { - return k; - }).value(); - groups = groups.slice(-amount); - groups.pop(); - return _.each(groups, function(group) { - newHistory.push({ - date: moment(group[0].date).toDate(), - value: _.reduce(group, (function(m, obj) { - return m + obj.value; - }), 0) / group.length - }); - return true; - }); - }; - preen(50, "YYYY"); - preen(moment().format('MM'), "YYYYMM"); - thisMonth = moment().format('YYYYMM'); - newHistory = newHistory.concat(_.filter(history, function(h) { - return moment(h.date).format('YYYYMM') === thisMonth; - })); - return newHistory; -}; - - -/* - Update the in-browser store with new gear. FIXME this was in user.fns, but it was causing strange issues there - */ - -sortOrder = _.reduce(content.gearTypes, (function(m, v, k) { - m[v] = k; - return m; -}), {}); - -api.updateStore = function(user) { - var changes; - if (!user) { - return; - } - changes = []; - _.each(content.gearTypes, function(type) { - var found; - found = _.find(content.gear.tree[type][user.stats["class"]], function(item) { - return !user.items.gear.owned[item.key]; - }); - if (found) { - changes.push(found); - } - return true; - }); - changes = changes.concat(_.filter(content.gear.flat, function(v) { - var _ref; - return ((_ref = v.klass) === 'special' || _ref === 'mystery') && !user.items.gear.owned[v.key] && (typeof v.canOwn === "function" ? v.canOwn(user) : void 0); - })); - changes.push(content.potion); - return _.sortBy(changes, function(c) { - return sortOrder[c.type]; - }); -}; - - -/* ------------------------------------------------------- -Content ------------------------------------------------------- - */ - -api.content = content; - - -/* ------------------------------------------------------- -Misc Helpers ------------------------------------------------------- - */ - -api.uuid = function() { - return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, function(c) { - var r, v; - r = Math.random() * 16 | 0; - v = (c === "x" ? r : r & 0x3 | 0x8); - return v.toString(16); - }); -}; - -api.countExists = function(items) { - return _.reduce(items, (function(m, v) { - return m + (v ? 1 : 0); - }), 0); -}; - - -/* -Even though Mongoose handles task defaults, we want to make sure defaults are set on the client-side before -sending up to the server for performance - */ - -api.taskDefaults = function(task) { - var defaults, _ref, _ref1, _ref2; - if (task == null) { - task = {}; - } - if (!(task.type && ((_ref = task.type) === 'habit' || _ref === 'daily' || _ref === 'todo' || _ref === 'reward'))) { - task.type = 'habit'; - } - defaults = { - id: api.uuid(), - text: task.id != null ? task.id : '', - notes: '', - priority: 1, - challenge: {}, - attribute: 'str', - dateCreated: new Date() - }; - _.defaults(task, defaults); - if (task.type === 'habit') { - _.defaults(task, { - up: true, - down: true - }); - } - if ((_ref1 = task.type) === 'habit' || _ref1 === 'daily') { - _.defaults(task, { - history: [] - }); - } - if ((_ref2 = task.type) === 'daily' || _ref2 === 'todo') { - _.defaults(task, { - completed: false - }); - } - if (task.type === 'daily') { - _.defaults(task, { - streak: 0, - repeat: { - su: 1, - m: 1, - t: 1, - w: 1, - th: 1, - f: 1, - s: 1 - } - }); - } - task._id = task.id; - if (task.value == null) { - task.value = task.type === 'reward' ? 10 : 0; - } - if (!_.isNumber(task.priority)) { - task.priority = 1; - } - return task; -}; - -api.percent = function(x, y, dir) { - var roundFn; - switch (dir) { - case "up": - roundFn = Math.ceil; - break; - case "down": - roundFn = Math.floor; - break; - default: - roundFn = Math.round; - } - if (x === 0) { - x = 1; - } - return Math.max(0, roundFn(x / y * 100)); -}; - - -/* -Remove whitespace #FIXME are we using this anywwhere? Should we be? - */ - -api.removeWhitespace = function(str) { - if (!str) { - return ''; - } - return str.replace(/\s/g, ''); -}; - - -/* -Encode the download link for .ics iCal file - */ - -api.encodeiCalLink = function(uid, apiToken) { - var loc, _ref; - loc = (typeof window !== "undefined" && window !== null ? window.location.host : void 0) || (typeof process !== "undefined" && process !== null ? (_ref = process.env) != null ? _ref.BASE_URL : void 0 : void 0) || ''; - return encodeURIComponent("http://" + loc + "/v1/users/" + uid + "/calendar.ics?apiToken=" + apiToken); -}; - - -/* -Gold amount from their money - */ - -api.gold = function(num) { - if (num) { - return Math.floor(num); - } else { - return "0"; - } -}; - - -/* -Silver amount from their money - */ - -api.silver = function(num) { - if (num) { - return ("0" + Math.floor((num - Math.floor(num)) * 100)).slice(-2); - } else { - return "00"; - } -}; - - -/* -Task classes given everything about the class - */ - -api.taskClasses = function(task, filters, dayStart, lastCron, showCompleted, main) { - var classes, completed, enabled, filter, repeat, type, value, _ref; - if (filters == null) { - filters = []; - } - if (dayStart == null) { - dayStart = 0; - } - if (lastCron == null) { - lastCron = +(new Date); - } - if (showCompleted == null) { - showCompleted = false; - } - if (main == null) { - main = false; - } - if (!task) { - return; - } - type = task.type, completed = task.completed, value = task.value, repeat = task.repeat; - if (main) { - if (!task._editing) { - for (filter in filters) { - enabled = filters[filter]; - if (enabled && !((_ref = task.tags) != null ? _ref[filter] : void 0)) { - return 'hidden'; - } - } - } - } - classes = type; - if (task._editing) { - classes += " beingEdited"; - } - if (type === 'todo' || type === 'daily') { - if (completed || (type === 'daily' && !api.shouldDo(+(new Date), task.repeat, { - dayStart: dayStart - }))) { - classes += " completed"; - } else { - classes += " uncompleted"; - } - } else if (type === 'habit') { - if (task.down && task.up) { - classes += ' habit-wide'; - } - if (!task.down && !task.up) { - classes += ' habit-narrow'; - } - } - if (value < -20) { - classes += ' color-worst'; - } else if (value < -10) { - classes += ' color-worse'; - } else if (value < -1) { - classes += ' color-bad'; - } else if (value < 1) { - classes += ' color-neutral'; - } else if (value < 5) { - classes += ' color-good'; - } else if (value < 10) { - classes += ' color-better'; - } else { - classes += ' color-best'; - } - return classes; -}; - - -/* -Friendly timestamp - */ - -api.friendlyTimestamp = function(timestamp) { - return moment(timestamp).format('MM/DD h:mm:ss a'); -}; - - -/* -Does user have new chat messages? - */ - -api.newChatMessages = function(messages, lastMessageSeen) { - if (!((messages != null ? messages.length : void 0) > 0)) { - return false; - } - return (messages != null ? messages[0] : void 0) && (messages[0].id !== lastMessageSeen); -}; - - -/* -are any tags active? - */ - -api.noTags = function(tags) { - return _.isEmpty(tags) || _.isEmpty(_.filter(tags, function(t) { - return t; - })); -}; - - -/* -Are there tags applied? - */ - -api.appliedTags = function(userTags, taskTags) { - var arr; - arr = []; - _.each(userTags, function(t) { - if (t == null) { - return; - } - if (taskTags != null ? taskTags[t.id] : void 0) { - return arr.push(t.name); - } - }); - return arr.join(', '); -}; - -api.countPets = function(originalCount, pets) { - var count, pet; - count = originalCount != null ? originalCount : _.size(pets); - for (pet in content.questPets) { - if (pets[pet]) { - count--; - } - } - for (pet in content.specialPets) { - if (pets[pet]) { - count--; - } - } - return count; -}; - -api.countMounts = function(originalCount, mounts) { - var count2, mount; - count2 = originalCount != null ? originalCount : _.size(mounts); - for (mount in content.questPets) { - if (mounts[mount]) { - count2--; - } - } - for (mount in content.specialMounts) { - if (mounts[mount]) { - count2--; - } - } - return count2; -}; - -api.countTriad = function(pets) { - var count3, egg, potion; - count3 = 0; - for (egg in content.dropEggs) { - for (potion in content.hatchingPotions) { - if (pets[egg + "-" + potion] > 0) { - count3++; - } - } - } - return count3; -}; - - -/* ------------------------------------------------------- -User (prototype wrapper to give it ops, helper funcs, and virtuals ------------------------------------------------------- - */ - - -/* -User is now wrapped (both on client and server), adding a few new properties: - * getters (_statsComputed, tasks, etc) - * user.fns, which is a bunch of helper functions - These were originally up above, but they make more sense belonging to the user object so we don't have to pass - the user object all over the place. In fact, we should pull in more functions such as cron(), updateStats(), etc. - * user.ops, which is super important: - -If a function is inside user.ops, it has magical properties. If you call it on the client it updates the user object in -the browser and when it's done it automatically POSTs to the server, calling src/controllers/user.js#OP_NAME (the exact same name -of the op function). The first argument req is {query, body, params}, it's what the express controller function -expects. This means we call our functions as if we were calling an Express route. Eg, instead of score(task, direction), -we call score({params:{id:task.id,direction:direction}}). This also forces us to think about our routes (whether to use -params, query, or body for variables). see http://stackoverflow.com/questions/4024271/rest-api-best-practices-where-to-put-parameters - -If `src/controllers/user.js#OP_NAME` doesn't exist on the server, it's automatically added. It runs the code in user.ops.OP_NAME -to update the user model server-side, then performs `user.save()`. You can see this in action for `user.ops.buy`. That -function doesn't exist on the server - so the client calls it, it updates user in the browser, auto-POSTs to server, server -handles it by calling `user.ops.buy` again (to update user on the server), and then saves. We can do this for -everything that doesn't need any code difference from what's in user.ops.OP_NAME for special-handling server-side. If we -*do* need special handling, just add `src/controllers/user.js#OP_NAME` to override the user.ops.OP_NAME, and be -sure to call user.ops.OP_NAME at some point within the overridden function. - -TODO - * Is this the best way to wrap the user object? I thought of using user.prototype, but user is an object not a Function. - user on the server is a Mongoose model, so we can use prototype - but to do it on the client, we'd probably have to - move to $resource for user - * Move to $resource! - */ - -api.wrap = function(user, main) { - if (main == null) { - main = true; - } - if (user._wrapped) { - return; - } - user._wrapped = true; - if (main) { - user.ops = { - update: function(req, cb) { - _.each(req.body, function(v, k) { - user.fns.dotSet(k, v); - return true; - }); - return typeof cb === "function" ? cb(null, user) : void 0; - }, - sleep: function(req, cb) { - user.preferences.sleep = !user.preferences.sleep; - return typeof cb === "function" ? cb(null, {}) : void 0; - }, - revive: function(req, cb) { - var cl, gearOwned, item, losableItems, lostItem, lostStat, _base; - if (!(user.stats.hp <= 0)) { - return typeof cb === "function" ? cb({ - code: 400, - message: "Cannot revive if not dead" - }) : void 0; - } - _.merge(user.stats, { - hp: 50, - exp: 0, - gp: 0 - }); - if (user.stats.lvl > 1) { - user.stats.lvl--; - } - lostStat = user.fns.randomVal(_.reduce(['str', 'con', 'per', 'int'], (function(m, k) { - if (user.stats[k]) { - m[k] = k; - } - return m; - }), {})); - if (lostStat) { - user.stats[lostStat]--; - } - cl = user.stats["class"]; - gearOwned = (typeof (_base = user.items.gear.owned).toObject === "function" ? _base.toObject() : void 0) || user.items.gear.owned; - losableItems = {}; - _.each(gearOwned, function(v, k) { - var itm; - if (v) { - itm = content.gear.flat['' + k]; - if (itm) { - if ((itm.value > 0 || k === 'weapon_warrior_0') && (itm.klass === cl || (itm.klass === 'special' && (!itm.specialClass || itm.specialClass === cl)))) { - return losableItems['' + k] = '' + k; - } - } - } - }); - lostItem = user.fns.randomVal(losableItems); - if (item = content.gear.flat[lostItem]) { - user.items.gear.owned[lostItem] = false; - if (user.items.gear.equipped[item.type] === lostItem) { - user.items.gear.equipped[item.type] = "" + item.type + "_base_0"; - } - if (user.items.gear.costume[item.type] === lostItem) { - user.items.gear.costume[item.type] = "" + item.type + "_base_0"; - } - } - if (typeof user.markModified === "function") { - user.markModified('items.gear'); - } - return typeof cb === "function" ? cb((item ? { - code: 200, - message: i18n.t('messageLostItem', { - itemText: item.text(req.language) - }, req.language) - } : null), user) : void 0; - }, - reset: function(req, cb) { - var gear; - user.habits = []; - user.dailys = []; - user.todos = []; - user.rewards = []; - user.stats.hp = 50; - user.stats.lvl = 1; - user.stats.gp = 0; - user.stats.exp = 0; - gear = user.items.gear; - _.each(['equipped', 'costume'], function(type) { - gear[type].armor = 'armor_base_0'; - gear[type].weapon = 'weapon_base_0'; - gear[type].head = 'head_base_0'; - return gear[type].shield = 'shield_base_0'; - }); - if (typeof gear.owned === 'undefined') { - gear.owned = {}; - } - _.each(gear.owned, function(v, k) { - if (gear.owned[k]) { - gear.owned[k] = false; - } - return true; - }); - gear.owned.weapon_warrior_0 = true; - if (typeof user.markModified === "function") { - user.markModified('items.gear.owned'); - } - user.preferences.costume = false; - return typeof cb === "function" ? cb(null, user) : void 0; - }, - reroll: function(req, cb, ga) { - if (user.balance < 1) { - return typeof cb === "function" ? cb({ - code: 401, - message: i18n.t('notEnoughGems', req.language) - }) : void 0; - } - user.balance--; - _.each(user.tasks, function(task) { - if (task.type !== 'reward') { - return task.value = 0; - } - }); - user.stats.hp = 50; - if (typeof cb === "function") { - cb(null, user); - } - return ga != null ? ga.event('purchase', 'reroll').send() : void 0; - }, - rebirth: function(req, cb, ga) { - var flags, gear, lvl, stats; - if (user.balance < 2 && user.stats.lvl < 100) { - return typeof cb === "function" ? cb({ - code: 401, - message: i18n.t('notEnoughGems', req.language) - }) : void 0; - } - if (user.stats.lvl < 100) { - user.balance -= 2; - } - if (user.stats.lvl < 100) { - lvl = user.stats.lvl; - } else { - lvl = 100; - } - _.each(user.tasks, function(task) { - if (task.type !== 'reward') { - task.value = 0; - } - if (task.type === 'daily') { - return task.streak = 0; - } - }); - stats = user.stats; - stats.buffs = {}; - stats.hp = 50; - stats.lvl = 1; - stats["class"] = 'warrior'; - _.each(['per', 'int', 'con', 'str', 'points', 'gp', 'exp', 'mp'], function(value) { - return stats[value] = 0; - }); - gear = user.items.gear; - _.each(['equipped', 'costume'], function(type) { - gear[type] = {}; - gear[type].armor = 'armor_base_0'; - gear[type].weapon = 'weapon_warrior_0'; - gear[type].head = 'head_base_0'; - return gear[type].shield = 'shield_base_0'; - }); - if (user.items.currentPet) { - user.ops.equip({ - params: { - type: 'pet', - key: user.items.currentPet - } - }); - } - if (user.items.currentMount) { - user.ops.equip({ - params: { - type: 'mount', - key: user.items.currentMount - } - }); - } - _.each(gear.owned, function(v, k) { - if (gear.owned[k]) { - gear.owned[k] = false; - return true; - } - }); - gear.owned.weapon_warrior_0 = true; - if (typeof user.markModified === "function") { - user.markModified('items.gear.owned'); - } - user.preferences.costume = false; - flags = user.flags; - if (!(user.achievements.ultimateGear || user.achievements.beastMaster)) { - flags.rebirthEnabled = false; - } - flags.itemsEnabled = false; - flags.dropsEnabled = false; - flags.classSelected = false; - flags.levelDrops = {}; - if (!user.achievements.rebirths) { - user.achievements.rebirths = 1; - user.achievements.rebirthLevel = lvl; - } else if (lvl > user.achievements.rebirthLevel || lvl === 100) { - user.achievements.rebirths++; - user.achievements.rebirthLevel = lvl; - } - user.stats.buffs = {}; - if (typeof cb === "function") { - cb(null, user); - } - return ga != null ? ga.event('purchase', 'Rebirth').send() : void 0; - }, - allocateNow: function(req, cb) { - _.times(user.stats.points, user.fns.autoAllocate); - user.stats.points = 0; - if (typeof user.markModified === "function") { - user.markModified('stats'); - } - return typeof cb === "function" ? cb(null, user.stats) : void 0; - }, - clearCompleted: function(req, cb) { - _.remove(user.todos, function(t) { - var _ref; - return t.completed && !((_ref = t.challenge) != null ? _ref.id : void 0); - }); - if (typeof user.markModified === "function") { - user.markModified('todos'); - } - return typeof cb === "function" ? cb(null, user.todos) : void 0; - }, - sortTask: function(req, cb) { - var from, id, movedTask, task, tasks, to, _ref; - id = req.params.id; - _ref = req.query, to = _ref.to, from = _ref.from; - task = user.tasks[id]; - if (!task) { - return typeof cb === "function" ? cb({ - code: 404, - message: i18n.t('messageTaskNotFound', req.language) - }) : void 0; - } - if (!((to != null) && (from != null))) { - return typeof cb === "function" ? cb('?to=__&from=__ are required') : void 0; - } - tasks = user["" + task.type + "s"]; - movedTask = tasks.splice(from, 1)[0]; - if (to === -1) { - tasks.push(movedTask); - } else { - tasks.splice(to, 0, movedTask); - } - return typeof cb === "function" ? cb(null, tasks) : void 0; - }, - updateTask: function(req, cb) { - var task, _ref; - if (!(task = user.tasks[(_ref = req.params) != null ? _ref.id : void 0])) { - return typeof cb === "function" ? cb({ - code: 404, - message: i18n.t('messageTaskNotFound', req.language) - }) : void 0; - } - _.merge(task, _.omit(req.body, ['checklist', 'id', 'type'])); - if (req.body.checklist) { - task.checklist = req.body.checklist; - } - if (typeof task.markModified === "function") { - task.markModified('tags'); - } - return typeof cb === "function" ? cb(null, task) : void 0; - }, - deleteTask: function(req, cb) { - var i, task, _ref; - task = user.tasks[(_ref = req.params) != null ? _ref.id : void 0]; - if (!task) { - return typeof cb === "function" ? cb({ - code: 404, - message: i18n.t('messageTaskNotFound', req.language) - }) : void 0; - } - i = user[task.type + "s"].indexOf(task); - if (~i) { - user[task.type + "s"].splice(i, 1); - } - return typeof cb === "function" ? cb(null, {}) : void 0; - }, - addTask: function(req, cb) { - var task; - task = api.taskDefaults(req.body); - user["" + task.type + "s"].unshift(task); - if (user.preferences.newTaskEdit) { - task._editing = true; - } - if (user.preferences.tagsCollapsed) { - task._tags = true; - } - if (user.preferences.advancedCollapsed) { - task._advanced = true; - } - if (typeof cb === "function") { - cb(null, task); - } - return task; - }, - addTag: function(req, cb) { - if (user.tags == null) { - user.tags = []; - } - user.tags.push({ - name: req.body.name, - id: req.body.id || api.uuid() - }); - return typeof cb === "function" ? cb(null, user.tags) : void 0; - }, - sortTag: function(req, cb) { - var from, to, _ref; - _ref = req.query, to = _ref.to, from = _ref.from; - if (!((to != null) && (from != null))) { - return typeof cb === "function" ? cb('?to=__&from=__ are required') : void 0; - } - user.tags.splice(to, 0, user.tags.splice(from, 1)[0]); - return typeof cb === "function" ? cb(null, user.tags) : void 0; - }, - updateTag: function(req, cb) { - var i, tid; - tid = req.params.id; - i = _.findIndex(user.tags, { - id: tid - }); - if (!~i) { - return typeof cb === "function" ? cb({ - code: 404, - message: i18n.t('messageTagNotFound', req.language) - }) : void 0; - } - user.tags[i].name = req.body.name; - return typeof cb === "function" ? cb(null, user.tags[i]) : void 0; - }, - deleteTag: function(req, cb) { - var i, tag, tid; - tid = req.params.id; - i = _.findIndex(user.tags, { - id: tid - }); - if (!~i) { - return typeof cb === "function" ? cb({ - code: 404, - message: i18n.t('messageTagNotFound', req.language) - }) : void 0; - } - tag = user.tags[i]; - delete user.filters[tag.id]; - user.tags.splice(i, 1); - _.each(user.tasks, function(task) { - return delete task.tags[tag.id]; - }); - _.each(['habits', 'dailys', 'todos', 'rewards'], function(type) { - return typeof user.markModified === "function" ? user.markModified(type) : void 0; - }); - return typeof cb === "function" ? cb(null, user.tags) : void 0; - }, - addWebhook: function(req, cb) { - var wh; - wh = user.preferences.webhooks; - api.refPush(wh, { - url: req.body.url, - enabled: req.body.enabled || true, - id: req.body.id - }); - if (typeof user.markModified === "function") { - user.markModified('preferences.webhooks'); - } - return typeof cb === "function" ? cb(null, user.preferences.webhooks) : void 0; - }, - updateWebhook: function(req, cb) { - _.merge(user.preferences.webhooks[req.params.id], req.body); - if (typeof user.markModified === "function") { - user.markModified('preferences.webhooks'); - } - return typeof cb === "function" ? cb(null, user.preferences.webhooks) : void 0; - }, - deleteWebhook: function(req, cb) { - delete user.preferences.webhooks[req.params.id]; - if (typeof user.markModified === "function") { - user.markModified('preferences.webhooks'); - } - return typeof cb === "function" ? cb(null, user.preferences.webhooks) : void 0; - }, - clearPMs: function(req, cb) { - user.inbox.messages = {}; - if (typeof user.markModified === "function") { - user.markModified('inbox.messages'); - } - return typeof cb === "function" ? cb(null, user.inbox.messages) : void 0; - }, - deletePM: function(req, cb) { - delete user.inbox.messages[req.params.id]; - if (typeof user.markModified === "function") { - user.markModified('inbox.messages.' + req.params.id); - } - return typeof cb === "function" ? cb(null, user.inbox.messages) : void 0; - }, - blockUser: function(req, cb) { - var i; - i = user.inbox.blocks.indexOf(req.params.uuid); - if (~i) { - user.inbox.blocks.splice(i, 1); - } else { - user.inbox.blocks.push(req.params.uuid); - } - if (typeof user.markModified === "function") { - user.markModified('inbox.blocks'); - } - return typeof cb === "function" ? cb(null, user.inbox.blocks) : void 0; - }, - feed: function(req, cb) { - var egg, evolve, food, message, pet, potion, userPets, _ref, _ref1, _ref2; - _ref = req.params, pet = _ref.pet, food = _ref.food; - food = content.food[food]; - _ref1 = pet.split('-'), egg = _ref1[0], potion = _ref1[1]; - userPets = user.items.pets; - if (!userPets[pet]) { - return typeof cb === "function" ? cb({ - code: 404, - message: i18n.t('messagePetNotFound', req.language) - }) : void 0; - } - if (!((_ref2 = user.items.food) != null ? _ref2[food.key] : void 0)) { - return typeof cb === "function" ? cb({ - code: 404, - message: i18n.t('messageFoodNotFound', req.language) - }) : void 0; - } - if (content.specialPets[pet] || (egg === "Egg")) { - return typeof cb === "function" ? cb({ - code: 401, - message: i18n.t('messageCannotFeedPet', req.language) - }) : void 0; - } - if (user.items.mounts[pet]) { - return typeof cb === "function" ? cb({ - code: 401, - message: i18n.t('messageAlreadyMount', req.language) - }) : void 0; - } - message = ''; - evolve = function() { - userPets[pet] = -1; - user.items.mounts[pet] = true; - if (pet === user.items.currentPet) { - user.items.currentPet = ""; - } - return message = i18n.t('messageEvolve', { - egg: egg - }, req.language); - }; - if (food.key === 'Saddle') { - evolve(); - } else { - if (food.target === potion) { - userPets[pet] += 5; - message = i18n.t('messageLikesFood', { - egg: egg, - foodText: food.text(req.language) - }, req.language); - } else { - userPets[pet] += 2; - message = i18n.t('messageDontEnjoyFood', { - egg: egg, - foodText: food.text(req.language) - }, req.language); - } - if (userPets[pet] >= 50 && !user.items.mounts[pet]) { - evolve(); - } - } - user.items.food[food.key]--; - return typeof cb === "function" ? cb({ - code: 200, - message: message - }, userPets[pet]) : void 0; - }, - buySpecialSpell: function(req, cb) { - var item, key, message, _base; - key = req.params.key; - item = content.special[key]; - if (user.stats.gp < item.value) { - return typeof cb === "function" ? cb({ - code: 401, - message: i18n.t('messageNotEnoughGold', req.language) - }) : void 0; - } - user.stats.gp -= item.value; - if ((_base = user.items.special)[key] == null) { - _base[key] = 0; - } - user.items.special[key]++; - if (typeof user.markModified === "function") { - user.markModified('items.special'); - } - message = i18n.t('messageBought', { - itemText: item.text(req.language) - }, req.language); - return typeof cb === "function" ? cb({ - code: 200, - message: message - }, _.pick(user, $w('items stats'))) : void 0; - }, - purchase: function(req, cb, ga) { - var convCap, convRate, item, key, price, type, _ref, _ref1, _ref2, _ref3; - _ref = req.params, type = _ref.type, key = _ref.key; - if (type === 'gems' && key === 'gem') { - _ref1 = api.planGemLimits, convRate = _ref1.convRate, convCap = _ref1.convCap; - convCap += user.purchased.plan.consecutive.gemCapExtra; - if (!((_ref2 = user.purchased) != null ? (_ref3 = _ref2.plan) != null ? _ref3.customerId : void 0 : void 0)) { - return typeof cb === "function" ? cb({ - code: 401, - message: "Must subscribe to purchase gems with GP" - }, req) : void 0; - } - if (!(user.stats.gp >= convRate)) { - return typeof cb === "function" ? cb({ - code: 401, - message: "Not enough Gold" - }) : void 0; - } - if (user.purchased.plan.gemsBought >= convCap) { - return typeof cb === "function" ? cb({ - code: 401, - message: "You've reached the Gold=>Gem conversion cap (" + convCap + ") for this month. We have this to prevent abuse / farming. The cap will reset within the first three days of next month." - }) : void 0; - } - user.balance += .25; - user.purchased.plan.gemsBought++; - user.stats.gp -= convRate; - return typeof cb === "function" ? cb({ - code: 200, - message: "+1 Gems" - }, _.pick(user, $w('stats balance'))) : void 0; - } - if (type !== 'eggs' && type !== 'hatchingPotions' && type !== 'food' && type !== 'quests' && type !== 'gear') { - return typeof cb === "function" ? cb({ - code: 404, - message: ":type must be in [eggs,hatchingPotions,food,quests,gear]" - }, req) : void 0; - } - if (type === 'gear') { - item = content.gear.flat[key]; - if (user.items.gear.owned[key]) { - return typeof cb === "function" ? cb({ - code: 401, - message: i18n.t('alreadyHave', req.language) - }) : void 0; - } - price = (item.twoHanded ? 2 : 1) / 4; - } else { - item = content[type][key]; - price = item.value / 4; - } - if (!item) { - return typeof cb === "function" ? cb({ - code: 404, - message: ":key not found for Content." + type - }, req) : void 0; - } - if (user.balance < price) { - return typeof cb === "function" ? cb({ - code: 401, - message: i18n.t('notEnoughGems', req.language) - }) : void 0; - } - user.balance -= price; - if (type === 'gear') { - user.items.gear.owned[key] = true; - } else { - if (!(user.items[type][key] > 0)) { - user.items[type][key] = 0; - } - user.items[type][key]++; - } - if (typeof cb === "function") { - cb(null, _.pick(user, $w('items balance'))); - } - return ga != null ? ga.event('purchase', key).send() : void 0; - }, - releasePets: function(req, cb) { - var pet; - if (user.balance < 1) { - return typeof cb === "function" ? cb({ - code: 401, - message: i18n.t('notEnoughGems', req.language) - }) : void 0; - } else { - user.balance--; - for (pet in content.pets) { - user.items.pets[pet] = 0; - } - if (!user.achievements.beastMasterCount) { - user.achievements.beastMasterCount = 0; - } - user.achievements.beastMasterCount++; - user.items.currentPet = ""; - } - return typeof cb === "function" ? cb(null, user) : void 0; - }, - releaseMounts: function(req, cb) { - var mount; - if (user.balance < 1) { - return typeof cb === "function" ? cb({ - code: 401, - message: i18n.t('notEnoughGems', req.language) - }) : void 0; - } else { - user.balance -= 1; - user.items.currentMount = ""; - for (mount in content.pets) { - user.items.mounts[mount] = null; - } - if (!user.achievements.mountMasterCount) { - user.achievements.mountMasterCount = 0; - } - user.achievements.mountMasterCount++; - } - return typeof cb === "function" ? cb(null, user) : void 0; - }, - releaseBoth: function(req, cb) { - var animal, giveTriadBingo; - if (user.balance < 1.5) { - return typeof cb === "function" ? cb({ - code: 401, - message: i18n.t('notEnoughGems', req.language) - }) : void 0; - } else { - giveTriadBingo = true; - user.balance -= 1.5; - user.items.currentMount = ""; - user.items.currentPet = ""; - for (animal in content.pets) { - if (user.items.pets[animal] === -1) { - giveTriadBingo = false; - } - user.items.pets[animal] = 0; - user.items.mounts[animal] = null; - } - if (!user.achievements.beastMasterCount) { - user.achievements.beastMasterCount = 0; - } - user.achievements.beastMasterCount++; - if (!user.achievements.mountMasterCount) { - user.achievements.mountMasterCount = 0; - } - user.achievements.mountMasterCount++; - if (giveTriadBingo) { - if (!user.achievements.triadBingoCount) { - user.achievements.triadBingoCount = 0; - } - user.achievements.triadBingoCount++; - } - } - return typeof cb === "function" ? cb(null, user) : void 0; - }, - buy: function(req, cb) { - var item, key, message; - key = req.params.key; - item = key === 'potion' ? content.potion : content.gear.flat[key]; - if (!item) { - return typeof cb === "function" ? cb({ - code: 404, - message: "Item '" + key + " not found (see https://github.com/HabitRPG/habitrpg-shared/blob/develop/script/content.coffee)" - }) : void 0; - } - if (user.stats.gp < item.value) { - return typeof cb === "function" ? cb({ - code: 401, - message: i18n.t('messageNotEnoughGold', req.language) - }) : void 0; - } - if ((item.canOwn != null) && !item.canOwn(user)) { - return typeof cb === "function" ? cb({ - code: 401, - message: "You can't own this item" - }) : void 0; - } - if (item.key === 'potion') { - user.stats.hp += 15; - if (user.stats.hp > 50) { - user.stats.hp = 50; - } - } else { - user.items.gear.equipped[item.type] = item.key; - user.items.gear.owned[item.key] = true; - message = user.fns.handleTwoHanded(item, null, req); - if (message == null) { - message = i18n.t('messageBought', { - itemText: item.text(req.language) - }, req.language); - } - if (!user.achievements.ultimateGear && item.last) { - user.fns.ultimateGear(); - } - } - user.stats.gp -= item.value; - return typeof cb === "function" ? cb({ - code: 200, - message: message - }, _.pick(user, $w('items achievements stats'))) : void 0; - }, - buyMysterySet: function(req, cb) { - var mysterySet, _ref; - if (!(user.purchased.plan.consecutive.trinkets > 0)) { - return typeof cb === "function" ? cb({ - code: 401, - message: "You don't have enough Mystic Hourglasses" - }) : void 0; - } - mysterySet = (_ref = content.timeTravelerStore(user.items.gear.owned)) != null ? _ref[req.params.key] : void 0; - if ((typeof window !== "undefined" && window !== null ? window.confirm : void 0) != null) { - if (!window.confirm("Buy this full set of items for 1 Mystic Hourglass?")) { - return; - } - } - if (!mysterySet) { - return typeof cb === "function" ? cb({ - code: 404, - message: "Mystery set not found, or set already owned" - }) : void 0; - } - _.each(mysterySet.items, function(i) { - return user.items.gear.owned[i.key] = true; - }); - user.purchased.plan.consecutive.trinkets--; - return typeof cb === "function" ? cb(null, _.pick(user, $w('items purchased.plan.consecutive'))) : void 0; - }, - sell: function(req, cb) { - var key, type, _ref; - _ref = req.params, key = _ref.key, type = _ref.type; - if (type !== 'eggs' && type !== 'hatchingPotions' && type !== 'food') { - return typeof cb === "function" ? cb({ - code: 404, - message: ":type not found. Must bes in [eggs, hatchingPotions, food]" - }) : void 0; - } - if (!user.items[type][key]) { - return typeof cb === "function" ? cb({ - code: 404, - message: ":key not found for user.items." + type - }) : void 0; - } - user.items[type][key]--; - user.stats.gp += content[type][key].value; - return typeof cb === "function" ? cb(null, _.pick(user, $w('stats items'))) : void 0; - }, - equip: function(req, cb) { - var item, key, message, type, _ref; - _ref = [req.params.type || 'equipped', req.params.key], type = _ref[0], key = _ref[1]; - switch (type) { - case 'mount': - if (!user.items.mounts[key]) { - return typeof cb === "function" ? cb({ - code: 404, - message: ":You do not own this mount." - }) : void 0; - } - user.items.currentMount = user.items.currentMount === key ? '' : key; - break; - case 'pet': - if (!user.items.pets[key]) { - return typeof cb === "function" ? cb({ - code: 404, - message: ":You do not own this pet." - }) : void 0; - } - user.items.currentPet = user.items.currentPet === key ? '' : key; - break; - case 'costume': - case 'equipped': - item = content.gear.flat[key]; - if (!user.items.gear.owned[key]) { - return typeof cb === "function" ? cb({ - code: 404, - message: ":You do not own this gear." - }) : void 0; - } - if (user.items.gear[type][item.type] === key) { - user.items.gear[type][item.type] = "" + item.type + "_base_0"; - message = i18n.t('messageUnEquipped', { - itemText: item.text(req.language) - }, req.language); - } else { - user.items.gear[type][item.type] = item.key; - message = user.fns.handleTwoHanded(item, type, req); - } - if (typeof user.markModified === "function") { - user.markModified("items.gear." + type); - } - } - return typeof cb === "function" ? cb((message ? { - code: 200, - message: message - } : null), user.items) : void 0; - }, - hatch: function(req, cb) { - var egg, hatchingPotion, pet, _ref; - _ref = req.params, egg = _ref.egg, hatchingPotion = _ref.hatchingPotion; - if (!(egg && hatchingPotion)) { - return typeof cb === "function" ? cb({ - code: 404, - message: "Please specify query.egg & query.hatchingPotion" - }) : void 0; - } - if (!(user.items.eggs[egg] > 0 && user.items.hatchingPotions[hatchingPotion] > 0)) { - return typeof cb === "function" ? cb({ - code: 401, - message: i18n.t('messageMissingEggPotion', req.language) - }) : void 0; - } - pet = "" + egg + "-" + hatchingPotion; - if (user.items.pets[pet] && user.items.pets[pet] > 0) { - return typeof cb === "function" ? cb({ - code: 401, - message: i18n.t('messageAlreadyPet', req.language) - }) : void 0; - } - user.items.pets[pet] = 5; - user.items.eggs[egg]--; - user.items.hatchingPotions[hatchingPotion]--; - return typeof cb === "function" ? cb({ - code: 200, - message: i18n.t('messageHatched', req.language) - }, user.items) : void 0; - }, - unlock: function(req, cb, ga) { - var alreadyOwns, cost, fullSet, k, path, split, v; - path = req.query.path; - fullSet = ~path.indexOf(","); - cost = ~path.indexOf('background.') ? fullSet ? 3.75 : 1.75 : fullSet ? 1.25 : 0.5; - alreadyOwns = !fullSet && user.fns.dotGet("purchased." + path) === true; - if (user.balance < cost && !alreadyOwns) { - return typeof cb === "function" ? cb({ - code: 401, - message: i18n.t('notEnoughGems', req.language) - }) : void 0; - } - if (fullSet) { - _.each(path.split(","), function(p) { - user.fns.dotSet("purchased." + p, true); - return true; - }); - } else { - if (alreadyOwns) { - split = path.split('.'); - v = split.pop(); - k = split.join('.'); - if (k === 'background' && v === user.preferences.background) { - v = ''; - } - user.fns.dotSet("preferences." + k, v); - return typeof cb === "function" ? cb(null, req) : void 0; - } - user.fns.dotSet("purchased." + path, true); - } - user.balance -= cost; - if (typeof user.markModified === "function") { - user.markModified('purchased'); - } - if (typeof cb === "function") { - cb(null, _.pick(user, $w('purchased preferences'))); - } - return ga != null ? ga.event('purchase', path).send() : void 0; - }, - changeClass: function(req, cb, ga) { - var klass, _ref; - klass = (_ref = req.query) != null ? _ref["class"] : void 0; - if (klass === 'warrior' || klass === 'rogue' || klass === 'wizard' || klass === 'healer') { - user.stats["class"] = klass; - user.flags.classSelected = true; - _.each(["weapon", "armor", "shield", "head"], function(type) { - var foundKey; - foundKey = false; - _.findLast(user.items.gear.owned, function(v, k) { - if (~k.indexOf(type + "_" + klass) && v === true) { - return foundKey = k; - } - }); - user.items.gear.equipped[type] = foundKey ? foundKey : type === "weapon" ? "weapon_" + klass + "_0" : type === "shield" && klass === "rogue" ? "shield_rogue_0" : "" + type + "_base_0"; - if (type === "weapon" || (type === "shield" && klass === "rogue")) { - user.items.gear.owned["" + type + "_" + klass + "_0"] = true; - } - return true; - }); - } else { - if (user.preferences.disableClasses) { - user.preferences.disableClasses = false; - user.preferences.autoAllocate = false; - } else { - if (!(user.balance >= .75)) { - return typeof cb === "function" ? cb({ - code: 401, - message: i18n.t('notEnoughGems', req.language) - }) : void 0; - } - user.balance -= .75; - } - _.merge(user.stats, { - str: 0, - con: 0, - per: 0, - int: 0, - points: user.stats.lvl - }); - user.flags.classSelected = false; - if (ga != null) { - ga.event('purchase', 'changeClass').send(); - } - } - return typeof cb === "function" ? cb(null, _.pick(user, $w('stats flags items preferences'))) : void 0; - }, - disableClasses: function(req, cb) { - user.stats["class"] = 'warrior'; - user.flags.classSelected = true; - user.preferences.disableClasses = true; - user.preferences.autoAllocate = true; - user.stats.str = user.stats.lvl; - user.stats.points = 0; - return typeof cb === "function" ? cb(null, _.pick(user, $w('stats flags preferences'))) : void 0; - }, - allocate: function(req, cb) { - var stat; - stat = req.query.stat || 'str'; - if (user.stats.points > 0) { - user.stats[stat]++; - user.stats.points--; - if (stat === 'int') { - user.stats.mp++; - } - } - return typeof cb === "function" ? cb(null, _.pick(user, $w('stats'))) : void 0; - }, - readValentine: function(req, cb) { - user.items.special.valentineReceived.shift(); - if (typeof user.markModified === "function") { - user.markModified('items.special.valentineReceived'); - } - return typeof cb === "function" ? cb(null, 'items.special') : void 0; - }, - openMysteryItem: function(req, cb, ga) { - var item, _ref, _ref1; - item = (_ref = user.purchased.plan) != null ? (_ref1 = _ref.mysteryItems) != null ? _ref1.shift() : void 0 : void 0; - if (!item) { - return typeof cb === "function" ? cb({ - code: 400, - message: "Empty" - }) : void 0; - } - item = content.gear.flat[item]; - user.items.gear.owned[item.key] = true; - if (typeof user.markModified === "function") { - user.markModified('purchased.plan.mysteryItems'); - } - if (typeof window !== 'undefined') { - (user._tmp != null ? user._tmp : user._tmp = {}).drop = { - type: 'gear', - dialog: "" + (item.text(req.language)) + " inside!" - }; - } - return typeof cb === "function" ? cb(null, user.items.gear.owned) : void 0; - }, - readNYE: function(req, cb) { - user.items.special.nyeReceived.shift(); - if (typeof user.markModified === "function") { - user.markModified('items.special.nyeReceived'); - } - return typeof cb === "function" ? cb(null, 'items.special') : void 0; - }, - score: function(req, cb) { - var addPoints, calculateDelta, calculateReverseDelta, changeTaskValue, delta, direction, id, mpDelta, multiplier, num, options, stats, subtractPoints, task, th, _ref; - _ref = req.params, id = _ref.id, direction = _ref.direction; - task = user.tasks[id]; - options = req.query || {}; - _.defaults(options, { - times: 1, - cron: false - }); - user._tmp = {}; - stats = { - gp: +user.stats.gp, - hp: +user.stats.hp, - exp: +user.stats.exp - }; - task.value = +task.value; - task.streak = ~~task.streak; - if (task.priority == null) { - task.priority = 1; - } - if (task.value > stats.gp && task.type === 'reward') { - return typeof cb === "function" ? cb({ - code: 401, - message: i18n.t('messageNotEnoughGold', req.language) - }) : void 0; - } - delta = 0; - calculateDelta = function() { - var currVal, nextDelta, _ref1; - currVal = task.value < -47.27 ? -47.27 : task.value > 21.27 ? 21.27 : task.value; - nextDelta = Math.pow(0.9747, currVal) * (direction === 'down' ? -1 : 1); - if (((_ref1 = task.checklist) != null ? _ref1.length : void 0) > 0) { - if (direction === 'down' && task.type === 'daily' && options.cron) { - nextDelta *= 1 - _.reduce(task.checklist, (function(m, i) { - return m + (i.completed ? 1 : 0); - }), 0) / task.checklist.length; - } - if (task.type === 'todo') { - nextDelta *= 1 + _.reduce(task.checklist, (function(m, i) { - return m + (i.completed ? 1 : 0); - }), 0); - } - } - return nextDelta; - }; - calculateReverseDelta = function() { - var calc, closeEnough, currVal, diff, nextDelta, testVal, _ref1; - currVal = task.value < -47.27 ? -47.27 : task.value > 21.27 ? 21.27 : task.value; - testVal = currVal + Math.pow(0.9747, currVal) * (direction === 'down' ? -1 : 1); - closeEnough = 0.00001; - while (true) { - calc = testVal + Math.pow(0.9747, testVal); - diff = currVal - calc; - if (Math.abs(diff) < closeEnough) { - break; - } - if (diff > 0) { - testVal -= diff; - } else { - testVal += diff; - } - } - nextDelta = testVal - currVal; - if (((_ref1 = task.checklist) != null ? _ref1.length : void 0) > 0) { - if (task.type === 'todo') { - nextDelta *= 1 + _.reduce(task.checklist, (function(m, i) { - return m + (i.completed ? 1 : 0); - }), 0); - } - } - return nextDelta; - }; - changeTaskValue = function() { - return _.times(options.times, function() { - var nextDelta, _ref1; - nextDelta = !options.cron && direction === 'down' ? calculateReverseDelta() : calculateDelta(); - if (task.type !== 'reward') { - if (user.preferences.automaticAllocation === true && user.preferences.allocationMode === 'taskbased' && !(task.type === 'todo' && direction === 'down')) { - user.stats.training[task.attribute] += nextDelta; - } - if (direction === 'up' && !(task.type === 'habit' && !task.down)) { - user.party.quest.progress.up = user.party.quest.progress.up || 0; - if ((_ref1 = task.type) === 'daily' || _ref1 === 'todo') { - user.party.quest.progress.up += nextDelta * (1 + (user._statsComputed.str / 200)); - } - } - task.value += nextDelta; - } - return delta += nextDelta; - }); - }; - addPoints = function() { - var afterStreak, currStreak, gpMod, intBonus, perBonus, streakBonus, _crit; - _crit = (delta > 0 ? user.fns.crit() : 1); - if (_crit > 1) { - user._tmp.crit = _crit; - } - intBonus = 1 + (user._statsComputed.int * .025); - stats.exp += Math.round(delta * intBonus * task.priority * _crit * 6); - perBonus = 1 + user._statsComputed.per * .02; - gpMod = delta * task.priority * _crit * perBonus; - return stats.gp += task.streak ? (currStreak = direction === 'down' ? task.streak - 1 : task.streak, streakBonus = currStreak / 100 + 1, afterStreak = gpMod * streakBonus, currStreak > 0 ? gpMod > 0 ? user._tmp.streakBonus = afterStreak - gpMod : void 0 : void 0, afterStreak) : gpMod; - }; - subtractPoints = function() { - var conBonus, hpMod; - conBonus = 1 - (user._statsComputed.con / 250); - if (conBonus < .1) { - conBonus = 0.1; - } - hpMod = delta * conBonus * task.priority * 2; - return stats.hp += Math.round(hpMod * 10) / 10; - }; - switch (task.type) { - case 'habit': - changeTaskValue(); - if (delta > 0) { - addPoints(); - } else { - subtractPoints(); - } - th = (task.history != null ? task.history : task.history = []); - if (th[th.length - 1] && moment(th[th.length - 1].date).isSame(new Date, 'day')) { - th[th.length - 1].value = task.value; - } else { - th.push({ - date: +(new Date), - value: task.value - }); - } - if (typeof user.markModified === "function") { - user.markModified("habits." + (_.findIndex(user.habits, { - id: task.id - })) + ".history"); - } - break; - case 'daily': - if (options.cron) { - changeTaskValue(); - subtractPoints(); - if (!user.stats.buffs.streaks) { - task.streak = 0; - } - } else { - changeTaskValue(); - if (direction === 'down') { - delta = calculateDelta(); - } - addPoints(); - if (direction === 'up') { - task.streak = task.streak ? task.streak + 1 : 1; - if ((task.streak % 21) === 0) { - user.achievements.streak = user.achievements.streak ? user.achievements.streak + 1 : 1; - } - } else { - if ((task.streak % 21) === 0) { - user.achievements.streak = user.achievements.streak ? user.achievements.streak - 1 : 0; - } - task.streak = task.streak ? task.streak - 1 : 0; - } - } - break; - case 'todo': - if (options.cron) { - changeTaskValue(); - } else { - task.dateCompleted = direction === 'up' ? new Date : void 0; - changeTaskValue(); - if (direction === 'down') { - delta = calculateDelta(); - } - addPoints(); - multiplier = _.max([ - _.reduce(task.checklist, (function(m, i) { - return m + (i.completed ? 1 : 0); - }), 1), 1 - ]); - mpDelta = _.max([multiplier, .01 * user._statsComputed.maxMP * multiplier]); - mpDelta *= user._tmp.crit || 1; - if (direction === 'down') { - mpDelta *= -1; - } - user.stats.mp += mpDelta; - if (user.stats.mp >= user._statsComputed.maxMP) { - user.stats.mp = user._statsComputed.maxMP; - } - if (user.stats.mp < 0) { - user.stats.mp = 0; - } - } - break; - case 'reward': - changeTaskValue(); - stats.gp -= Math.abs(task.value); - num = parseFloat(task.value).toFixed(2); - if (stats.gp < 0) { - stats.hp += stats.gp; - stats.gp = 0; - } - } - user.fns.updateStats(stats, req); - if (typeof window === 'undefined') { - if (direction === 'up') { - user.fns.randomDrop({ - task: task, - delta: delta - }, req); - } - } - if (typeof cb === "function") { - cb(null, user); - } - return delta; - } - }; - } - user.fns = { - getItem: function(type) { - var item; - item = content.gear.flat[user.items.gear.equipped[type]]; - if (!item) { - return content.gear.flat["" + type + "_base_0"]; - } - return item; - }, - handleTwoHanded: function(item, type, req) { - var message, weapon, _ref; - if (type == null) { - type = 'equipped'; - } - if (item.type === "shield" && ((_ref = (weapon = content.gear.flat[user.items.gear[type].weapon])) != null ? _ref.twoHanded : void 0)) { - user.items.gear[type].weapon = 'weapon_base_0'; - message = i18n.t('messageTwoHandled', { - gearText: weapon.text(req.language) - }, req.language); - } - if (item.twoHanded) { - user.items.gear[type].shield = "shield_base_0"; - message = i18n.t('messageTwoHandled', { - gearText: item.text(req.language) - }, req.language); - } - return message; - }, - - /* - Because the same op needs to be performed on the client and the server (critical hits, item drops, etc), - we need things to be "random", but technically predictable so that they don't go out-of-sync - */ - predictableRandom: function(seed) { - var x; - if (!seed || seed === Math.PI) { - seed = _.reduce(user.stats, (function(m, v) { - if (_.isNumber(v)) { - return m + v; - } else { - return m; - } - }), 0); - } - x = Math.sin(seed++) * 10000; - return x - Math.floor(x); - }, - crit: function(stat, chance) { - if (stat == null) { - stat = 'str'; - } - if (chance == null) { - chance = .03; - } - if (user.fns.predictableRandom() <= chance * (1 + user._statsComputed[stat] / 100)) { - return 1.5 + (.02 * user._statsComputed[stat]); - } else { - return 1; - } - }, - - /* - Get a random property from an object - returns random property (the value) - */ - randomVal: function(obj, options) { - var array, rand; - array = (options != null ? options.key : void 0) ? _.keys(obj) : _.values(obj); - rand = user.fns.predictableRandom(options != null ? options.seed : void 0); - array.sort(); - return array[Math.floor(rand * array.length)]; - }, - - /* - This allows you to set object properties by dot-path. Eg, you can run pathSet('stats.hp',50,user) which is the same as - user.stats.hp = 50. This is useful because in our habitrpg-shared functions we're returning changesets as {path:value}, - so that different consumers can implement setters their own way. Derby needs model.set(path, value) for example, where - Angular sets object properties directly - in which case, this function will be used. - */ - dotSet: function(path, val) { - return api.dotSet(user, path, val); - }, - dotGet: function(path) { - return api.dotGet(user, path); - }, - randomDrop: function(modifiers, req) { - var acceptableDrops, chance, drop, dropK, dropMultiplier, quest, rarity, task, _base, _base1, _base2, _name, _name1, _name2, _ref, _ref1, _ref2, _ref3; - task = modifiers.task; - chance = _.min([Math.abs(task.value - 21.27), 37.5]) / 150 + .02; - chance *= task.priority * (1 + (task.streak / 100 || 0)) * (1 + (user._statsComputed.per / 100)) * (1 + (user.contributor.level / 40 || 0)) * (1 + (user.achievements.rebirths / 20 || 0)) * (1 + (user.achievements.streak / 200 || 0)) * (user._tmp.crit || 1) * (1 + .5 * (_.reduce(task.checklist, (function(m, i) { - return m + (i.completed ? 1 : 0); - }), 0) || 0)); - chance = api.diminishingReturns(chance, 0.75); - quest = content.quests[(_ref = user.party.quest) != null ? _ref.key : void 0]; - if ((quest != null ? quest.collect : void 0) && user.fns.predictableRandom(user.stats.gp) < chance) { - dropK = user.fns.randomVal(quest.collect, { - key: true - }); - user.party.quest.progress.collect[dropK]++; - if (typeof user.markModified === "function") { - user.markModified('party.quest.progress'); - } - } - dropMultiplier = ((_ref1 = user.purchased) != null ? (_ref2 = _ref1.plan) != null ? _ref2.customerId : void 0 : void 0) ? 2 : 1; - if ((api.daysSince(user.items.lastDrop.date, user.preferences) === 0) && (user.items.lastDrop.count >= dropMultiplier * (5 + Math.floor(user._statsComputed.per / 25) + (user.contributor.level || 0)))) { - return; - } - if (((_ref3 = user.flags) != null ? _ref3.dropsEnabled : void 0) && user.fns.predictableRandom(user.stats.exp) < chance) { - rarity = user.fns.predictableRandom(user.stats.gp); - if (rarity > .6) { - drop = user.fns.randomVal(_.where(content.food, { - canDrop: true - })); - if ((_base = user.items.food)[_name = drop.key] == null) { - _base[_name] = 0; - } - user.items.food[drop.key] += 1; - drop.type = 'Food'; - drop.dialog = i18n.t('messageDropFood', { - dropArticle: drop.article, - dropText: drop.text(req.language), - dropNotes: drop.notes(req.language) - }, req.language); - } else if (rarity > .3) { - drop = user.fns.randomVal(_.where(content.eggs, { - canBuy: true - })); - if ((_base1 = user.items.eggs)[_name1 = drop.key] == null) { - _base1[_name1] = 0; - } - user.items.eggs[drop.key]++; - drop.type = 'Egg'; - drop.dialog = i18n.t('messageDropEgg', { - dropText: drop.text(req.language), - dropNotes: drop.notes(req.language) - }, req.language); - } else { - acceptableDrops = rarity < .02 ? ['Golden'] : rarity < .09 ? ['Zombie', 'CottonCandyPink', 'CottonCandyBlue'] : rarity < .18 ? ['Red', 'Shade', 'Skeleton'] : ['Base', 'White', 'Desert']; - drop = user.fns.randomVal(_.pick(content.hatchingPotions, (function(v, k) { - return __indexOf.call(acceptableDrops, k) >= 0; - }))); - if ((_base2 = user.items.hatchingPotions)[_name2 = drop.key] == null) { - _base2[_name2] = 0; - } - user.items.hatchingPotions[drop.key]++; - drop.type = 'HatchingPotion'; - drop.dialog = i18n.t('messageDropPotion', { - dropText: drop.text(req.language), - dropNotes: drop.notes(req.language) - }, req.language); - } - user._tmp.drop = drop; - user.items.lastDrop.date = +(new Date); - return user.items.lastDrop.count++; - } - }, - - /* - Updates user stats with new stats. Handles death, leveling up, etc - {stats} new stats - {update} if aggregated changes, pass in userObj as update. otherwise commits will be made immediately - */ - autoAllocate: function() { - return user.stats[(function() { - var diff, ideal, preference, stats, suggested; - switch (user.preferences.allocationMode) { - case "flat": - stats = _.pick(user.stats, $w('con str per int')); - return _.invert(stats)[_.min(stats)]; - case "classbased": - ideal = [user.stats.lvl / 7 * 3, user.stats.lvl / 7 * 2, user.stats.lvl / 7, user.stats.lvl / 7]; - preference = (function() { - switch (user.stats["class"]) { - case "wizard": - return ["int", "per", "con", "str"]; - case "rogue": - return ["per", "str", "int", "con"]; - case "healer": - return ["con", "int", "str", "per"]; - default: - return ["str", "con", "per", "int"]; - } - })(); - diff = [user.stats[preference[0]] - ideal[0], user.stats[preference[1]] - ideal[1], user.stats[preference[2]] - ideal[2], user.stats[preference[3]] - ideal[3]]; - suggested = _.findIndex(diff, (function(val) { - if (val === _.min(diff)) { - return true; - } - })); - if (~suggested) { - return preference[suggested]; - } else { - return "str"; - } - case "taskbased": - suggested = _.invert(user.stats.training)[_.max(user.stats.training)]; - _.merge(user.stats.training, { - str: 0, - int: 0, - con: 0, - per: 0 - }); - return suggested || "str"; - default: - return "str"; - } - })()]++; - }, - updateStats: function(stats, req) { - var tnl; - if (stats.hp <= 0) { - return user.stats.hp = 0; - } - user.stats.hp = stats.hp; - user.stats.gp = stats.gp >= 0 ? stats.gp : 0; - tnl = api.tnl(user.stats.lvl); - if (stats.exp >= tnl) { - user.stats.exp = stats.exp; - while (stats.exp >= tnl) { - stats.exp -= tnl; - user.stats.lvl++; - tnl = api.tnl(user.stats.lvl); - if (user.preferences.automaticAllocation) { - user.fns.autoAllocate(); - } else { - user.stats.points = user.stats.lvl - (user.stats.con + user.stats.str + user.stats.per + user.stats.int); - } - user.stats.hp = 50; - } - } - user.stats.exp = stats.exp; - if (user.flags == null) { - user.flags = {}; - } - if (!user.flags.customizationsNotification && (user.stats.exp > 5 || user.stats.lvl > 1)) { - user.flags.customizationsNotification = true; - } - if (!user.flags.itemsEnabled && (user.stats.exp > 10 || user.stats.lvl > 1)) { - user.flags.itemsEnabled = true; - } - if (!user.flags.partyEnabled && user.stats.lvl >= 3) { - user.flags.partyEnabled = true; - } - if (!user.flags.dropsEnabled && user.stats.lvl >= 4) { - user.flags.dropsEnabled = true; - if (user.items.eggs["Wolf"] > 0) { - user.items.eggs["Wolf"]++; - } else { - user.items.eggs["Wolf"] = 1; - } - } - if (!user.flags.classSelected && user.stats.lvl >= 10) { - user.flags.classSelected; - } - _.each({ - vice1: 30, - atom1: 15, - moonstone1: 60, - goldenknight1: 40 - }, function(lvl, k) { - var _base, _base1, _ref; - if (!((_ref = user.flags.levelDrops) != null ? _ref[k] : void 0) && user.stats.lvl >= lvl) { - if ((_base = user.items.quests)[k] == null) { - _base[k] = 0; - } - user.items.quests[k]++; - ((_base1 = user.flags).levelDrops != null ? _base1.levelDrops : _base1.levelDrops = {})[k] = true; - if (typeof user.markModified === "function") { - user.markModified('flags.levelDrops'); - } - return user._tmp.drop = _.defaults(content.quests[k], { - type: 'Quest', - dialog: i18n.t('messageFoundQuest', { - questText: content.quests[k].text(req.language) - }, req.language) - }); - } - }); - if (!user.flags.rebirthEnabled && (user.stats.lvl >= 50 || user.achievements.ultimateGear || user.achievements.beastMaster)) { - user.flags.rebirthEnabled = true; - } - if (user.stats.lvl >= 100 && !user.flags.freeRebirth) { - return user.flags.freeRebirth = true; - } - }, - - /* - ------------------------------------------------------ - Cron - ------------------------------------------------------ - */ - - /* - At end of day, add value to all incomplete Daily & Todo tasks (further incentive) - For incomplete Dailys, deduct experience - Make sure to run this function once in a while as server will not take care of overnight calculations. - And you have to run it every time client connects. - {user} - */ - cron: function(options) { - var clearBuffs, daysMissed, expTally, lvl, lvlDiv2, now, perfect, plan, progress, todoTally, _base, _base1, _base2, _base3, _progress, _ref, _ref1, _ref2; - if (options == null) { - options = {}; - } - now = +options.now || +(new Date); - daysMissed = api.daysSince(user.lastCron, _.defaults({ - now: now - }, user.preferences)); - if (!(daysMissed > 0)) { - return; - } - user.auth.timestamps.loggedin = new Date(); - user.lastCron = now; - if (user.items.lastDrop.count > 0) { - user.items.lastDrop.count = 0; - } - perfect = true; - clearBuffs = { - str: 0, - int: 0, - per: 0, - con: 0, - stealth: 0, - streaks: false - }; - plan = (_ref = user.purchased) != null ? _ref.plan : void 0; - if (plan != null ? plan.customerId : void 0) { - if (moment(plan.dateUpdated).format('MMYYYY') !== moment().format('MMYYYY')) { - plan.gemsBought = 0; - plan.dateUpdated = new Date(); - _.defaults(plan.consecutive, { - count: 0, - offset: 0, - trinkets: 0, - gemCapExtra: 0 - }); - plan.consecutive.count++; - if (plan.consecutive.offset > 0) { - plan.consecutive.offset--; - } else if (plan.consecutive.count % 3 === 0) { - plan.consecutive.trinkets++; - plan.consecutive.gemCapExtra += 5; - if (plan.consecutive.gemCapExtra > 25) { - plan.consecutive.gemCapExtra = 25; - } - } - } - if (plan.dateTerminated && moment(plan.dateTerminated).isBefore(+(new Date))) { - _.merge(plan, { - planId: null, - customerId: null, - paymentMethod: null - }); - _.merge(plan.consecutive, { - count: 0, - offset: 0, - gemCapExtra: 0 - }); - if (typeof user.markModified === "function") { - user.markModified('purchased.plan'); - } - } - } - if (user.preferences.sleep === true) { - user.stats.buffs = clearBuffs; - return; - } - todoTally = 0; - if ((_base = user.party.quest.progress).down == null) { - _base.down = 0; - } - user.todos.concat(user.dailys).forEach(function(task) { - var absVal, completed, delta, id, repeat, scheduleMisses, type; - if (!task) { - return; - } - id = task.id, type = task.type, completed = task.completed, repeat = task.repeat; - if ((type === 'daily') && !completed && user.stats.buffs.stealth && user.stats.buffs.stealth--) { - return; - } - if (!completed) { - scheduleMisses = daysMissed; - if ((type === 'daily') && repeat) { - scheduleMisses = 0; - _.times(daysMissed, function(n) { - var thatDay; - thatDay = moment(now).subtract({ - days: n + 1 - }); - if (api.shouldDo(thatDay, repeat, user.preferences)) { - return scheduleMisses++; - } - }); - } - if (scheduleMisses > 0) { - if (type === 'daily') { - perfect = false; - } - delta = user.ops.score({ - params: { - id: task.id, - direction: 'down' - }, - query: { - times: scheduleMisses, - cron: true - } - }); - if (type === 'daily') { - user.party.quest.progress.down += delta; - } - } - } - switch (type) { - case 'daily': - (task.history != null ? task.history : task.history = []).push({ - date: +(new Date), - value: task.value - }); - task.completed = false; - return _.each(task.checklist, (function(i) { - i.completed = false; - return true; - })); - case 'todo': - absVal = completed ? Math.abs(task.value) : task.value; - return todoTally += absVal; - } - }); - user.habits.forEach(function(task) { - if (task.up === false || task.down === false) { - if (Math.abs(task.value) < 0.1) { - return task.value = 0; - } else { - return task.value = task.value / 2; - } - } - }); - ((_base1 = (user.history != null ? user.history : user.history = {})).todos != null ? _base1.todos : _base1.todos = []).push({ - date: now, - value: todoTally - }); - expTally = user.stats.exp; - lvl = 0; - while (lvl < (user.stats.lvl - 1)) { - lvl++; - expTally += api.tnl(lvl); - } - ((_base2 = user.history).exp != null ? _base2.exp : _base2.exp = []).push({ - date: now, - value: expTally - }); - if (!((_ref1 = user.purchased) != null ? (_ref2 = _ref1.plan) != null ? _ref2.customerId : void 0 : void 0)) { - user.fns.preenUserHistory(); - if (typeof user.markModified === "function") { - user.markModified('history'); - } - if (typeof user.markModified === "function") { - user.markModified('dailys'); - } - } - user.stats.buffs = perfect ? ((_base3 = user.achievements).perfect != null ? _base3.perfect : _base3.perfect = 0, user.achievements.perfect++, user.stats.lvl < 100 ? lvlDiv2 = Math.ceil(user.stats.lvl / 2) : lvlDiv2 = 50, { - str: lvlDiv2, - int: lvlDiv2, - per: lvlDiv2, - con: lvlDiv2, - stealth: 0, - streaks: false - }) : clearBuffs; - user.stats.mp += _.max([10, .1 * user._statsComputed.maxMP]); - if (user.stats.mp > user._statsComputed.maxMP) { - user.stats.mp = user._statsComputed.maxMP; - } - progress = user.party.quest.progress; - _progress = _.cloneDeep(progress); - _.merge(progress, { - down: 0, - up: 0 - }); - progress.collect = _.transform(progress.collect, (function(m, v, k) { - return m[k] = 0; - })); - return _progress; - }, - preenUserHistory: function(minHistLen) { - if (minHistLen == null) { - minHistLen = 7; - } - _.each(user.habits.concat(user.dailys), function(task) { - var _ref; - if (((_ref = task.history) != null ? _ref.length : void 0) > minHistLen) { - task.history = preenHistory(task.history); - } - return true; - }); - _.defaults(user.history, { - todos: [], - exp: [] - }); - if (user.history.exp.length > minHistLen) { - user.history.exp = preenHistory(user.history.exp); - } - if (user.history.todos.length > minHistLen) { - return user.history.todos = preenHistory(user.history.todos); - } - }, - ultimateGear: function() { - var gear, lastGearClassTypeMatrix, ownedLastGear, shouldGrant; - gear = typeof window !== "undefined" && window !== null ? user.items.gear.owned : user.items.gear.owned.toObject(); - ownedLastGear = _.chain(content.gear.flat).pick(_.keys(gear)).values().filter(function(gear) { - return gear.last; - }); - lastGearClassTypeMatrix = {}; - _.each(content.classes, function(klass) { - lastGearClassTypeMatrix[klass] = {}; - return _.each(['armor', 'weapon', 'shield', 'head'], function(type) { - lastGearClassTypeMatrix[klass][type] = false; - return true; - }); - }); - ownedLastGear.each(function(gear) { - if (gear.twoHanded) { - lastGearClassTypeMatrix[gear.klass]["shield"] = true; - } - return lastGearClassTypeMatrix[gear.klass][gear.type] = true; - }); - shouldGrant = _(lastGearClassTypeMatrix).values().reduce((function(ans, klass) { - return ans || _(klass).values().reduce((function(ans, gearType) { - return ans && gearType; - }), true); - }), false).valueOf(); - return user.achievements.ultimateGear = shouldGrant; - }, - nullify: function() { - user.ops = null; - user.fns = null; - return user = null; - } - }; - Object.defineProperty(user, '_statsComputed', { - get: function() { - var computed; - computed = _.reduce(['per', 'con', 'str', 'int'], (function(_this) { - return function(m, stat) { - m[stat] = _.reduce($w('stats stats.buffs items.gear.equipped.weapon items.gear.equipped.armor items.gear.equipped.head items.gear.equipped.shield'), function(m2, path) { - var item, val; - val = user.fns.dotGet(path); - return m2 + (~path.indexOf('items.gear') ? (item = content.gear.flat[val], (+(item != null ? item[stat] : void 0) || 0) * ((item != null ? item.klass : void 0) === user.stats["class"] || (item != null ? item.specialClass : void 0) === user.stats["class"] ? 1.5 : 1)) : +val[stat] || 0); - }, 0); - if (user.stats.lvl < 100) { - m[stat] += (user.stats.lvl - 1) / 2; - } else { - m[stat] += 50; - } - return m; - }; - })(this), {}); - computed.maxMP = computed.int * 2 + 30; - return computed; - } - }); - return Object.defineProperty(user, 'tasks', { - get: function() { - var tasks; - tasks = user.habits.concat(user.dailys).concat(user.todos).concat(user.rewards); - return _.object(_.pluck(tasks, "id"), tasks); - } - }); -}; - - -}).call(this,require('_process')) -},{"./content.coffee":4,"./i18n.coffee":5,"_process":7,"lodash":2,"moment":3}],7:[function(require,module,exports){ -// shim for using process in browser - -var process = module.exports = {}; -var queue = []; -var draining = false; - -function drainQueue() { - if (draining) { - return; - } - draining = true; - var currentQueue; - var len = queue.length; - while(len) { - currentQueue = queue; - queue = []; - var i = -1; - while (++i < len) { - currentQueue[i](); - } - len = queue.length; - } - draining = false; -} -process.nextTick = function (fun) { - queue.push(fun); - if (!draining) { - setTimeout(drainQueue, 0); - } -}; - -process.title = 'browser'; -process.browser = true; -process.env = {}; -process.argv = []; -process.version = ''; // empty string to avoid regexp issues - -function noop() {} - -process.on = noop; -process.addListener = noop; -process.once = noop; -process.off = noop; -process.removeListener = noop; -process.removeAllListeners = noop; -process.emit = noop; - -process.binding = function (name) { - throw new Error('process.binding is not supported'); -}; - -// TODO(shtylman) -process.cwd = function () { return '/' }; -process.chdir = function (dir) { - throw new Error('process.chdir is not supported'); -}; -process.umask = function() { return 0; }; - },{}]},{},[1]); diff --git a/common/dist/sprites/habitrpg-shared.css b/common/dist/sprites/habitrpg-shared.css deleted file mode 100644 index d4f3d68fbd..0000000000 --- a/common/dist/sprites/habitrpg-shared.css +++ /dev/null @@ -1 +0,0 @@ -.achievement-alien{background-image:url(spritesmith0.png);background-position:-1092px -1638px;width:24px;height:26px}.achievement-armor{background-position:-116px -888px}.achievement-armor,.achievement-boot{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-boot{background-position:-1572px -1183px}.achievement-bow{background-position:-621px -1866px}.achievement-bow,.achievement-cactus{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-cactus{background-position:-1729px -937px}.achievement-cake{background-position:-1840px -691px}.achievement-cake,.achievement-cave{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-cave{background-position:-1547px -1210px}.achievement-coffin{background-position:-398px -1923px}.achievement-coffin,.achievement-comment{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-comment{background-position:-1208px -1547px}.achievement-costumeContest{background-position:-1780px -819px}.achievement-costumeContest,.achievement-dilatory{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-dilatory{background-position:-596px -1866px}.achievement-firefox{background-position:-373px -1923px}.achievement-firefox,.achievement-habitBirthday{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-habitBirthday{background-position:-1840px -664px}.achievement-heart{background-position:-1940px -236px}.achievement-heart,.achievement-helm{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-helm{background-position:-348px -1923px}.achievement-karaoke{background-position:-1729px -910px}.achievement-karaoke,.achievement-ninja{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-ninja{background-position:-91px -888px}.achievement-nye{background-position:-1940px -209px}.achievement-nye,.achievement-perfect{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-perfect{background-position:-323px -1923px}.achievement-rat{background-position:-1940px -182px}.achievement-rat,.achievement-shield{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-shield{background-position:-1547px -1183px}.achievement-snowball{background-position:-1183px -1547px}.achievement-snowball,.achievement-spookDust{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-spookDust{background-position:-1840px -637px}.achievement-stoikalm{background-position:-298px -1923px}.achievement-stoikalm,.achievement-sun{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-sun{background-position:-546px -1866px}.achievement-sword{background-position:-273px -1923px}.achievement-sword,.achievement-thermometer{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-thermometer{background-position:-480px -922px}.achievement-tree{background-position:-455px -922px}.achievement-tree,.achievement-triadbingo{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-triadbingo{background-position:-531px -740px}.achievement-valentine{background-position:-506px -740px}.achievement-valentine,.achievement-wolf{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-wolf{background-position:-571px -1866px}.background_autumn_forest{background-image:url(spritesmith0.png);background-position:-282px -444px;width:140px;height:147px}.background_beach{background-position:0 -148px;width:141px}.background_beach,.background_blacksmithy{background-image:url(spritesmith0.png);height:147px}.background_blacksmithy{background-position:-142px -148px;width:140px}.background_clouds{background-position:-283px 0}.background_clouds,.background_coral_reef{background-image:url(spritesmith0.png);width:140px;height:147px}.background_coral_reef{background-position:0 -296px}.background_crystal_cave{background-position:-283px -148px}.background_crystal_cave,.background_distant_castle{background-image:url(spritesmith0.png);width:140px;height:147px}.background_distant_castle{background-position:-141px -296px}.background_dusty_canyons{background-position:-282px -296px}.background_dusty_canyons,.background_fairy_ring{background-image:url(spritesmith0.png);width:140px;height:147px}.background_fairy_ring{background-position:-424px 0}.background_forest{background-position:0 -444px}.background_forest,.background_frigid_peak{background-image:url(spritesmith0.png);width:140px;height:147px}.background_frigid_peak{background-position:-424px -148px}.background_graveyard{background-position:-141px -444px}.background_graveyard,.background_harvest_feast{background-image:url(spritesmith0.png);width:140px;height:147px}.background_harvest_feast{background-position:-423px -296px}.background_harvest_fields{background-image:url(spritesmith0.png);background-position:0 0;width:141px;height:147px}.background_haunted_house{background-position:-565px 0;width:140px}.background_haunted_house,.background_ice_cave{background-image:url(spritesmith0.png);height:147px}.background_ice_cave{background-position:-565px -148px;width:141px}.background_iceberg{background-position:0 -592px;width:140px}.background_iceberg,.background_open_waters{background-image:url(spritesmith0.png);height:147px}.background_open_waters{background-position:-141px -592px;width:141px}.background_pumpkin_patch{background-position:-423px -444px}.background_pumpkin_patch,.background_seafarer_ship{background-image:url(spritesmith0.png);width:140px;height:147px}.background_seafarer_ship{background-position:-564px -296px}.background_snowy_pines{background-position:-283px -592px}.background_snowy_pines,.background_south_pole{background-image:url(spritesmith0.png);width:140px;height:147px}.background_south_pole{background-position:-706px 0}.background_starry_skies{background-position:-564px -444px}.background_starry_skies,.background_sunset_meadow{background-image:url(spritesmith0.png);width:140px;height:147px}.background_sunset_meadow{background-position:-707px -148px}.background_thunderstorm{background-image:url(spritesmith0.png);background-position:-424px -592px;width:141px;height:147px}.background_twinkly_lights{background-position:0 -740px;width:141px}.background_twinkly_lights,.background_volcano{background-image:url(spritesmith0.png);height:147px}.background_volcano{background-position:-142px 0;width:140px}.hair_beard_1_TRUred{background-image:url(spritesmith0.png);background-position:-273px -922px;width:90px;height:90px}.customize-option.hair_beard_1_TRUred{background-image:url(spritesmith0.png);background-position:-298px -937px;width:60px;height:60px}.hair_beard_1_aurora{background-image:url(spritesmith0.png);background-position:-597px -774px;width:90px;height:90px}.customize-option.hair_beard_1_aurora{background-image:url(spritesmith0.png);background-position:-622px -789px;width:60px;height:60px}.hair_beard_1_black{background-image:url(spritesmith0.png);background-position:0 -979px;width:90px;height:90px}.customize-option.hair_beard_1_black{background-image:url(spritesmith0.png);background-position:-25px -994px;width:60px;height:60px}.hair_beard_1_blond{background-image:url(spritesmith0.png);background-position:-364px -922px;width:90px;height:90px}.customize-option.hair_beard_1_blond{background-image:url(spritesmith0.png);background-position:-389px -937px;width:60px;height:60px}.hair_beard_1_blue{background-image:url(spritesmith0.png);background-position:-887px -455px;width:90px;height:90px}.customize-option.hair_beard_1_blue{background-image:url(spritesmith0.png);background-position:-912px -470px;width:60px;height:60px}.hair_beard_1_brown{background-image:url(spritesmith0.png);background-position:-748px -660px;width:90px;height:90px}.customize-option.hair_beard_1_brown{background-image:url(spritesmith0.png);background-position:-773px -675px;width:60px;height:60px}.hair_beard_1_candycane{background-image:url(spritesmith0.png);background-position:-506px -865px;width:90px;height:90px}.customize-option.hair_beard_1_candycane{background-image:url(spritesmith0.png);background-position:-531px -880px;width:60px;height:60px}.hair_beard_1_candycorn{background-image:url(spritesmith0.png);background-position:-839px -569px;width:90px;height:90px}.customize-option.hair_beard_1_candycorn{background-image:url(spritesmith0.png);background-position:-864px -584px;width:60px;height:60px}.hair_beard_1_festive{background-image:url(spritesmith0.png);background-position:-978px -273px;width:90px;height:90px}.customize-option.hair_beard_1_festive{background-image:url(spritesmith0.png);background-position:-1003px -288px;width:60px;height:60px}.hair_beard_1_frost{background-image:url(spritesmith0.png);background-position:-91px -1013px;width:90px;height:90px}.customize-option.hair_beard_1_frost{background-image:url(spritesmith0.png);background-position:-116px -1028px;width:60px;height:60px}.hair_beard_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-1029px 0;width:90px;height:90px}.customize-option.hair_beard_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-1054px -15px;width:60px;height:60px}.hair_beard_1_green{background-image:url(spritesmith0.png);background-position:-182px -1013px;width:90px;height:90px}.customize-option.hair_beard_1_green{background-image:url(spritesmith0.png);background-position:-207px -1028px;width:60px;height:60px}.hair_beard_1_halloween{background-image:url(spritesmith0.png);background-position:-1030px -91px;width:90px;height:90px}.customize-option.hair_beard_1_halloween{background-image:url(spritesmith0.png);background-position:-1055px -106px;width:60px;height:60px}.hair_beard_1_holly{background-image:url(spritesmith0.png);background-position:-688px -774px;width:90px;height:90px}.customize-option.hair_beard_1_holly{background-image:url(spritesmith0.png);background-position:-713px -789px;width:60px;height:60px}.hair_beard_1_hollygreen{background-image:url(spritesmith0.png);background-position:-978px -364px;width:90px;height:90px}.customize-option.hair_beard_1_hollygreen{background-image:url(spritesmith0.png);background-position:-1003px -379px;width:60px;height:60px}.hair_beard_1_midnight{background-image:url(spritesmith0.png);background-position:-1030px -182px;width:90px;height:90px}.customize-option.hair_beard_1_midnight{background-image:url(spritesmith0.png);background-position:-1055px -197px;width:60px;height:60px}.hair_beard_1_pblue{background-image:url(spritesmith0.png);background-position:-273px -1013px;width:90px;height:90px}.customize-option.hair_beard_1_pblue{background-image:url(spritesmith0.png);background-position:-298px -1028px;width:60px;height:60px}.hair_beard_1_peppermint{background-image:url(spritesmith0.png);background-position:-597px -865px;width:90px;height:90px}.customize-option.hair_beard_1_peppermint{background-image:url(spritesmith0.png);background-position:-622px -880px;width:60px;height:60px}.hair_beard_1_pgreen{background-image:url(spritesmith0.png);background-position:-455px -956px;width:90px;height:90px}.customize-option.hair_beard_1_pgreen{background-image:url(spritesmith0.png);background-position:-480px -971px;width:60px;height:60px}.hair_beard_1_porange{background-image:url(spritesmith0.png);background-position:-839px -660px;width:90px;height:90px}.customize-option.hair_beard_1_porange{background-image:url(spritesmith0.png);background-position:-864px -675px;width:60px;height:60px}.hair_beard_1_ppink{background-image:url(spritesmith0.png);background-position:0 -1070px;width:90px;height:90px}.customize-option.hair_beard_1_ppink{background-image:url(spritesmith0.png);background-position:-25px -1085px;width:60px;height:60px}.hair_beard_1_ppurple{background-image:url(spritesmith0.png);background-position:-364px -1013px;width:90px;height:90px}.customize-option.hair_beard_1_ppurple{background-image:url(spritesmith0.png);background-position:-389px -1028px;width:60px;height:60px}.hair_beard_1_pumpkin{background-image:url(spritesmith0.png);background-position:-930px -546px;width:90px;height:90px}.customize-option.hair_beard_1_pumpkin{background-image:url(spritesmith0.png);background-position:-955px -561px;width:60px;height:60px}.hair_beard_1_purple{background-image:url(spritesmith0.png);background-position:-978px -455px;width:90px;height:90px}.customize-option.hair_beard_1_purple{background-image:url(spritesmith0.png);background-position:-1003px -470px;width:60px;height:60px}.hair_beard_1_pyellow{background-image:url(spritesmith0.png);background-position:-779px -751px;width:90px;height:90px}.customize-option.hair_beard_1_pyellow{background-image:url(spritesmith0.png);background-position:-804px -766px;width:60px;height:60px}.hair_beard_1_rainbow{background-image:url(spritesmith0.png);background-position:-546px -956px;width:90px;height:90px}.customize-option.hair_beard_1_rainbow{background-image:url(spritesmith0.png);background-position:-571px -971px;width:60px;height:60px}.hair_beard_1_red{background-image:url(spritesmith0.png);background-position:-1069px -273px;width:90px;height:90px}.customize-option.hair_beard_1_red{background-image:url(spritesmith0.png);background-position:-1094px -288px;width:60px;height:60px}.hair_beard_1_snowy{background-image:url(spritesmith0.png);background-position:-688px -865px;width:90px;height:90px}.customize-option.hair_beard_1_snowy{background-image:url(spritesmith0.png);background-position:-713px -880px;width:60px;height:60px}.hair_beard_1_white{background-image:url(spritesmith0.png);background-position:-91px -1104px;width:90px;height:90px}.customize-option.hair_beard_1_white{background-image:url(spritesmith0.png);background-position:-116px -1119px;width:60px;height:60px}.hair_beard_1_winternight{background-image:url(spritesmith0.png);background-position:-182px -1104px;width:90px;height:90px}.customize-option.hair_beard_1_winternight{background-image:url(spritesmith0.png);background-position:-207px -1119px;width:60px;height:60px}.hair_beard_1_winterstar{background-image:url(spritesmith0.png);background-position:-1120px 0;width:90px;height:90px}.customize-option.hair_beard_1_winterstar{background-image:url(spritesmith0.png);background-position:-1145px -15px;width:60px;height:60px}.hair_beard_1_yellow{background-image:url(spritesmith0.png);background-position:-1121px -91px;width:90px;height:90px}.customize-option.hair_beard_1_yellow{background-image:url(spritesmith0.png);background-position:-1146px -106px;width:60px;height:60px}.hair_beard_1_zombie{background-image:url(spritesmith0.png);background-position:-930px -637px;width:90px;height:90px}.customize-option.hair_beard_1_zombie{background-image:url(spritesmith0.png);background-position:-955px -652px;width:60px;height:60px}.hair_beard_2_TRUred{background-image:url(spritesmith0.png);background-position:-1069px -364px;width:90px;height:90px}.customize-option.hair_beard_2_TRUred{background-image:url(spritesmith0.png);background-position:-1094px -379px;width:60px;height:60px}.hair_beard_2_aurora{background-image:url(spritesmith0.png);background-position:-1121px -182px;width:90px;height:90px}.customize-option.hair_beard_2_aurora{background-image:url(spritesmith0.png);background-position:-1146px -197px;width:60px;height:60px}.hair_beard_2_black{background-image:url(spritesmith0.png);background-position:-273px -1104px;width:90px;height:90px}.customize-option.hair_beard_2_black{background-image:url(spritesmith0.png);background-position:-298px -1119px;width:60px;height:60px}.hair_beard_2_blond{background-image:url(spritesmith0.png);background-position:-455px -1047px;width:90px;height:90px}.customize-option.hair_beard_2_blond{background-image:url(spritesmith0.png);background-position:-480px -1062px;width:60px;height:60px}.hair_beard_2_blue{background-image:url(spritesmith0.png);background-position:-779px -842px;width:90px;height:90px}.customize-option.hair_beard_2_blue{background-image:url(spritesmith0.png);background-position:-804px -857px;width:60px;height:60px}.hair_beard_2_brown{background-image:url(spritesmith0.png);background-position:-637px -956px;width:90px;height:90px}.customize-option.hair_beard_2_brown{background-image:url(spritesmith0.png);background-position:-662px -971px;width:60px;height:60px}.hair_beard_2_candycane{background-image:url(spritesmith0.png);background-position:-870px -751px;width:90px;height:90px}.customize-option.hair_beard_2_candycane{background-image:url(spritesmith0.png);background-position:-895px -766px;width:60px;height:60px}.hair_beard_2_candycorn{background-image:url(spritesmith0.png);background-position:-1021px -546px;width:90px;height:90px}.customize-option.hair_beard_2_candycorn{background-image:url(spritesmith0.png);background-position:-1046px -561px;width:60px;height:60px}.hair_beard_2_festive{background-image:url(spritesmith0.png);background-position:0 -1161px;width:90px;height:90px}.customize-option.hair_beard_2_festive{background-image:url(spritesmith0.png);background-position:-25px -1176px;width:60px;height:60px}.hair_beard_2_frost{background-image:url(spritesmith0.png);background-position:-1069px -455px;width:90px;height:90px}.customize-option.hair_beard_2_frost{background-image:url(spritesmith0.png);background-position:-1094px -470px;width:60px;height:60px}.hair_beard_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-364px -1104px;width:90px;height:90px}.customize-option.hair_beard_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-389px -1119px;width:60px;height:60px}.hair_beard_2_green{background-image:url(spritesmith0.png);background-position:-546px -1047px;width:90px;height:90px}.customize-option.hair_beard_2_green{background-image:url(spritesmith0.png);background-position:-571px -1062px;width:60px;height:60px}.hair_beard_2_halloween{background-image:url(spritesmith0.png);background-position:-1160px -273px;width:90px;height:90px}.customize-option.hair_beard_2_halloween{background-image:url(spritesmith0.png);background-position:-1185px -288px;width:60px;height:60px}.hair_beard_2_holly{background-image:url(spritesmith0.png);background-position:-91px -1195px;width:90px;height:90px}.customize-option.hair_beard_2_holly{background-image:url(spritesmith0.png);background-position:-116px -1210px;width:60px;height:60px}.hair_beard_2_hollygreen{background-image:url(spritesmith0.png);background-position:-728px -956px;width:90px;height:90px}.customize-option.hair_beard_2_hollygreen{background-image:url(spritesmith0.png);background-position:-753px -971px;width:60px;height:60px}.hair_beard_2_midnight{background-image:url(spritesmith0.png);background-position:-1021px -637px;width:90px;height:90px}.customize-option.hair_beard_2_midnight{background-image:url(spritesmith0.png);background-position:-1046px -652px;width:60px;height:60px}.hair_beard_2_pblue{background-image:url(spritesmith0.png);background-position:-961px -728px;width:90px;height:90px}.customize-option.hair_beard_2_pblue{background-image:url(spritesmith0.png);background-position:-986px -743px;width:60px;height:60px}.hair_beard_2_peppermint{background-image:url(spritesmith0.png);background-position:-182px -1195px;width:90px;height:90px}.customize-option.hair_beard_2_peppermint{background-image:url(spritesmith0.png);background-position:-207px -1210px;width:60px;height:60px}.hair_beard_2_pgreen{background-image:url(spritesmith0.png);background-position:-870px -842px;width:90px;height:90px}.customize-option.hair_beard_2_pgreen{background-image:url(spritesmith0.png);background-position:-895px -857px;width:60px;height:60px}.hair_beard_2_porange{background-image:url(spritesmith0.png);background-position:-1211px 0;width:90px;height:90px}.customize-option.hair_beard_2_porange{background-image:url(spritesmith0.png);background-position:-1236px -15px;width:60px;height:60px}.hair_beard_2_ppink{background-image:url(spritesmith0.png);background-position:-1212px -91px;width:90px;height:90px}.customize-option.hair_beard_2_ppink{background-image:url(spritesmith0.png);background-position:-1237px -106px;width:60px;height:60px}.hair_beard_2_ppurple{background-image:url(spritesmith0.png);background-position:-1160px -364px;width:90px;height:90px}.customize-option.hair_beard_2_ppurple{background-image:url(spritesmith0.png);background-position:-1185px -379px;width:60px;height:60px}.hair_beard_2_pumpkin{background-image:url(spritesmith0.png);background-position:-637px -1047px;width:90px;height:90px}.customize-option.hair_beard_2_pumpkin{background-image:url(spritesmith0.png);background-position:-662px -1062px;width:60px;height:60px}.hair_beard_2_purple{background-image:url(spritesmith0.png);background-position:-1212px -182px;width:90px;height:90px}.customize-option.hair_beard_2_purple{background-image:url(spritesmith0.png);background-position:-1237px -197px;width:60px;height:60px}.hair_beard_2_pyellow{background-image:url(spritesmith0.png);background-position:-455px -1138px;width:90px;height:90px}.customize-option.hair_beard_2_pyellow{background-image:url(spritesmith0.png);background-position:-480px -1153px;width:60px;height:60px}.hair_beard_2_rainbow{background-image:url(spritesmith0.png);background-position:-273px -1195px;width:90px;height:90px}.customize-option.hair_beard_2_rainbow{background-image:url(spritesmith0.png);background-position:-298px -1210px;width:60px;height:60px}.hair_beard_2_red{background-image:url(spritesmith0.png);background-position:-1112px -546px;width:90px;height:90px}.customize-option.hair_beard_2_red{background-image:url(spritesmith0.png);background-position:-1137px -561px;width:60px;height:60px}.hair_beard_2_snowy{background-image:url(spritesmith0.png);background-position:-819px -933px;width:90px;height:90px}.customize-option.hair_beard_2_snowy{background-image:url(spritesmith0.png);background-position:-844px -948px;width:60px;height:60px}.hair_beard_2_white{background-image:url(spritesmith0.png);background-position:-1160px -455px;width:90px;height:90px}.customize-option.hair_beard_2_white{background-image:url(spritesmith0.png);background-position:-1185px -470px;width:60px;height:60px}.hair_beard_2_winternight{background-image:url(spritesmith0.png);background-position:-364px -1195px;width:90px;height:90px}.customize-option.hair_beard_2_winternight{background-image:url(spritesmith0.png);background-position:-389px -1210px;width:60px;height:60px}.hair_beard_2_winterstar{background-image:url(spritesmith0.png);background-position:0 -1252px;width:90px;height:90px}.customize-option.hair_beard_2_winterstar{background-image:url(spritesmith0.png);background-position:-25px -1267px;width:60px;height:60px}.hair_beard_2_yellow{background-image:url(spritesmith0.png);background-position:-546px -1138px;width:90px;height:90px}.customize-option.hair_beard_2_yellow{background-image:url(spritesmith0.png);background-position:-571px -1153px;width:60px;height:60px}.hair_beard_2_zombie{background-image:url(spritesmith0.png);background-position:-961px -819px;width:90px;height:90px}.customize-option.hair_beard_2_zombie{background-image:url(spritesmith0.png);background-position:-986px -834px;width:60px;height:60px}.hair_beard_3_TRUred{background-image:url(spritesmith0.png);background-position:-728px -1047px;width:90px;height:90px}.customize-option.hair_beard_3_TRUred{background-image:url(spritesmith0.png);background-position:-753px -1062px;width:60px;height:60px}.hair_beard_3_aurora{background-image:url(spritesmith0.png);background-position:-1052px -728px;width:90px;height:90px}.customize-option.hair_beard_3_aurora{background-image:url(spritesmith0.png);background-position:-1077px -743px;width:60px;height:60px}.hair_beard_3_black{background-image:url(spritesmith0.png);background-position:-1251px -273px;width:90px;height:90px}.customize-option.hair_beard_3_black{background-image:url(spritesmith0.png);background-position:-1276px -288px;width:60px;height:60px}.hair_beard_3_blond{background-image:url(spritesmith0.png);background-position:-1112px -637px;width:90px;height:90px}.customize-option.hair_beard_3_blond{background-image:url(spritesmith0.png);background-position:-1137px -652px;width:60px;height:60px}.hair_beard_3_blue{background-image:url(spritesmith0.png);background-position:-91px -1286px;width:90px;height:90px}.customize-option.hair_beard_3_blue{background-image:url(spritesmith0.png);background-position:-116px -1301px;width:60px;height:60px}.hair_beard_3_brown{background-image:url(spritesmith0.png);background-position:-182px -1286px;width:90px;height:90px}.customize-option.hair_beard_3_brown{background-image:url(spritesmith0.png);background-position:-207px -1301px;width:60px;height:60px}.hair_beard_3_candycane{background-image:url(spritesmith0.png);background-position:-1302px 0;width:90px;height:90px}.customize-option.hair_beard_3_candycane{background-image:url(spritesmith0.png);background-position:-1327px -15px;width:60px;height:60px}.hair_beard_3_candycorn{background-image:url(spritesmith0.png);background-position:-1251px -364px;width:90px;height:90px}.customize-option.hair_beard_3_candycorn{background-image:url(spritesmith0.png);background-position:-1276px -379px;width:60px;height:60px}.hair_beard_3_festive{background-image:url(spritesmith0.png);background-position:-910px -933px;width:90px;height:90px}.customize-option.hair_beard_3_festive{background-image:url(spritesmith0.png);background-position:-935px -948px;width:60px;height:60px}.hair_beard_3_frost{background-image:url(spritesmith0.png);background-position:-637px -1138px;width:90px;height:90px}.customize-option.hair_beard_3_frost{background-image:url(spritesmith0.png);background-position:-662px -1153px;width:60px;height:60px}.hair_beard_3_ghostwhite{background-image:url(spritesmith0.png);background-position:-1303px -91px;width:90px;height:90px}.customize-option.hair_beard_3_ghostwhite{background-image:url(spritesmith0.png);background-position:-1328px -106px;width:60px;height:60px}.hair_beard_3_green{background-image:url(spritesmith0.png);background-position:-455px -1229px;width:90px;height:90px}.customize-option.hair_beard_3_green{background-image:url(spritesmith0.png);background-position:-480px -1244px;width:60px;height:60px}.hair_beard_3_halloween{background-image:url(spritesmith0.png);background-position:-819px -1024px;width:90px;height:90px}.customize-option.hair_beard_3_halloween{background-image:url(spritesmith0.png);background-position:-844px -1039px;width:60px;height:60px}.hair_beard_3_holly{background-image:url(spritesmith0.png);background-position:-273px -1286px;width:90px;height:90px}.customize-option.hair_beard_3_holly{background-image:url(spritesmith0.png);background-position:-298px -1301px;width:60px;height:60px}.hair_beard_3_hollygreen{background-image:url(spritesmith0.png);background-position:-1303px -182px;width:90px;height:90px}.customize-option.hair_beard_3_hollygreen{background-image:url(spritesmith0.png);background-position:-1328px -197px;width:60px;height:60px}.hair_beard_3_midnight{background-image:url(spritesmith0.png);background-position:-1203px -546px;width:90px;height:90px}.customize-option.hair_beard_3_midnight{background-image:url(spritesmith0.png);background-position:-1228px -561px;width:60px;height:60px}.hair_beard_3_pblue{background-image:url(spritesmith0.png);background-position:-1251px -455px;width:90px;height:90px}.customize-option.hair_beard_3_pblue{background-image:url(spritesmith0.png);background-position:-1276px -470px;width:60px;height:60px}.hair_beard_3_peppermint{background-image:url(spritesmith0.png);background-position:-1052px -819px;width:90px;height:90px}.customize-option.hair_beard_3_peppermint{background-image:url(spritesmith0.png);background-position:-1077px -834px;width:60px;height:60px}.hair_beard_3_pgreen{background-image:url(spritesmith0.png);background-position:-364px -1286px;width:90px;height:90px}.customize-option.hair_beard_3_pgreen{background-image:url(spritesmith0.png);background-position:-389px -1301px;width:60px;height:60px}.hair_beard_3_porange{background-image:url(spritesmith0.png);background-position:0 -1343px;width:90px;height:90px}.customize-option.hair_beard_3_porange{background-image:url(spritesmith0.png);background-position:-25px -1358px;width:60px;height:60px}.hair_beard_3_ppink{background-image:url(spritesmith0.png);background-position:-546px -1229px;width:90px;height:90px}.customize-option.hair_beard_3_ppink{background-image:url(spritesmith0.png);background-position:-571px -1244px;width:60px;height:60px}.hair_beard_3_ppurple{background-image:url(spritesmith0.png);background-position:-728px -1138px;width:90px;height:90px}.customize-option.hair_beard_3_ppurple{background-image:url(spritesmith0.png);background-position:-753px -1153px;width:60px;height:60px}.hair_beard_3_pumpkin{background-image:url(spritesmith0.png);background-position:-1001px -910px;width:90px;height:90px}.customize-option.hair_beard_3_pumpkin{background-image:url(spritesmith0.png);background-position:-1026px -925px;width:60px;height:60px}.hair_beard_3_purple{background-image:url(spritesmith0.png);background-position:-1143px -728px;width:90px;height:90px}.customize-option.hair_beard_3_purple{background-image:url(spritesmith0.png);background-position:-1168px -743px;width:60px;height:60px}.hair_beard_3_pyellow{background-image:url(spritesmith0.png);background-position:-1203px -637px;width:90px;height:90px}.customize-option.hair_beard_3_pyellow{background-image:url(spritesmith0.png);background-position:-1228px -652px;width:60px;height:60px}.hair_beard_3_rainbow{background-image:url(spritesmith0.png);background-position:-1342px -273px;width:90px;height:90px}.customize-option.hair_beard_3_rainbow{background-image:url(spritesmith0.png);background-position:-1367px -288px;width:60px;height:60px}.hair_beard_3_red{background-image:url(spritesmith0.png);background-position:-910px -1024px;width:90px;height:90px}.customize-option.hair_beard_3_red{background-image:url(spritesmith0.png);background-position:-935px -1039px;width:60px;height:60px}.hair_beard_3_snowy{background-image:url(spritesmith0.png);background-position:-91px -1377px;width:90px;height:90px}.customize-option.hair_beard_3_snowy{background-image:url(spritesmith0.png);background-position:-116px -1392px;width:60px;height:60px}.hair_beard_3_white{background-image:url(spritesmith0.png);background-position:-819px -1115px;width:90px;height:90px}.customize-option.hair_beard_3_white{background-image:url(spritesmith0.png);background-position:-844px -1130px;width:60px;height:60px}.hair_beard_3_winternight{background-image:url(spritesmith0.png);background-position:-637px -1229px;width:90px;height:90px}.customize-option.hair_beard_3_winternight{background-image:url(spritesmith0.png);background-position:-662px -1244px;width:60px;height:60px}.hair_beard_3_winterstar{background-image:url(spritesmith0.png);background-position:-182px -1377px;width:90px;height:90px}.customize-option.hair_beard_3_winterstar{background-image:url(spritesmith0.png);background-position:-207px -1392px;width:60px;height:60px}.hair_beard_3_yellow{background-image:url(spritesmith0.png);background-position:-1342px -364px;width:90px;height:90px}.customize-option.hair_beard_3_yellow{background-image:url(spritesmith0.png);background-position:-1367px -379px;width:60px;height:60px}.hair_beard_3_zombie{background-image:url(spritesmith0.png);background-position:-1393px 0;width:90px;height:90px}.customize-option.hair_beard_3_zombie{background-image:url(spritesmith0.png);background-position:-1418px -15px;width:60px;height:60px}.hair_mustache_1_TRUred{background-image:url(spritesmith0.png);background-position:-455px -1320px;width:90px;height:90px}.customize-option.hair_mustache_1_TRUred{background-image:url(spritesmith0.png);background-position:-480px -1335px;width:60px;height:60px}.hair_mustache_1_aurora{background-image:url(spritesmith0.png);background-position:-1394px -91px;width:90px;height:90px}.customize-option.hair_mustache_1_aurora{background-image:url(spritesmith0.png);background-position:-1419px -106px;width:60px;height:60px}.hair_mustache_1_black{background-image:url(spritesmith0.png);background-position:-273px -1377px;width:90px;height:90px}.customize-option.hair_mustache_1_black{background-image:url(spritesmith0.png);background-position:-298px -1392px;width:60px;height:60px}.hair_mustache_1_blond{background-image:url(spritesmith0.png);background-position:-1294px -546px;width:90px;height:90px}.customize-option.hair_mustache_1_blond{background-image:url(spritesmith0.png);background-position:-1319px -561px;width:60px;height:60px}.hair_mustache_1_blue{background-image:url(spritesmith0.png);background-position:-1394px -182px;width:90px;height:90px}.customize-option.hair_mustache_1_blue{background-image:url(spritesmith0.png);background-position:-1419px -197px;width:60px;height:60px}.hair_mustache_1_brown{background-image:url(spritesmith0.png);background-position:-1143px -819px;width:90px;height:90px}.customize-option.hair_mustache_1_brown{background-image:url(spritesmith0.png);background-position:-1168px -834px;width:60px;height:60px}.hair_mustache_1_candycane{background-image:url(spritesmith0.png);background-position:-1001px -1001px;width:90px;height:90px}.customize-option.hair_mustache_1_candycane{background-image:url(spritesmith0.png);background-position:-1026px -1016px;width:60px;height:60px}.hair_mustache_1_candycorn{background-image:url(spritesmith0.png);background-position:-1342px -455px;width:90px;height:90px}.customize-option.hair_mustache_1_candycorn{background-image:url(spritesmith0.png);background-position:-1367px -470px;width:60px;height:60px}.hair_mustache_1_festive{background-image:url(spritesmith0.png);background-position:-1092px -910px;width:90px;height:90px}.customize-option.hair_mustache_1_festive{background-image:url(spritesmith0.png);background-position:-1117px -925px;width:60px;height:60px}.hair_mustache_1_frost{background-image:url(spritesmith0.png);background-position:-364px -1377px;width:90px;height:90px}.customize-option.hair_mustache_1_frost{background-image:url(spritesmith0.png);background-position:-389px -1392px;width:60px;height:60px}.hair_mustache_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-728px -1229px;width:90px;height:90px}.customize-option.hair_mustache_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-753px -1244px;width:60px;height:60px}.hair_mustache_1_green{background-image:url(spritesmith0.png);background-position:-546px -1320px;width:90px;height:90px}.customize-option.hair_mustache_1_green{background-image:url(spritesmith0.png);background-position:-571px -1335px;width:60px;height:60px}.hair_mustache_1_halloween{background-image:url(spritesmith0.png);background-position:-1234px -728px;width:90px;height:90px}.customize-option.hair_mustache_1_halloween{background-image:url(spritesmith0.png);background-position:-1259px -743px;width:60px;height:60px}.hair_mustache_1_holly{background-image:url(spritesmith0.png);background-position:0 -1434px;width:90px;height:90px}.customize-option.hair_mustache_1_holly{background-image:url(spritesmith0.png);background-position:-25px -1449px;width:60px;height:60px}.hair_mustache_1_hollygreen{background-image:url(spritesmith0.png);background-position:-910px -1115px;width:90px;height:90px}.customize-option.hair_mustache_1_hollygreen{background-image:url(spritesmith0.png);background-position:-935px -1130px;width:60px;height:60px}.hair_mustache_1_midnight{background-image:url(spritesmith0.png);background-position:-1294px -637px;width:90px;height:90px}.customize-option.hair_mustache_1_midnight{background-image:url(spritesmith0.png);background-position:-1319px -652px;width:60px;height:60px}.hair_mustache_1_pblue{background-image:url(spritesmith0.png);background-position:-819px -1206px;width:90px;height:90px}.customize-option.hair_mustache_1_pblue{background-image:url(spritesmith0.png);background-position:-844px -1221px;width:60px;height:60px}.hair_mustache_1_peppermint{background-image:url(spritesmith0.png);background-position:-1433px -273px;width:90px;height:90px}.customize-option.hair_mustache_1_peppermint{background-image:url(spritesmith0.png);background-position:-1458px -288px;width:60px;height:60px}.hair_mustache_1_pgreen{background-image:url(spritesmith0.png);background-position:-637px -1320px;width:90px;height:90px}.customize-option.hair_mustache_1_pgreen{background-image:url(spritesmith0.png);background-position:-662px -1335px;width:60px;height:60px}.hair_mustache_1_porange{background-image:url(spritesmith0.png);background-position:-91px -1468px;width:90px;height:90px}.customize-option.hair_mustache_1_porange{background-image:url(spritesmith0.png);background-position:-116px -1483px;width:60px;height:60px}.hair_mustache_1_ppink{background-image:url(spritesmith0.png);background-position:-1433px -364px;width:90px;height:90px}.customize-option.hair_mustache_1_ppink{background-image:url(spritesmith0.png);background-position:-1458px -379px;width:60px;height:60px}.hair_mustache_1_ppurple{background-image:url(spritesmith0.png);background-position:-182px -1468px;width:90px;height:90px}.customize-option.hair_mustache_1_ppurple{background-image:url(spritesmith0.png);background-position:-207px -1483px;width:60px;height:60px}.hair_mustache_1_pumpkin{background-image:url(spritesmith0.png);background-position:-1234px -819px;width:90px;height:90px}.customize-option.hair_mustache_1_pumpkin{background-image:url(spritesmith0.png);background-position:-1259px -834px;width:60px;height:60px}.hair_mustache_1_purple{background-image:url(spritesmith0.png);background-position:-1001px -1092px;width:90px;height:90px}.customize-option.hair_mustache_1_purple{background-image:url(spritesmith0.png);background-position:-1026px -1107px;width:60px;height:60px}.hair_mustache_1_pyellow{background-image:url(spritesmith0.png);background-position:-1092px -1001px;width:90px;height:90px}.customize-option.hair_mustache_1_pyellow{background-image:url(spritesmith0.png);background-position:-1117px -1016px;width:60px;height:60px}.hair_mustache_1_rainbow{background-image:url(spritesmith0.png);background-position:-455px -1411px;width:90px;height:90px}.customize-option.hair_mustache_1_rainbow{background-image:url(spritesmith0.png);background-position:-480px -1426px;width:60px;height:60px}.hair_mustache_1_red{background-image:url(spritesmith0.png);background-position:-1484px 0;width:90px;height:90px}.customize-option.hair_mustache_1_red{background-image:url(spritesmith0.png);background-position:-1509px -15px;width:60px;height:60px}.hair_mustache_1_snowy{background-image:url(spritesmith0.png);background-position:-142px -740px;width:90px;height:90px}.customize-option.hair_mustache_1_snowy{background-image:url(spritesmith0.png);background-position:-167px -755px;width:60px;height:60px}.hair_mustache_1_white{background-image:url(spritesmith0.png);background-position:-1385px -546px;width:90px;height:90px}.customize-option.hair_mustache_1_white{background-image:url(spritesmith0.png);background-position:-1410px -561px;width:60px;height:60px}.hair_mustache_1_winternight{background-image:url(spritesmith0.png);background-position:-1183px -910px;width:90px;height:90px}.customize-option.hair_mustache_1_winternight{background-image:url(spritesmith0.png);background-position:-1208px -925px;width:60px;height:60px}.hair_mustache_1_winterstar{background-image:url(spritesmith0.png);background-position:-273px -1468px;width:90px;height:90px}.customize-option.hair_mustache_1_winterstar{background-image:url(spritesmith0.png);background-position:-298px -1483px;width:60px;height:60px}.hair_mustache_1_yellow{background-image:url(spritesmith0.png);background-position:-1485px -182px;width:90px;height:90px}.customize-option.hair_mustache_1_yellow{background-image:url(spritesmith0.png);background-position:-1510px -197px;width:60px;height:60px}.hair_mustache_1_zombie{background-image:url(spritesmith0.png);background-position:-1433px -455px;width:90px;height:90px}.customize-option.hair_mustache_1_zombie{background-image:url(spritesmith0.png);background-position:-1458px -470px;width:60px;height:60px}.hair_mustache_2_TRUred{background-image:url(spritesmith0.png);background-position:-728px -1320px;width:90px;height:90px}.customize-option.hair_mustache_2_TRUred{background-image:url(spritesmith0.png);background-position:-753px -1335px;width:60px;height:60px}.hair_mustache_2_aurora{background-image:url(spritesmith0.png);background-position:-910px -1206px;width:90px;height:90px}.customize-option.hair_mustache_2_aurora{background-image:url(spritesmith0.png);background-position:-935px -1221px;width:60px;height:60px}.hair_mustache_2_black{background-image:url(spritesmith0.png);background-position:-1325px -728px;width:90px;height:90px}.customize-option.hair_mustache_2_black{background-image:url(spritesmith0.png);background-position:-1350px -743px;width:60px;height:60px}.hair_mustache_2_blond{background-image:url(spritesmith0.png);background-position:-364px -1468px;width:90px;height:90px}.customize-option.hair_mustache_2_blond{background-image:url(spritesmith0.png);background-position:-389px -1483px;width:60px;height:60px}.hair_mustache_2_blue{background-image:url(spritesmith0.png);background-position:-546px -1411px;width:90px;height:90px}.customize-option.hair_mustache_2_blue{background-image:url(spritesmith0.png);background-position:-571px -1426px;width:60px;height:60px}.hair_mustache_2_brown{background-image:url(spritesmith0.png);background-position:-1385px -637px;width:90px;height:90px}.customize-option.hair_mustache_2_brown{background-image:url(spritesmith0.png);background-position:-1410px -652px;width:60px;height:60px}.hair_mustache_2_candycane{background-image:url(spritesmith0.png);background-position:0 -1525px;width:90px;height:90px}.customize-option.hair_mustache_2_candycane{background-image:url(spritesmith0.png);background-position:-25px -1540px;width:60px;height:60px}.hair_mustache_2_candycorn{background-image:url(spritesmith0.png);background-position:-819px -1297px;width:90px;height:90px}.customize-option.hair_mustache_2_candycorn{background-image:url(spritesmith0.png);background-position:-844px -1312px;width:60px;height:60px}.hair_mustache_2_festive{background-image:url(spritesmith0.png);background-position:-1092px -1092px;width:90px;height:90px}.customize-option.hair_mustache_2_festive{background-image:url(spritesmith0.png);background-position:-1117px -1107px;width:60px;height:60px}.hair_mustache_2_frost{background-image:url(spritesmith0.png);background-position:-637px -1411px;width:90px;height:90px}.customize-option.hair_mustache_2_frost{background-image:url(spritesmith0.png);background-position:-662px -1426px;width:60px;height:60px}.hair_mustache_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-1524px -273px;width:90px;height:90px}.customize-option.hair_mustache_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-1549px -288px;width:60px;height:60px}.hair_mustache_2_green{background-image:url(spritesmith0.png);background-position:-1001px -1183px;width:90px;height:90px}.customize-option.hair_mustache_2_green{background-image:url(spritesmith0.png);background-position:-1026px -1198px;width:60px;height:60px}.hair_mustache_2_halloween{background-image:url(spritesmith0.png);background-position:-1183px -1001px;width:90px;height:90px}.customize-option.hair_mustache_2_halloween{background-image:url(spritesmith0.png);background-position:-1208px -1016px;width:60px;height:60px}.hair_mustache_2_holly{background-image:url(spritesmith0.png);background-position:-1325px -819px;width:90px;height:90px}.customize-option.hair_mustache_2_holly{background-image:url(spritesmith0.png);background-position:-1350px -834px;width:60px;height:60px}.hair_mustache_2_hollygreen{background-image:url(spritesmith0.png);background-position:-91px -1559px;width:90px;height:90px}.customize-option.hair_mustache_2_hollygreen{background-image:url(spritesmith0.png);background-position:-116px -1574px;width:60px;height:60px}.hair_mustache_2_midnight{background-image:url(spritesmith0.png);background-position:-1274px -910px;width:90px;height:90px}.customize-option.hair_mustache_2_midnight{background-image:url(spritesmith0.png);background-position:-1299px -925px;width:60px;height:60px}.hair_mustache_2_pblue{background-image:url(spritesmith0.png);background-position:-1524px -364px;width:90px;height:90px}.customize-option.hair_mustache_2_pblue{background-image:url(spritesmith0.png);background-position:-1549px -379px;width:60px;height:60px}.hair_mustache_2_peppermint{background-image:url(spritesmith0.png);background-position:-455px -1502px;width:90px;height:90px}.customize-option.hair_mustache_2_peppermint{background-image:url(spritesmith0.png);background-position:-480px -1517px;width:60px;height:60px}.hair_mustache_2_pgreen{background-image:url(spritesmith0.png);background-position:-182px -1559px;width:90px;height:90px}.customize-option.hair_mustache_2_pgreen{background-image:url(spritesmith0.png);background-position:-207px -1574px;width:60px;height:60px}.hair_mustache_2_porange{background-image:url(spritesmith0.png);background-position:-1476px -546px;width:90px;height:90px}.customize-option.hair_mustache_2_porange{background-image:url(spritesmith0.png);background-position:-1501px -561px;width:60px;height:60px}.hair_mustache_2_ppink{background-image:url(spritesmith0.png);background-position:-1575px 0;width:90px;height:90px}.customize-option.hair_mustache_2_ppink{background-image:url(spritesmith0.png);background-position:-1600px -15px;width:60px;height:60px}.hair_mustache_2_ppurple{background-image:url(spritesmith0.png);background-position:-1576px -91px;width:90px;height:90px}.customize-option.hair_mustache_2_ppurple{background-image:url(spritesmith0.png);background-position:-1601px -106px;width:60px;height:60px}.hair_mustache_2_pumpkin{background-image:url(spritesmith0.png);background-position:-273px -1559px;width:90px;height:90px}.customize-option.hair_mustache_2_pumpkin{background-image:url(spritesmith0.png);background-position:-298px -1574px;width:60px;height:60px}.hair_mustache_2_purple{background-image:url(spritesmith0.png);background-position:-910px -1297px;width:90px;height:90px}.customize-option.hair_mustache_2_purple{background-image:url(spritesmith0.png);background-position:-935px -1312px;width:60px;height:60px}.hair_mustache_2_pyellow{background-image:url(spritesmith0.png);background-position:-1576px -182px;width:90px;height:90px}.customize-option.hair_mustache_2_pyellow{background-image:url(spritesmith0.png);background-position:-1601px -197px;width:60px;height:60px}.hair_mustache_2_rainbow{background-image:url(spritesmith0.png);background-position:-728px -1411px;width:90px;height:90px}.customize-option.hair_mustache_2_rainbow{background-image:url(spritesmith0.png);background-position:-753px -1426px;width:60px;height:60px}.hair_mustache_2_red{background-image:url(spritesmith0.png);background-position:-1524px -455px;width:90px;height:90px}.customize-option.hair_mustache_2_red{background-image:url(spritesmith0.png);background-position:-1549px -470px;width:60px;height:60px}.hair_mustache_2_snowy{background-image:url(spritesmith0.png);background-position:-1416px -728px;width:90px;height:90px}.customize-option.hair_mustache_2_snowy{background-image:url(spritesmith0.png);background-position:-1441px -743px;width:60px;height:60px}.hair_mustache_2_white{background-image:url(spritesmith0.png);background-position:-546px -1502px;width:90px;height:90px}.customize-option.hair_mustache_2_white{background-image:url(spritesmith0.png);background-position:-571px -1517px;width:60px;height:60px}.hair_mustache_2_winternight{background-image:url(spritesmith0.png);background-position:-364px -1559px;width:90px;height:90px}.customize-option.hair_mustache_2_winternight{background-image:url(spritesmith0.png);background-position:-389px -1574px;width:60px;height:60px}.hair_mustache_2_winterstar{background-image:url(spritesmith0.png);background-position:-1476px -637px;width:90px;height:90px}.customize-option.hair_mustache_2_winterstar{background-image:url(spritesmith0.png);background-position:-1501px -652px;width:60px;height:60px}.hair_mustache_2_yellow{background-image:url(spritesmith0.png);background-position:-1092px -1183px;width:90px;height:90px}.customize-option.hair_mustache_2_yellow{background-image:url(spritesmith0.png);background-position:-1117px -1198px;width:60px;height:60px}.hair_mustache_2_zombie{background-image:url(spritesmith0.png);background-position:-1183px -1092px;width:90px;height:90px}.customize-option.hair_mustache_2_zombie{background-image:url(spritesmith0.png);background-position:-1208px -1107px;width:60px;height:60px}.hair_flower_1{background-image:url(spritesmith0.png);background-position:-819px -1388px;width:90px;height:90px}.customize-option.hair_flower_1{background-image:url(spritesmith0.png);background-position:-844px -1403px;width:60px;height:60px}.hair_flower_2{background-image:url(spritesmith0.png);background-position:0 -1616px;width:90px;height:90px}.customize-option.hair_flower_2{background-image:url(spritesmith0.png);background-position:-25px -1631px;width:60px;height:60px}.hair_flower_3{background-image:url(spritesmith0.png);background-position:-1001px -1274px;width:90px;height:90px}.customize-option.hair_flower_3{background-image:url(spritesmith0.png);background-position:-1026px -1289px;width:60px;height:60px}.hair_flower_4{background-image:url(spritesmith0.png);background-position:-1274px -1001px;width:90px;height:90px}.customize-option.hair_flower_4{background-image:url(spritesmith0.png);background-position:-1299px -1016px;width:60px;height:60px}.hair_flower_5{background-image:url(spritesmith0.png);background-position:-637px -1502px;width:90px;height:90px}.customize-option.hair_flower_5{background-image:url(spritesmith0.png);background-position:-662px -1517px;width:60px;height:60px}.hair_flower_6{background-image:url(spritesmith0.png);background-position:-1416px -819px;width:90px;height:90px}.customize-option.hair_flower_6{background-image:url(spritesmith0.png);background-position:-1441px -834px;width:60px;height:60px}.hair_bangs_1_TRUred{background-image:url(spritesmith0.png);background-position:-1615px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_TRUred{background-image:url(spritesmith0.png);background-position:-1640px -288px;width:60px;height:60px}.hair_bangs_1_aurora{background-image:url(spritesmith0.png);background-position:-1365px -910px;width:90px;height:90px}.customize-option.hair_bangs_1_aurora{background-image:url(spritesmith0.png);background-position:-1390px -925px;width:60px;height:60px}.hair_bangs_1_black{background-image:url(spritesmith0.png);background-position:-91px -1650px;width:90px;height:90px}.customize-option.hair_bangs_1_black{background-image:url(spritesmith0.png);background-position:-116px -1665px;width:60px;height:60px}.hair_bangs_1_blond{background-image:url(spritesmith0.png);background-position:-1615px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_blond{background-image:url(spritesmith0.png);background-position:-1640px -379px;width:60px;height:60px}.hair_bangs_1_blue{background-image:url(spritesmith0.png);background-position:-455px -1593px;width:90px;height:90px}.customize-option.hair_bangs_1_blue{background-image:url(spritesmith0.png);background-position:-480px -1608px;width:60px;height:60px}.hair_bangs_1_brown{background-image:url(spritesmith0.png);background-position:-1567px -546px;width:90px;height:90px}.customize-option.hair_bangs_1_brown{background-image:url(spritesmith0.png);background-position:-1592px -561px;width:60px;height:60px}.hair_bangs_1_candycane{background-image:url(spritesmith0.png);background-position:-910px -1388px;width:90px;height:90px}.customize-option.hair_bangs_1_candycane{background-image:url(spritesmith0.png);background-position:-935px -1403px;width:60px;height:60px}.hair_bangs_1_candycorn{background-image:url(spritesmith0.png);background-position:-182px -1650px;width:90px;height:90px}.customize-option.hair_bangs_1_candycorn{background-image:url(spritesmith0.png);background-position:-207px -1665px;width:60px;height:60px}.hair_bangs_1_festive{background-image:url(spritesmith0.png);background-position:-1666px 0;width:90px;height:90px}.customize-option.hair_bangs_1_festive{background-image:url(spritesmith0.png);background-position:-1691px -15px;width:60px;height:60px}.hair_bangs_1_frost{background-image:url(spritesmith0.png);background-position:-728px -1502px;width:90px;height:90px}.customize-option.hair_bangs_1_frost{background-image:url(spritesmith0.png);background-position:-753px -1517px;width:60px;height:60px}.hair_bangs_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-1667px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-1692px -106px;width:60px;height:60px}.hair_bangs_1_green{background-image:url(spritesmith0.png);background-position:-273px -1650px;width:90px;height:90px}.customize-option.hair_bangs_1_green{background-image:url(spritesmith0.png);background-position:-298px -1665px;width:60px;height:60px}.hair_bangs_1_halloween{background-image:url(spritesmith0.png);background-position:-1183px -1183px;width:90px;height:90px}.customize-option.hair_bangs_1_halloween{background-image:url(spritesmith0.png);background-position:-1208px -1198px;width:60px;height:60px}.hair_bangs_1_holly{background-image:url(spritesmith0.png);background-position:-1507px -728px;width:90px;height:90px}.customize-option.hair_bangs_1_holly{background-image:url(spritesmith0.png);background-position:-1532px -743px;width:60px;height:60px}.hair_bangs_1_hollygreen{background-image:url(spritesmith0.png);background-position:-1667px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_hollygreen{background-image:url(spritesmith0.png);background-position:-1692px -197px;width:60px;height:60px}.hair_bangs_1_midnight{background-image:url(spritesmith0.png);background-position:-1615px -455px;width:90px;height:90px}.customize-option.hair_bangs_1_midnight{background-image:url(spritesmith0.png);background-position:-1640px -470px;width:60px;height:60px}.hair_bangs_1_pblue{background-image:url(spritesmith0.png);background-position:-1092px -1274px;width:90px;height:90px}.customize-option.hair_bangs_1_pblue{background-image:url(spritesmith0.png);background-position:-1117px -1289px;width:60px;height:60px}.hair_bangs_1_peppermint{background-image:url(spritesmith0.png);background-position:-1274px -1092px;width:90px;height:90px}.customize-option.hair_bangs_1_peppermint{background-image:url(spritesmith0.png);background-position:-1299px -1107px;width:60px;height:60px}.hair_bangs_1_pgreen{background-image:url(spritesmith0.png);background-position:-546px -1593px;width:90px;height:90px}.customize-option.hair_bangs_1_pgreen{background-image:url(spritesmith0.png);background-position:-571px -1608px;width:60px;height:60px}.hair_bangs_1_porange{background-image:url(spritesmith0.png);background-position:-364px -1650px;width:90px;height:90px}.customize-option.hair_bangs_1_porange{background-image:url(spritesmith0.png);background-position:-389px -1665px;width:60px;height:60px}.hair_bangs_1_ppink{background-image:url(spritesmith0.png);background-position:-819px -1479px;width:90px;height:90px}.customize-option.hair_bangs_1_ppink{background-image:url(spritesmith0.png);background-position:-844px -1494px;width:60px;height:60px}.hair_bangs_1_ppurple{background-image:url(spritesmith0.png);background-position:-1567px -637px;width:90px;height:90px}.customize-option.hair_bangs_1_ppurple{background-image:url(spritesmith0.png);background-position:-1592px -652px;width:60px;height:60px}.hair_bangs_1_pumpkin{background-image:url(spritesmith0.png);background-position:-1001px -1365px;width:90px;height:90px}.customize-option.hair_bangs_1_pumpkin{background-image:url(spritesmith0.png);background-position:-1026px -1380px;width:60px;height:60px}.hair_bangs_1_purple{background-image:url(spritesmith0.png);background-position:-1365px -1001px;width:90px;height:90px}.customize-option.hair_bangs_1_purple{background-image:url(spritesmith0.png);background-position:-1390px -1016px;width:60px;height:60px}.hair_bangs_1_pyellow{background-image:url(spritesmith0.png);background-position:0 -1707px;width:90px;height:90px}.customize-option.hair_bangs_1_pyellow{background-image:url(spritesmith0.png);background-position:-25px -1722px;width:60px;height:60px}.hair_bangs_1_rainbow{background-image:url(spritesmith0.png);background-position:-1507px -819px;width:90px;height:90px}.customize-option.hair_bangs_1_rainbow{background-image:url(spritesmith0.png);background-position:-1532px -834px;width:60px;height:60px}.hair_bangs_1_red{background-image:url(spritesmith0.png);background-position:-637px -1593px;width:90px;height:90px}.customize-option.hair_bangs_1_red{background-image:url(spritesmith0.png);background-position:-662px -1608px;width:60px;height:60px}.hair_bangs_1_snowy{background-image:url(spritesmith0.png);background-position:-1456px -910px;width:90px;height:90px}.customize-option.hair_bangs_1_snowy{background-image:url(spritesmith0.png);background-position:-1481px -925px;width:60px;height:60px}.hair_bangs_1_white{background-image:url(spritesmith0.png);background-position:-1706px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_white{background-image:url(spritesmith0.png);background-position:-1731px -288px;width:60px;height:60px}.hair_bangs_1_winternight{background-image:url(spritesmith0.png);background-position:-910px -1479px;width:90px;height:90px}.customize-option.hair_bangs_1_winternight{background-image:url(spritesmith0.png);background-position:-935px -1494px;width:60px;height:60px}.hair_bangs_1_winterstar{background-image:url(spritesmith0.png);background-position:-1274px -1183px;width:90px;height:90px}.customize-option.hair_bangs_1_winterstar{background-image:url(spritesmith0.png);background-position:-1299px -1198px;width:60px;height:60px}.hair_bangs_1_yellow{background-image:url(spritesmith0.png);background-position:-1183px -1274px;width:90px;height:90px}.customize-option.hair_bangs_1_yellow{background-image:url(spritesmith0.png);background-position:-1208px -1289px;width:60px;height:60px}.hair_bangs_1_zombie{background-image:url(spritesmith0.png);background-position:-91px -1741px;width:90px;height:90px}.customize-option.hair_bangs_1_zombie{background-image:url(spritesmith0.png);background-position:-116px -1756px;width:60px;height:60px}.hair_bangs_2_TRUred{background-image:url(spritesmith0.png);background-position:-455px -1684px;width:90px;height:90px}.customize-option.hair_bangs_2_TRUred{background-image:url(spritesmith0.png);background-position:-480px -1699px;width:60px;height:60px}.hair_bangs_2_aurora{background-image:url(spritesmith0.png);background-position:-1706px -364px;width:90px;height:90px}.customize-option.hair_bangs_2_aurora{background-image:url(spritesmith0.png);background-position:-1731px -379px;width:60px;height:60px}.hair_bangs_2_black{background-image:url(spritesmith0.png);background-position:-1658px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_black{background-image:url(spritesmith0.png);background-position:-1683px -561px;width:60px;height:60px}.hair_bangs_2_blond{background-image:url(spritesmith0.png);background-position:-1365px -1092px;width:90px;height:90px}.customize-option.hair_bangs_2_blond{background-image:url(spritesmith0.png);background-position:-1390px -1107px;width:60px;height:60px}.hair_bangs_2_blue{background-image:url(spritesmith0.png);background-position:-1092px -1365px;width:90px;height:90px}.customize-option.hair_bangs_2_blue{background-image:url(spritesmith0.png);background-position:-1117px -1380px;width:60px;height:60px}.hair_bangs_2_brown{background-image:url(spritesmith0.png);background-position:-182px -1741px;width:90px;height:90px}.customize-option.hair_bangs_2_brown{background-image:url(spritesmith0.png);background-position:-207px -1756px;width:60px;height:60px}.hair_bangs_2_candycane{background-image:url(spritesmith0.png);background-position:-728px -1593px;width:90px;height:90px}.customize-option.hair_bangs_2_candycane{background-image:url(spritesmith0.png);background-position:-753px -1608px;width:60px;height:60px}.hair_bangs_2_candycorn{background-image:url(spritesmith0.png);background-position:-1598px -728px;width:90px;height:90px}.customize-option.hair_bangs_2_candycorn{background-image:url(spritesmith0.png);background-position:-1623px -743px;width:60px;height:60px}.hair_bangs_2_festive{background-image:url(spritesmith0.png);background-position:-1757px 0;width:90px;height:90px}.customize-option.hair_bangs_2_festive{background-image:url(spritesmith0.png);background-position:-1782px -15px;width:60px;height:60px}.hair_bangs_2_frost{background-image:url(spritesmith0.png);background-position:-1758px -91px;width:90px;height:90px}.customize-option.hair_bangs_2_frost{background-image:url(spritesmith0.png);background-position:-1783px -106px;width:60px;height:60px}.hair_bangs_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-273px -1741px;width:90px;height:90px}.customize-option.hair_bangs_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-298px -1756px;width:60px;height:60px}.hair_bangs_2_green{background-image:url(spritesmith0.png);background-position:-1706px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_green{background-image:url(spritesmith0.png);background-position:-1731px -470px;width:60px;height:60px}.hair_bangs_2_halloween{background-image:url(spritesmith0.png);background-position:-1456px -1001px;width:90px;height:90px}.customize-option.hair_bangs_2_halloween{background-image:url(spritesmith0.png);background-position:-1481px -1016px;width:60px;height:60px}.hair_bangs_2_holly{background-image:url(spritesmith0.png);background-position:-1001px -1456px;width:90px;height:90px}.customize-option.hair_bangs_2_holly{background-image:url(spritesmith0.png);background-position:-1026px -1471px;width:60px;height:60px}.hair_bangs_2_hollygreen{background-image:url(spritesmith0.png);background-position:-1758px -182px;width:90px;height:90px}.customize-option.hair_bangs_2_hollygreen{background-image:url(spritesmith0.png);background-position:-1783px -197px;width:60px;height:60px}.hair_bangs_2_midnight{background-image:url(spritesmith0.png);background-position:-546px -1684px;width:90px;height:90px}.customize-option.hair_bangs_2_midnight{background-image:url(spritesmith0.png);background-position:-571px -1699px;width:60px;height:60px}.hair_bangs_2_pblue{background-image:url(spritesmith0.png);background-position:-819px -1570px;width:90px;height:90px}.customize-option.hair_bangs_2_pblue{background-image:url(spritesmith0.png);background-position:-844px -1585px;width:60px;height:60px}.hair_bangs_2_peppermint{background-image:url(spritesmith0.png);background-position:-1658px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_peppermint{background-image:url(spritesmith0.png);background-position:-1683px -652px;width:60px;height:60px}.hair_bangs_2_pgreen{background-image:url(spritesmith0.png);background-position:-364px -1741px;width:90px;height:90px}.customize-option.hair_bangs_2_pgreen{background-image:url(spritesmith0.png);background-position:-389px -1756px;width:60px;height:60px}.hair_bangs_2_porange{background-image:url(spritesmith0.png);background-position:-1547px -910px;width:90px;height:90px}.customize-option.hair_bangs_2_porange{background-image:url(spritesmith0.png);background-position:-1572px -925px;width:60px;height:60px}.hair_bangs_2_ppink{background-image:url(spritesmith0.png);background-position:-1598px -819px;width:90px;height:90px}.customize-option.hair_bangs_2_ppink{background-image:url(spritesmith0.png);background-position:-1623px -834px;width:60px;height:60px}.hair_bangs_2_ppurple{background-image:url(spritesmith0.png);background-position:0 -1798px;width:90px;height:90px}.customize-option.hair_bangs_2_ppurple{background-image:url(spritesmith0.png);background-position:-25px -1813px;width:60px;height:60px}.hair_bangs_2_pumpkin{background-image:url(spritesmith0.png);background-position:-637px -1684px;width:90px;height:90px}.customize-option.hair_bangs_2_pumpkin{background-image:url(spritesmith0.png);background-position:-662px -1699px;width:60px;height:60px}.hair_bangs_2_purple{background-image:url(spritesmith0.png);background-position:-1274px -1274px;width:90px;height:90px}.customize-option.hair_bangs_2_purple{background-image:url(spritesmith0.png);background-position:-1299px -1289px;width:60px;height:60px}.hair_bangs_2_pyellow{background-image:url(spritesmith0.png);background-position:-1183px -1365px;width:90px;height:90px}.customize-option.hair_bangs_2_pyellow{background-image:url(spritesmith0.png);background-position:-1208px -1380px;width:60px;height:60px}.hair_bangs_2_rainbow{background-image:url(spritesmith0.png);background-position:-1365px -1183px;width:90px;height:90px}.customize-option.hair_bangs_2_rainbow{background-image:url(spritesmith0.png);background-position:-1390px -1198px;width:60px;height:60px}.hair_bangs_2_red{background-image:url(spritesmith0.png);background-position:-910px -1570px;width:90px;height:90px}.customize-option.hair_bangs_2_red{background-image:url(spritesmith0.png);background-position:-935px -1585px;width:60px;height:60px}.hair_bangs_2_snowy{background-image:url(spritesmith0.png);background-position:-1797px -273px;width:90px;height:90px}.customize-option.hair_bangs_2_snowy{background-image:url(spritesmith0.png);background-position:-1822px -288px;width:60px;height:60px}.hair_bangs_2_white{background-image:url(spritesmith0.png);background-position:-1092px -1456px;width:90px;height:90px}.customize-option.hair_bangs_2_white{background-image:url(spritesmith0.png);background-position:-1117px -1471px;width:60px;height:60px}.hair_bangs_2_winternight{background-image:url(spritesmith0.png);background-position:-1456px -1092px;width:90px;height:90px}.customize-option.hair_bangs_2_winternight{background-image:url(spritesmith0.png);background-position:-1481px -1107px;width:60px;height:60px}.hair_bangs_2_winterstar{background-image:url(spritesmith0.png);background-position:-1749px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_winterstar{background-image:url(spritesmith0.png);background-position:-1774px -561px;width:60px;height:60px}.hair_bangs_2_yellow{background-image:url(spritesmith0.png);background-position:-455px -1775px;width:90px;height:90px}.customize-option.hair_bangs_2_yellow{background-image:url(spritesmith0.png);background-position:-480px -1790px;width:60px;height:60px}.hair_bangs_2_zombie{background-image:url(spritesmith0.png);background-position:-1797px -364px;width:90px;height:90px}.customize-option.hair_bangs_2_zombie{background-image:url(spritesmith0.png);background-position:-1822px -379px;width:60px;height:60px}.hair_bangs_3_TRUred{background-image:url(spritesmith0.png);background-position:-91px -1832px;width:90px;height:90px}.customize-option.hair_bangs_3_TRUred{background-image:url(spritesmith0.png);background-position:-116px -1847px;width:60px;height:60px}.hair_bangs_3_aurora{background-image:url(spritesmith0.png);background-position:-728px -1684px;width:90px;height:90px}.customize-option.hair_bangs_3_aurora{background-image:url(spritesmith0.png);background-position:-753px -1699px;width:60px;height:60px}.hair_bangs_3_black{background-image:url(spritesmith0.png);background-position:-1689px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_black{background-image:url(spritesmith0.png);background-position:-1714px -743px;width:60px;height:60px}.hair_bangs_3_blond{background-image:url(spritesmith0.png);background-position:-182px -1832px;width:90px;height:90px}.customize-option.hair_bangs_3_blond{background-image:url(spritesmith0.png);background-position:-207px -1847px;width:60px;height:60px}.hair_bangs_3_blue{background-image:url(spritesmith0.png);background-position:-1547px -1001px;width:90px;height:90px}.customize-option.hair_bangs_3_blue{background-image:url(spritesmith0.png);background-position:-1572px -1016px;width:60px;height:60px}.hair_bangs_3_brown{background-image:url(spritesmith0.png);background-position:-1001px -1547px;width:90px;height:90px}.customize-option.hair_bangs_3_brown{background-image:url(spritesmith0.png);background-position:-1026px -1562px;width:60px;height:60px}.hair_bangs_3_candycane{background-image:url(spritesmith0.png);background-position:-1848px 0;width:90px;height:90px}.customize-option.hair_bangs_3_candycane{background-image:url(spritesmith0.png);background-position:-1873px -15px;width:60px;height:60px}.hair_bangs_3_candycorn{background-image:url(spritesmith0.png);background-position:-1849px -91px;width:90px;height:90px}.customize-option.hair_bangs_3_candycorn{background-image:url(spritesmith0.png);background-position:-1874px -106px;width:60px;height:60px}.hair_bangs_3_festive{background-image:url(spritesmith0.png);background-position:-819px -1661px;width:90px;height:90px}.customize-option.hair_bangs_3_festive{background-image:url(spritesmith0.png);background-position:-844px -1676px;width:60px;height:60px}.hair_bangs_3_frost{background-image:url(spritesmith0.png);background-position:-273px -1832px;width:90px;height:90px}.customize-option.hair_bangs_3_frost{background-image:url(spritesmith0.png);background-position:-298px -1847px;width:60px;height:60px}.hair_bangs_3_ghostwhite{background-image:url(spritesmith0.png);background-position:-1797px -455px;width:90px;height:90px}.customize-option.hair_bangs_3_ghostwhite{background-image:url(spritesmith0.png);background-position:-1822px -470px;width:60px;height:60px}.hair_bangs_3_green{background-image:url(spritesmith0.png);background-position:-546px -1775px;width:90px;height:90px}.customize-option.hair_bangs_3_green{background-image:url(spritesmith0.png);background-position:-571px -1790px;width:60px;height:60px}.hair_bangs_3_halloween{background-image:url(spritesmith0.png);background-position:-1849px -182px;width:90px;height:90px}.customize-option.hair_bangs_3_halloween{background-image:url(spritesmith0.png);background-position:-1874px -197px;width:60px;height:60px}.hair_bangs_3_holly{background-image:url(spritesmith0.png);background-position:-1749px -637px;width:90px;height:90px}.customize-option.hair_bangs_3_holly{background-image:url(spritesmith0.png);background-position:-1774px -652px;width:60px;height:60px}.hair_bangs_3_hollygreen{background-image:url(spritesmith0.png);background-position:-1365px -1274px;width:90px;height:90px}.customize-option.hair_bangs_3_hollygreen{background-image:url(spritesmith0.png);background-position:-1390px -1289px;width:60px;height:60px}.hair_bangs_3_midnight{background-image:url(spritesmith0.png);background-position:-1274px -1365px;width:90px;height:90px}.customize-option.hair_bangs_3_midnight{background-image:url(spritesmith0.png);background-position:-1299px -1380px;width:60px;height:60px}.hair_bangs_3_pblue{background-image:url(spritesmith0.png);background-position:-364px -1832px;width:90px;height:90px}.customize-option.hair_bangs_3_pblue{background-image:url(spritesmith0.png);background-position:-389px -1847px;width:60px;height:60px}.hair_bangs_3_peppermint{background-image:url(spritesmith0.png);background-position:-1638px -910px;width:90px;height:90px}.customize-option.hair_bangs_3_peppermint{background-image:url(spritesmith0.png);background-position:-1663px -925px;width:60px;height:60px}.hair_bangs_3_pgreen{background-image:url(spritesmith0.png);background-position:-1456px -1183px;width:90px;height:90px}.customize-option.hair_bangs_3_pgreen{background-image:url(spritesmith0.png);background-position:-1481px -1198px;width:60px;height:60px}.hair_bangs_3_porange{background-image:url(spritesmith0.png);background-position:-1183px -1456px;width:90px;height:90px}.customize-option.hair_bangs_3_porange{background-image:url(spritesmith0.png);background-position:-1208px -1471px;width:60px;height:60px}.hair_bangs_3_ppink{background-image:url(spritesmith0.png);background-position:-1689px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_ppink{background-image:url(spritesmith0.png);background-position:-1714px -834px;width:60px;height:60px}.hair_bangs_3_ppurple{background-image:url(spritesmith0.png);background-position:-637px -1775px;width:90px;height:90px}.customize-option.hair_bangs_3_ppurple{background-image:url(spritesmith0.png);background-position:-662px -1790px;width:60px;height:60px}.hair_bangs_3_pumpkin{background-image:url(spritesmith0.png);background-position:0 -1889px;width:90px;height:90px}.customize-option.hair_bangs_3_pumpkin{background-image:url(spritesmith0.png);background-position:-25px -1904px;width:60px;height:60px}.hair_bangs_3_purple{background-image:url(spritesmith0.png);background-position:-1547px -1092px;width:90px;height:90px}.customize-option.hair_bangs_3_purple{background-image:url(spritesmith0.png);background-position:-1572px -1107px;width:60px;height:60px}.hair_bangs_3_pyellow{background-image:url(spritesmith0.png);background-position:-1092px -1547px;width:90px;height:90px}.customize-option.hair_bangs_3_pyellow{background-image:url(spritesmith0.png);background-position:-1117px -1562px;width:60px;height:60px}.hair_bangs_3_rainbow{background-image:url(spritesmith0.png);background-position:-910px -1661px;width:90px;height:90px}.customize-option.hair_bangs_3_rainbow{background-image:url(spritesmith0.png);background-position:-935px -1676px;width:60px;height:60px}.hair_bangs_3_red{background-image:url(spritesmith0.png);background-position:-1888px -273px;width:90px;height:90px}.customize-option.hair_bangs_3_red{background-image:url(spritesmith0.png);background-position:-1913px -288px;width:60px;height:60px}.hair_bangs_3_snowy{background-image:url(spritesmith0.png);background-position:-728px -1775px;width:90px;height:90px}.customize-option.hair_bangs_3_snowy{background-image:url(spritesmith0.png);background-position:-753px -1790px;width:60px;height:60px}.hair_bangs_3_white{background-image:url(spritesmith0.png);background-position:-1840px -546px;width:90px;height:90px}.customize-option.hair_bangs_3_white{background-image:url(spritesmith0.png);background-position:-1865px -561px;width:60px;height:60px}.hair_bangs_3_winternight{background-image:url(spritesmith0.png);background-position:-1001px -1638px;width:90px;height:90px}.customize-option.hair_bangs_3_winternight{background-image:url(spritesmith0.png);background-position:-1026px -1653px;width:60px;height:60px}.hair_bangs_3_winterstar{background-image:url(spritesmith0.png);background-position:-1638px -1001px;width:90px;height:90px}.customize-option.hair_bangs_3_winterstar{background-image:url(spritesmith0.png);background-position:-1663px -1016px;width:60px;height:60px}.hair_bangs_3_yellow{background-image:url(spritesmith0.png);background-position:-455px -1866px;width:90px;height:90px}.customize-option.hair_bangs_3_yellow{background-image:url(spritesmith0.png);background-position:-480px -1881px;width:60px;height:60px}.hair_bangs_3_zombie{background-image:url(spritesmith0.png);background-position:-1888px -364px;width:90px;height:90px}.customize-option.hair_bangs_3_zombie{background-image:url(spritesmith0.png);background-position:-1913px -379px;width:60px;height:60px}.hair_base_10_TRUEred{background-image:url(spritesmith0.png);background-position:-1780px -728px;width:90px;height:90px}.customize-option.hair_base_10_TRUEred{background-image:url(spritesmith0.png);background-position:-1805px -743px;width:60px;height:60px}.hair_base_10_aurora{background-image:url(spritesmith0.png);background-position:-91px -1923px;width:90px;height:90px}.customize-option.hair_base_10_aurora{background-image:url(spritesmith0.png);background-position:-116px -1938px;width:60px;height:60px}.hair_base_10_black{background-image:url(spritesmith0.png);background-position:-1365px -1365px;width:90px;height:90px}.customize-option.hair_base_10_black{background-image:url(spritesmith0.png);background-position:-1390px -1380px;width:60px;height:60px}.hair_base_10_blond{background-image:url(spritesmith0.png);background-position:-182px -1923px;width:90px;height:90px}.customize-option.hair_base_10_blond{background-image:url(spritesmith0.png);background-position:-207px -1938px;width:60px;height:60px}.hair_base_10_blue{background-image:url(spritesmith0.png);background-position:-819px -1752px;width:90px;height:90px}.customize-option.hair_base_10_blue{background-image:url(spritesmith0.png);background-position:-844px -1767px;width:60px;height:60px}.hair_base_10_brown{background-image:url(spritesmith0.png);background-position:-1274px -1456px;width:90px;height:90px}.customize-option.hair_base_10_brown{background-image:url(spritesmith0.png);background-position:-1299px -1471px;width:60px;height:60px}.hair_base_10_festive{background-image:url(spritesmith0.png);background-position:-1456px -1274px;width:90px;height:90px}.customize-option.hair_base_10_festive{background-image:url(spritesmith0.png);background-position:-1481px -1289px;width:60px;height:60px}.hair_base_10_green{background-image:url(spritesmith0.png);background-position:-1939px 0;width:90px;height:90px}.customize-option.hair_base_10_green{background-image:url(spritesmith0.png);background-position:-1964px -15px;width:60px;height:60px}.hair_base_10_hollygreen{background-image:url(spritesmith0.png);background-position:-1888px -455px;width:90px;height:90px}.customize-option.hair_base_10_hollygreen{background-image:url(spritesmith0.png);background-position:-1913px -470px;width:60px;height:60px}.hair_base_10_pblue{background-image:url(spritesmith0.png);background-position:-1940px -91px;width:90px;height:90px}.customize-option.hair_base_10_pblue{background-image:url(spritesmith0.png);background-position:-1965px -106px;width:60px;height:60px}.hair_base_10_peppermint{background-image:url(spritesmith0.png);background-position:-1485px -91px;width:90px;height:90px}.customize-option.hair_base_10_peppermint{background-image:url(spritesmith0.png);background-position:-1510px -106px;width:60px;height:60px}.hair_base_10_pgreen{background-image:url(spritesmith0.png);background-position:-705px -387px;width:90px;height:90px}.customize-option.hair_base_10_pgreen{background-image:url(spritesmith0.png);background-position:-730px -402px;width:60px;height:60px}.hair_base_10_porange{background-image:url(spritesmith0.png);background-position:-233px -740px;width:90px;height:90px}.customize-option.hair_base_10_porange{background-image:url(spritesmith0.png);background-position:-258px -755px;width:60px;height:60px}.hair_base_10_ppink{background-image:url(spritesmith0.png);background-position:-705px -296px;width:90px;height:90px}.customize-option.hair_base_10_ppink{background-image:url(spritesmith0.png);background-position:-730px -311px;width:60px;height:60px}.hair_base_10_ppurple{background-image:url(spritesmith0.png);background-position:-887px -364px;width:90px;height:90px}.customize-option.hair_base_10_ppurple{background-image:url(spritesmith0.png);background-position:-912px -379px;width:60px;height:60px}.hair_base_10_purple{background-image:url(spritesmith0.png);background-position:-939px -182px;width:90px;height:90px}.customize-option.hair_base_10_purple{background-image:url(spritesmith0.png);background-position:-964px -197px;width:60px;height:60px}.hair_base_10_pyellow{background-image:url(spritesmith0.png);background-position:-657px -683px;width:90px;height:90px}.customize-option.hair_base_10_pyellow{background-image:url(spritesmith0.png);background-position:-682px -698px;width:60px;height:60px}.hair_base_10_rainbow{background-image:url(spritesmith0.png);background-position:-939px -91px;width:90px;height:90px}.customize-option.hair_base_10_rainbow{background-image:url(spritesmith0.png);background-position:-964px -106px;width:60px;height:60px}.hair_base_10_red{background-image:url(spritesmith0.png);background-position:-748px -569px;width:90px;height:90px}.customize-option.hair_base_10_red{background-image:url(spritesmith0.png);background-position:-773px -584px;width:60px;height:60px}.hair_base_10_snowy{background-image:url(spritesmith0.png);background-position:-182px -922px;width:90px;height:90px}.customize-option.hair_base_10_snowy{background-image:url(spritesmith0.png);background-position:-207px -937px;width:60px;height:60px}.hair_base_10_white{background-image:url(spritesmith0.png);background-position:-938px 0;width:90px;height:90px}.customize-option.hair_base_10_white{background-image:url(spritesmith0.png);background-position:-963px -15px;width:60px;height:60px}.hair_base_10_winterstar{background-image:url(spritesmith0.png);background-position:-415px -831px;width:90px;height:90px}.customize-option.hair_base_10_winterstar{background-image:url(spritesmith0.png);background-position:-440px -846px;width:60px;height:60px}.hair_base_10_yellow{background-image:url(spritesmith0.png);background-position:-796px -478px;width:90px;height:90px}.customize-option.hair_base_10_yellow{background-image:url(spritesmith0.png);background-position:-821px -493px;width:60px;height:60px}.hair_base_11_TRUEred{background-image:url(spritesmith0.png);background-position:-887px -273px;width:90px;height:90px}.customize-option.hair_base_11_TRUEred{background-image:url(spritesmith0.png);background-position:-912px -288px;width:60px;height:60px}.hair_base_11_aurora{background-image:url(spritesmith0.png);background-position:-91px -922px;width:90px;height:90px}.customize-option.hair_base_11_aurora{background-image:url(spritesmith0.png);background-position:-116px -937px;width:60px;height:60px}.hair_base_11_blond{background-image:url(spritesmith0.png);background-position:-506px -774px;width:90px;height:90px}.customize-option.hair_base_11_blond{background-image:url(spritesmith0.png);background-position:-531px -789px;width:60px;height:60px}.hair_base_11_blue{background-image:url(spritesmith0.png);background-position:-324px -831px;width:90px;height:90px}.customize-option.hair_base_11_blue{background-image:url(spritesmith0.png);background-position:-349px -846px;width:60px;height:60px}.hair_base_11_brown{background-image:url(spritesmith0.png);background-position:0 -888px;width:90px;height:90px}.customize-option.hair_base_11_brown{background-image:url(spritesmith0.png);background-position:-25px -903px;width:60px;height:60px}.hair_base_11_festive{background-image:url(spritesmith0.png);background-position:-566px -683px;width:90px;height:90px}.customize-option.hair_base_11_festive{background-image:url(spritesmith0.png);background-position:-591px -698px;width:60px;height:60px}.hair_base_11_green{background-image:url(spritesmith0.png);background-position:-796px -387px;width:90px;height:90px}.customize-option.hair_base_11_green{background-image:url(spritesmith0.png);background-position:-821px -402px;width:60px;height:60px}.hair_base_11_hollygreen{background-image:url(spritesmith0.png);background-position:-657px -592px;width:90px;height:90px}.customize-option.hair_base_11_hollygreen{background-image:url(spritesmith0.png);background-position:-682px -607px;width:60px;height:60px}.hair_base_11_pblue{background-image:url(spritesmith0.png);background-position:-848px -182px;width:90px;height:90px}.customize-option.hair_base_11_pblue{background-image:url(spritesmith0.png);background-position:-873px -197px;width:60px;height:60px}.hair_base_11_peppermint{background-image:url(spritesmith0.png);background-position:-233px -831px;width:90px;height:90px}.customize-option.hair_base_11_peppermint{background-image:url(spritesmith0.png);background-position:-258px -846px;width:60px;height:60px}.hair_base_11_pgreen{background-image:url(spritesmith0.png);background-position:-848px -91px;width:90px;height:90px}.customize-option.hair_base_11_pgreen{background-image:url(spritesmith0.png);background-position:-873px -106px;width:60px;height:60px}.hair_base_11_porange{background-image:url(spritesmith0.png);background-position:-705px -478px;width:90px;height:90px}.customize-option.hair_base_11_porange{background-image:url(spritesmith0.png);background-position:-730px -493px;width:60px;height:60px}.hair_base_11_ppink{background-image:url(spritesmith0.png);background-position:-796px -296px;width:90px;height:90px}.customize-option.hair_base_11_ppink{background-image:url(spritesmith0.png);background-position:-821px -311px;width:60px;height:60px}.hair_base_11_ppurple{background-image:url(spritesmith0.png);background-position:-415px -740px;width:90px;height:90px}.customize-option.hair_base_11_ppurple{background-image:url(spritesmith0.png);background-position:-440px -755px;width:60px;height:60px}.hair_base_11_purple{background-image:url(spritesmith0.png);background-position:-847px 0;width:90px;height:90px}.customize-option.hair_base_11_purple{background-image:url(spritesmith0.png);background-position:-872px -15px;width:60px;height:60px}.hair_base_11_pyellow{background-image:url(spritesmith0.png);background-position:-142px -831px;width:90px;height:90px}.customize-option.hair_base_11_pyellow{background-image:url(spritesmith0.png);background-position:-167px -846px;width:60px;height:60px}.hair_base_11_rainbow{background-image:url(spritesmith0.png);background-position:-566px -592px;width:90px;height:90px}.customize-option.hair_base_11_rainbow{background-image:url(spritesmith0.png);background-position:-591px -607px;width:60px;height:60px}.hair_base_11_red{background-image:url(spritesmith0.png);background-position:-324px -740px;width:90px;height:90px}.customize-option.hair_base_11_red{background-image:url(spritesmith0.png);background-position:-349px -755px;width:60px;height:60px}.hair_base_11_snowy{background-image:url(spritesmith1.png);background-position:-91px 0;width:90px;height:90px}.customize-option.hair_base_11_snowy{background-image:url(spritesmith1.png);background-position:-116px -15px;width:60px;height:60px}.hair_base_11_white{background-image:url(spritesmith1.png);background-position:-637px -1183px;width:90px;height:90px}.customize-option.hair_base_11_white{background-image:url(spritesmith1.png);background-position:-662px -1198px;width:60px;height:60px}.hair_base_11_winterstar{background-image:url(spritesmith1.png);background-position:0 -91px;width:90px;height:90px}.customize-option.hair_base_11_winterstar{background-image:url(spritesmith1.png);background-position:-25px -106px;width:60px;height:60px}.hair_base_11_yellow{background-image:url(spritesmith1.png);background-position:-91px -91px;width:90px;height:90px}.customize-option.hair_base_11_yellow{background-image:url(spritesmith1.png);background-position:-116px -106px;width:60px;height:60px}.hair_base_12_TRUEred{background-image:url(spritesmith1.png);background-position:0 -182px;width:90px;height:90px}.customize-option.hair_base_12_TRUEred{background-image:url(spritesmith1.png);background-position:-25px -197px;width:60px;height:60px}.hair_base_12_aurora{background-image:url(spritesmith1.png);background-position:-182px 0;width:90px;height:90px}.customize-option.hair_base_12_aurora{background-image:url(spritesmith1.png);background-position:-207px -15px;width:60px;height:60px}.hair_base_12_blond{background-image:url(spritesmith1.png);background-position:-182px -91px;width:90px;height:90px}.customize-option.hair_base_12_blond{background-image:url(spritesmith1.png);background-position:-207px -106px;width:60px;height:60px}.hair_base_12_blue{background-image:url(spritesmith1.png);background-position:-91px -182px;width:90px;height:90px}.customize-option.hair_base_12_blue{background-image:url(spritesmith1.png);background-position:-116px -197px;width:60px;height:60px}.hair_base_12_brown{background-image:url(spritesmith1.png);background-position:-182px -182px;width:90px;height:90px}.customize-option.hair_base_12_brown{background-image:url(spritesmith1.png);background-position:-207px -197px;width:60px;height:60px}.hair_base_12_festive{background-image:url(spritesmith1.png);background-position:-273px 0;width:90px;height:90px}.customize-option.hair_base_12_festive{background-image:url(spritesmith1.png);background-position:-298px -15px;width:60px;height:60px}.hair_base_12_green{background-image:url(spritesmith1.png);background-position:0 -273px;width:90px;height:90px}.customize-option.hair_base_12_green{background-image:url(spritesmith1.png);background-position:-25px -288px;width:60px;height:60px}.hair_base_12_hollygreen{background-image:url(spritesmith1.png);background-position:-91px -273px;width:90px;height:90px}.customize-option.hair_base_12_hollygreen{background-image:url(spritesmith1.png);background-position:-116px -288px;width:60px;height:60px}.hair_base_12_pblue{background-image:url(spritesmith1.png);background-position:-273px -91px;width:90px;height:90px}.customize-option.hair_base_12_pblue{background-image:url(spritesmith1.png);background-position:-298px -106px;width:60px;height:60px}.hair_base_12_peppermint{background-image:url(spritesmith1.png);background-position:-273px -182px;width:90px;height:90px}.customize-option.hair_base_12_peppermint{background-image:url(spritesmith1.png);background-position:-298px -197px;width:60px;height:60px}.hair_base_12_pgreen{background-image:url(spritesmith1.png);background-position:-182px -273px;width:90px;height:90px}.customize-option.hair_base_12_pgreen{background-image:url(spritesmith1.png);background-position:-207px -288px;width:60px;height:60px}.hair_base_12_porange{background-image:url(spritesmith1.png);background-position:0 -364px;width:90px;height:90px}.customize-option.hair_base_12_porange{background-image:url(spritesmith1.png);background-position:-25px -379px;width:60px;height:60px}.hair_base_12_ppink{background-image:url(spritesmith1.png);background-position:-364px 0;width:90px;height:90px}.customize-option.hair_base_12_ppink{background-image:url(spritesmith1.png);background-position:-389px -15px;width:60px;height:60px}.hair_base_12_ppurple{background-image:url(spritesmith1.png);background-position:-364px -91px;width:90px;height:90px}.customize-option.hair_base_12_ppurple{background-image:url(spritesmith1.png);background-position:-389px -106px;width:60px;height:60px}.hair_base_12_purple{background-image:url(spritesmith1.png);background-position:-91px -364px;width:90px;height:90px}.customize-option.hair_base_12_purple{background-image:url(spritesmith1.png);background-position:-116px -379px;width:60px;height:60px}.hair_base_12_pyellow{background-image:url(spritesmith1.png);background-position:-273px -273px;width:90px;height:90px}.customize-option.hair_base_12_pyellow{background-image:url(spritesmith1.png);background-position:-298px -288px;width:60px;height:60px}.hair_base_12_rainbow{background-image:url(spritesmith1.png);background-position:-182px -364px;width:90px;height:90px}.customize-option.hair_base_12_rainbow{background-image:url(spritesmith1.png);background-position:-207px -379px;width:60px;height:60px}.hair_base_12_red{background-image:url(spritesmith1.png);background-position:-364px -182px;width:90px;height:90px}.customize-option.hair_base_12_red{background-image:url(spritesmith1.png);background-position:-389px -197px;width:60px;height:60px}.hair_base_12_snowy{background-image:url(spritesmith1.png);background-position:-364px -273px;width:90px;height:90px}.customize-option.hair_base_12_snowy{background-image:url(spritesmith1.png);background-position:-389px -288px;width:60px;height:60px}.hair_base_12_white{background-image:url(spritesmith1.png);background-position:-273px -364px;width:90px;height:90px}.customize-option.hair_base_12_white{background-image:url(spritesmith1.png);background-position:-298px -379px;width:60px;height:60px}.hair_base_12_winterstar{background-image:url(spritesmith1.png);background-position:-455px 0;width:90px;height:90px}.customize-option.hair_base_12_winterstar{background-image:url(spritesmith1.png);background-position:-480px -15px;width:60px;height:60px}.hair_base_12_yellow{background-image:url(spritesmith1.png);background-position:0 -455px;width:90px;height:90px}.customize-option.hair_base_12_yellow{background-image:url(spritesmith1.png);background-position:-25px -470px;width:60px;height:60px}.hair_base_13_TRUEred{background-image:url(spritesmith1.png);background-position:-91px -455px;width:90px;height:90px}.customize-option.hair_base_13_TRUEred{background-image:url(spritesmith1.png);background-position:-116px -470px;width:60px;height:60px}.hair_base_13_aurora{background-image:url(spritesmith1.png);background-position:-455px -91px;width:90px;height:90px}.customize-option.hair_base_13_aurora{background-image:url(spritesmith1.png);background-position:-480px -106px;width:60px;height:60px}.hair_base_13_black{background-image:url(spritesmith1.png);background-position:-455px -182px;width:90px;height:90px}.customize-option.hair_base_13_black{background-image:url(spritesmith1.png);background-position:-480px -197px;width:60px;height:60px}.hair_base_13_blond{background-image:url(spritesmith1.png);background-position:-182px -455px;width:90px;height:90px}.customize-option.hair_base_13_blond{background-image:url(spritesmith1.png);background-position:-207px -470px;width:60px;height:60px}.hair_base_13_blue{background-image:url(spritesmith1.png);background-position:-364px -364px;width:90px;height:90px}.customize-option.hair_base_13_blue{background-image:url(spritesmith1.png);background-position:-389px -379px;width:60px;height:60px}.hair_base_13_brown{background-image:url(spritesmith1.png);background-position:-273px -455px;width:90px;height:90px}.customize-option.hair_base_13_brown{background-image:url(spritesmith1.png);background-position:-298px -470px;width:60px;height:60px}.hair_base_13_festive{background-image:url(spritesmith1.png);background-position:-455px -273px;width:90px;height:90px}.customize-option.hair_base_13_festive{background-image:url(spritesmith1.png);background-position:-480px -288px;width:60px;height:60px}.hair_base_13_green{background-image:url(spritesmith1.png);background-position:0 -546px;width:90px;height:90px}.customize-option.hair_base_13_green{background-image:url(spritesmith1.png);background-position:-25px -561px;width:60px;height:60px}.hair_base_13_hollygreen{background-image:url(spritesmith1.png);background-position:-546px 0;width:90px;height:90px}.customize-option.hair_base_13_hollygreen{background-image:url(spritesmith1.png);background-position:-571px -15px;width:60px;height:60px}.hair_base_13_pblue{background-image:url(spritesmith1.png);background-position:-546px -91px;width:90px;height:90px}.customize-option.hair_base_13_pblue{background-image:url(spritesmith1.png);background-position:-571px -106px;width:60px;height:60px}.hair_base_13_peppermint{background-image:url(spritesmith1.png);background-position:-91px -546px;width:90px;height:90px}.customize-option.hair_base_13_peppermint{background-image:url(spritesmith1.png);background-position:-116px -561px;width:60px;height:60px}.hair_base_13_pgreen{background-image:url(spritesmith1.png);background-position:-182px -546px;width:90px;height:90px}.customize-option.hair_base_13_pgreen{background-image:url(spritesmith1.png);background-position:-207px -561px;width:60px;height:60px}.hair_base_13_porange{background-image:url(spritesmith1.png);background-position:-546px -182px;width:90px;height:90px}.customize-option.hair_base_13_porange{background-image:url(spritesmith1.png);background-position:-571px -197px;width:60px;height:60px}.hair_base_13_ppink{background-image:url(spritesmith1.png);background-position:-455px -364px;width:90px;height:90px}.customize-option.hair_base_13_ppink{background-image:url(spritesmith1.png);background-position:-480px -379px;width:60px;height:60px}.hair_base_13_ppurple{background-image:url(spritesmith1.png);background-position:-364px -455px;width:90px;height:90px}.customize-option.hair_base_13_ppurple{background-image:url(spritesmith1.png);background-position:-389px -470px;width:60px;height:60px}.hair_base_13_purple{background-image:url(spritesmith1.png);background-position:-546px -273px;width:90px;height:90px}.customize-option.hair_base_13_purple{background-image:url(spritesmith1.png);background-position:-571px -288px;width:60px;height:60px}.hair_base_13_pyellow{background-image:url(spritesmith1.png);background-position:-273px -546px;width:90px;height:90px}.customize-option.hair_base_13_pyellow{background-image:url(spritesmith1.png);background-position:-298px -561px;width:60px;height:60px}.hair_base_13_rainbow{background-image:url(spritesmith1.png);background-position:-637px 0;width:90px;height:90px}.customize-option.hair_base_13_rainbow{background-image:url(spritesmith1.png);background-position:-662px -15px;width:60px;height:60px}.hair_base_13_red{background-image:url(spritesmith1.png);background-position:0 -637px;width:90px;height:90px}.customize-option.hair_base_13_red{background-image:url(spritesmith1.png);background-position:-25px -652px;width:60px;height:60px}.hair_base_13_snowy{background-image:url(spritesmith1.png);background-position:-91px -637px;width:90px;height:90px}.customize-option.hair_base_13_snowy{background-image:url(spritesmith1.png);background-position:-116px -652px;width:60px;height:60px}.hair_base_13_white{background-image:url(spritesmith1.png);background-position:-637px -91px;width:90px;height:90px}.customize-option.hair_base_13_white{background-image:url(spritesmith1.png);background-position:-662px -106px;width:60px;height:60px}.hair_base_13_winterstar{background-image:url(spritesmith1.png);background-position:-455px -455px;width:90px;height:90px}.customize-option.hair_base_13_winterstar{background-image:url(spritesmith1.png);background-position:-480px -470px;width:60px;height:60px}.hair_base_13_yellow{background-image:url(spritesmith1.png);background-position:-364px -546px;width:90px;height:90px}.customize-option.hair_base_13_yellow{background-image:url(spritesmith1.png);background-position:-389px -561px;width:60px;height:60px}.hair_base_14_TRUEred{background-image:url(spritesmith1.png);background-position:-546px -364px;width:90px;height:90px}.customize-option.hair_base_14_TRUEred{background-image:url(spritesmith1.png);background-position:-571px -379px;width:60px;height:60px}.hair_base_14_aurora{background-image:url(spritesmith1.png);background-position:-637px -182px;width:90px;height:90px}.customize-option.hair_base_14_aurora{background-image:url(spritesmith1.png);background-position:-662px -197px;width:60px;height:60px}.hair_base_14_black{background-image:url(spritesmith1.png);background-position:-182px -637px;width:90px;height:90px}.customize-option.hair_base_14_black{background-image:url(spritesmith1.png);background-position:-207px -652px;width:60px;height:60px}.hair_base_14_blond{background-image:url(spritesmith1.png);background-position:-273px -637px;width:90px;height:90px}.customize-option.hair_base_14_blond{background-image:url(spritesmith1.png);background-position:-298px -652px;width:60px;height:60px}.hair_base_14_blue{background-image:url(spritesmith1.png);background-position:-637px -273px;width:90px;height:90px}.customize-option.hair_base_14_blue{background-image:url(spritesmith1.png);background-position:-662px -288px;width:60px;height:60px}.hair_base_14_brown{background-image:url(spritesmith1.png);background-position:-546px -455px;width:90px;height:90px}.customize-option.hair_base_14_brown{background-image:url(spritesmith1.png);background-position:-571px -470px;width:60px;height:60px}.hair_base_14_festive{background-image:url(spritesmith1.png);background-position:-455px -546px;width:90px;height:90px}.customize-option.hair_base_14_festive{background-image:url(spritesmith1.png);background-position:-480px -561px;width:60px;height:60px}.hair_base_14_green{background-image:url(spritesmith1.png);background-position:0 -728px;width:90px;height:90px}.customize-option.hair_base_14_green{background-image:url(spritesmith1.png);background-position:-25px -743px;width:60px;height:60px}.hair_base_14_hollygreen{background-image:url(spritesmith1.png);background-position:-728px 0;width:90px;height:90px}.customize-option.hair_base_14_hollygreen{background-image:url(spritesmith1.png);background-position:-753px -15px;width:60px;height:60px}.hair_base_14_pblue{background-image:url(spritesmith1.png);background-position:-728px -91px;width:90px;height:90px}.customize-option.hair_base_14_pblue{background-image:url(spritesmith1.png);background-position:-753px -106px;width:60px;height:60px}.hair_base_14_peppermint{background-image:url(spritesmith1.png);background-position:-91px -728px;width:90px;height:90px}.customize-option.hair_base_14_peppermint{background-image:url(spritesmith1.png);background-position:-116px -743px;width:60px;height:60px}.hair_base_14_pgreen{background-image:url(spritesmith1.png);background-position:-637px -364px;width:90px;height:90px}.customize-option.hair_base_14_pgreen{background-image:url(spritesmith1.png);background-position:-662px -379px;width:60px;height:60px}.hair_base_14_porange{background-image:url(spritesmith1.png);background-position:-364px -637px;width:90px;height:90px}.customize-option.hair_base_14_porange{background-image:url(spritesmith1.png);background-position:-389px -652px;width:60px;height:60px}.hair_base_14_ppink{background-image:url(spritesmith1.png);background-position:-182px -728px;width:90px;height:90px}.customize-option.hair_base_14_ppink{background-image:url(spritesmith1.png);background-position:-207px -743px;width:60px;height:60px}.hair_base_14_ppurple{background-image:url(spritesmith1.png);background-position:-728px -182px;width:90px;height:90px}.customize-option.hair_base_14_ppurple{background-image:url(spritesmith1.png);background-position:-753px -197px;width:60px;height:60px}.hair_base_14_purple{background-image:url(spritesmith1.png);background-position:-546px -546px;width:90px;height:90px}.customize-option.hair_base_14_purple{background-image:url(spritesmith1.png);background-position:-571px -561px;width:60px;height:60px}.hair_base_14_pyellow{background-image:url(spritesmith1.png);background-position:-728px -273px;width:90px;height:90px}.customize-option.hair_base_14_pyellow{background-image:url(spritesmith1.png);background-position:-753px -288px;width:60px;height:60px}.hair_base_14_rainbow{background-image:url(spritesmith1.png);background-position:-273px -728px;width:90px;height:90px}.customize-option.hair_base_14_rainbow{background-image:url(spritesmith1.png);background-position:-298px -743px;width:60px;height:60px}.hair_base_14_red{background-image:url(spritesmith1.png);background-position:-455px -637px;width:90px;height:90px}.customize-option.hair_base_14_red{background-image:url(spritesmith1.png);background-position:-480px -652px;width:60px;height:60px}.hair_base_14_snowy{background-image:url(spritesmith1.png);background-position:-637px -455px;width:90px;height:90px}.customize-option.hair_base_14_snowy{background-image:url(spritesmith1.png);background-position:-662px -470px;width:60px;height:60px}.hair_base_14_white{background-image:url(spritesmith1.png);background-position:-364px -728px;width:90px;height:90px}.customize-option.hair_base_14_white{background-image:url(spritesmith1.png);background-position:-389px -743px;width:60px;height:60px}.hair_base_14_winterstar{background-image:url(spritesmith1.png);background-position:-728px -364px;width:90px;height:90px}.customize-option.hair_base_14_winterstar{background-image:url(spritesmith1.png);background-position:-753px -379px;width:60px;height:60px}.hair_base_14_yellow{background-image:url(spritesmith1.png);background-position:-819px 0;width:90px;height:90px}.customize-option.hair_base_14_yellow{background-image:url(spritesmith1.png);background-position:-844px -15px;width:60px;height:60px}.hair_base_1_TRUred{background-image:url(spritesmith1.png);background-position:0 -819px;width:90px;height:90px}.customize-option.hair_base_1_TRUred{background-image:url(spritesmith1.png);background-position:-25px -834px;width:60px;height:60px}.hair_base_1_aurora{background-image:url(spritesmith1.png);background-position:-91px -819px;width:90px;height:90px}.customize-option.hair_base_1_aurora{background-image:url(spritesmith1.png);background-position:-116px -834px;width:60px;height:60px}.hair_base_1_black{background-image:url(spritesmith1.png);background-position:-819px -91px;width:90px;height:90px}.customize-option.hair_base_1_black{background-image:url(spritesmith1.png);background-position:-844px -106px;width:60px;height:60px}.hair_base_1_blond{background-image:url(spritesmith1.png);background-position:-819px -182px;width:90px;height:90px}.customize-option.hair_base_1_blond{background-image:url(spritesmith1.png);background-position:-844px -197px;width:60px;height:60px}.hair_base_1_blue{background-image:url(spritesmith1.png);background-position:-182px -819px;width:90px;height:90px}.customize-option.hair_base_1_blue{background-image:url(spritesmith1.png);background-position:-207px -834px;width:60px;height:60px}.hair_base_1_brown{background-image:url(spritesmith1.png);background-position:-637px -546px;width:90px;height:90px}.customize-option.hair_base_1_brown{background-image:url(spritesmith1.png);background-position:-662px -561px;width:60px;height:60px}.hair_base_1_candycane{background-image:url(spritesmith1.png);background-position:-546px -637px;width:90px;height:90px}.customize-option.hair_base_1_candycane{background-image:url(spritesmith1.png);background-position:-571px -652px;width:60px;height:60px}.hair_base_1_candycorn{background-image:url(spritesmith1.png);background-position:-728px -455px;width:90px;height:90px}.customize-option.hair_base_1_candycorn{background-image:url(spritesmith1.png);background-position:-753px -470px;width:60px;height:60px}.hair_base_1_festive{background-image:url(spritesmith1.png);background-position:-455px -728px;width:90px;height:90px}.customize-option.hair_base_1_festive{background-image:url(spritesmith1.png);background-position:-480px -743px;width:60px;height:60px}.hair_base_1_frost{background-image:url(spritesmith1.png);background-position:-273px -819px;width:90px;height:90px}.customize-option.hair_base_1_frost{background-image:url(spritesmith1.png);background-position:-298px -834px;width:60px;height:60px}.hair_base_1_ghostwhite{background-image:url(spritesmith1.png);background-position:-819px -273px;width:90px;height:90px}.customize-option.hair_base_1_ghostwhite{background-image:url(spritesmith1.png);background-position:-844px -288px;width:60px;height:60px}.hair_base_1_green{background-image:url(spritesmith1.png);background-position:-819px -364px;width:90px;height:90px}.customize-option.hair_base_1_green{background-image:url(spritesmith1.png);background-position:-844px -379px;width:60px;height:60px}.hair_base_1_halloween{background-image:url(spritesmith1.png);background-position:-364px -819px;width:90px;height:90px}.customize-option.hair_base_1_halloween{background-image:url(spritesmith1.png);background-position:-389px -834px;width:60px;height:60px}.hair_base_1_holly{background-image:url(spritesmith1.png);background-position:-637px -637px;width:90px;height:90px}.customize-option.hair_base_1_holly{background-image:url(spritesmith1.png);background-position:-662px -652px;width:60px;height:60px}.hair_base_1_hollygreen{background-image:url(spritesmith1.png);background-position:-546px -728px;width:90px;height:90px}.customize-option.hair_base_1_hollygreen{background-image:url(spritesmith1.png);background-position:-571px -743px;width:60px;height:60px}.hair_base_1_midnight{background-image:url(spritesmith1.png);background-position:-728px -546px;width:90px;height:90px}.customize-option.hair_base_1_midnight{background-image:url(spritesmith1.png);background-position:-753px -561px;width:60px;height:60px}.hair_base_1_pblue{background-image:url(spritesmith1.png);background-position:0 -910px;width:90px;height:90px}.customize-option.hair_base_1_pblue{background-image:url(spritesmith1.png);background-position:-25px -925px;width:60px;height:60px}.hair_base_1_peppermint{background-image:url(spritesmith1.png);background-position:-910px 0;width:90px;height:90px}.customize-option.hair_base_1_peppermint{background-image:url(spritesmith1.png);background-position:-935px -15px;width:60px;height:60px}.hair_base_1_pgreen{background-image:url(spritesmith1.png);background-position:-910px -91px;width:90px;height:90px}.customize-option.hair_base_1_pgreen{background-image:url(spritesmith1.png);background-position:-935px -106px;width:60px;height:60px}.hair_base_1_porange{background-image:url(spritesmith1.png);background-position:-91px -910px;width:90px;height:90px}.customize-option.hair_base_1_porange{background-image:url(spritesmith1.png);background-position:-116px -925px;width:60px;height:60px}.hair_base_1_ppink{background-image:url(spritesmith1.png);background-position:-182px -910px;width:90px;height:90px}.customize-option.hair_base_1_ppink{background-image:url(spritesmith1.png);background-position:-207px -925px;width:60px;height:60px}.hair_base_1_ppurple{background-image:url(spritesmith1.png);background-position:-910px -182px;width:90px;height:90px}.customize-option.hair_base_1_ppurple{background-image:url(spritesmith1.png);background-position:-935px -197px;width:60px;height:60px}.hair_base_1_pumpkin{background-image:url(spritesmith1.png);background-position:-455px -819px;width:90px;height:90px}.customize-option.hair_base_1_pumpkin{background-image:url(spritesmith1.png);background-position:-480px -834px;width:60px;height:60px}.hair_base_1_purple{background-image:url(spritesmith1.png);background-position:-819px -455px;width:90px;height:90px}.customize-option.hair_base_1_purple{background-image:url(spritesmith1.png);background-position:-844px -470px;width:60px;height:60px}.hair_base_1_pyellow{background-image:url(spritesmith1.png);background-position:-910px -273px;width:90px;height:90px}.customize-option.hair_base_1_pyellow{background-image:url(spritesmith1.png);background-position:-935px -288px;width:60px;height:60px}.hair_base_1_rainbow{background-image:url(spritesmith1.png);background-position:-273px -910px;width:90px;height:90px}.customize-option.hair_base_1_rainbow{background-image:url(spritesmith1.png);background-position:-298px -925px;width:60px;height:60px}.hair_base_1_red{background-image:url(spritesmith1.png);background-position:-728px -637px;width:90px;height:90px}.customize-option.hair_base_1_red{background-image:url(spritesmith1.png);background-position:-753px -652px;width:60px;height:60px}.hair_base_1_snowy{background-image:url(spritesmith1.png);background-position:-637px -728px;width:90px;height:90px}.customize-option.hair_base_1_snowy{background-image:url(spritesmith1.png);background-position:-662px -743px;width:60px;height:60px}.hair_base_1_white{background-image:url(spritesmith1.png);background-position:-364px -910px;width:90px;height:90px}.customize-option.hair_base_1_white{background-image:url(spritesmith1.png);background-position:-389px -925px;width:60px;height:60px}.hair_base_1_winternight{background-image:url(spritesmith1.png);background-position:-910px -364px;width:90px;height:90px}.customize-option.hair_base_1_winternight{background-image:url(spritesmith1.png);background-position:-935px -379px;width:60px;height:60px}.hair_base_1_winterstar{background-image:url(spritesmith1.png);background-position:-819px -546px;width:90px;height:90px}.customize-option.hair_base_1_winterstar{background-image:url(spritesmith1.png);background-position:-844px -561px;width:60px;height:60px}.hair_base_1_yellow{background-image:url(spritesmith1.png);background-position:-546px -819px;width:90px;height:90px}.customize-option.hair_base_1_yellow{background-image:url(spritesmith1.png);background-position:-571px -834px;width:60px;height:60px}.hair_base_1_zombie{background-image:url(spritesmith1.png);background-position:-1001px 0;width:90px;height:90px}.customize-option.hair_base_1_zombie{background-image:url(spritesmith1.png);background-position:-1026px -15px;width:60px;height:60px}.hair_base_2_TRUred{background-image:url(spritesmith1.png);background-position:0 -1001px;width:90px;height:90px}.customize-option.hair_base_2_TRUred{background-image:url(spritesmith1.png);background-position:-25px -1016px;width:60px;height:60px}.hair_base_2_aurora{background-image:url(spritesmith1.png);background-position:-91px -1001px;width:90px;height:90px}.customize-option.hair_base_2_aurora{background-image:url(spritesmith1.png);background-position:-116px -1016px;width:60px;height:60px}.hair_base_2_black{background-image:url(spritesmith1.png);background-position:-1001px -91px;width:90px;height:90px}.customize-option.hair_base_2_black{background-image:url(spritesmith1.png);background-position:-1026px -106px;width:60px;height:60px}.hair_base_2_blond{background-image:url(spritesmith1.png);background-position:-1001px -182px;width:90px;height:90px}.customize-option.hair_base_2_blond{background-image:url(spritesmith1.png);background-position:-1026px -197px;width:60px;height:60px}.hair_base_2_blue{background-image:url(spritesmith1.png);background-position:-182px -1001px;width:90px;height:90px}.customize-option.hair_base_2_blue{background-image:url(spritesmith1.png);background-position:-207px -1016px;width:60px;height:60px}.hair_base_2_brown{background-image:url(spritesmith1.png);background-position:-910px -455px;width:90px;height:90px}.customize-option.hair_base_2_brown{background-image:url(spritesmith1.png);background-position:-935px -470px;width:60px;height:60px}.hair_base_2_candycane{background-image:url(spritesmith1.png);background-position:-455px -910px;width:90px;height:90px}.customize-option.hair_base_2_candycane{background-image:url(spritesmith1.png);background-position:-480px -925px;width:60px;height:60px}.hair_base_2_candycorn{background-image:url(spritesmith1.png);background-position:-728px -728px;width:90px;height:90px}.customize-option.hair_base_2_candycorn{background-image:url(spritesmith1.png);background-position:-753px -743px;width:60px;height:60px}.hair_base_2_festive{background-image:url(spritesmith1.png);background-position:-273px -1001px;width:90px;height:90px}.customize-option.hair_base_2_festive{background-image:url(spritesmith1.png);background-position:-298px -1016px;width:60px;height:60px}.hair_base_2_frost{background-image:url(spritesmith1.png);background-position:-1001px -273px;width:90px;height:90px}.customize-option.hair_base_2_frost{background-image:url(spritesmith1.png);background-position:-1026px -288px;width:60px;height:60px}.hair_base_2_ghostwhite{background-image:url(spritesmith1.png);background-position:-637px -819px;width:90px;height:90px}.customize-option.hair_base_2_ghostwhite{background-image:url(spritesmith1.png);background-position:-662px -834px;width:60px;height:60px}.hair_base_2_green{background-image:url(spritesmith1.png);background-position:-819px -637px;width:90px;height:90px}.customize-option.hair_base_2_green{background-image:url(spritesmith1.png);background-position:-844px -652px;width:60px;height:60px}.hair_base_2_halloween{background-image:url(spritesmith1.png);background-position:-546px -910px;width:90px;height:90px}.customize-option.hair_base_2_halloween{background-image:url(spritesmith1.png);background-position:-571px -925px;width:60px;height:60px}.hair_base_2_holly{background-image:url(spritesmith1.png);background-position:-910px -546px;width:90px;height:90px}.customize-option.hair_base_2_holly{background-image:url(spritesmith1.png);background-position:-935px -561px;width:60px;height:60px}.hair_base_2_hollygreen{background-image:url(spritesmith1.png);background-position:-1001px -364px;width:90px;height:90px}.customize-option.hair_base_2_hollygreen{background-image:url(spritesmith1.png);background-position:-1026px -379px;width:60px;height:60px}.hair_base_2_midnight{background-image:url(spritesmith1.png);background-position:-364px -1001px;width:90px;height:90px}.customize-option.hair_base_2_midnight{background-image:url(spritesmith1.png);background-position:-389px -1016px;width:60px;height:60px}.hair_base_2_pblue{background-image:url(spritesmith1.png);background-position:0 -1092px;width:90px;height:90px}.customize-option.hair_base_2_pblue{background-image:url(spritesmith1.png);background-position:-25px -1107px;width:60px;height:60px}.hair_base_2_peppermint{background-image:url(spritesmith1.png);background-position:-1092px 0;width:90px;height:90px}.customize-option.hair_base_2_peppermint{background-image:url(spritesmith1.png);background-position:-1117px -15px;width:60px;height:60px}.hair_base_2_pgreen{background-image:url(spritesmith1.png);background-position:-1092px -91px;width:90px;height:90px}.customize-option.hair_base_2_pgreen{background-image:url(spritesmith1.png);background-position:-1117px -106px;width:60px;height:60px}.hair_base_2_porange{background-image:url(spritesmith1.png);background-position:-91px -1092px;width:90px;height:90px}.customize-option.hair_base_2_porange{background-image:url(spritesmith1.png);background-position:-116px -1107px;width:60px;height:60px}.hair_base_2_ppink{background-image:url(spritesmith1.png);background-position:-819px -728px;width:90px;height:90px}.customize-option.hair_base_2_ppink{background-image:url(spritesmith1.png);background-position:-844px -743px;width:60px;height:60px}.hair_base_2_ppurple{background-image:url(spritesmith1.png);background-position:-728px -819px;width:90px;height:90px}.customize-option.hair_base_2_ppurple{background-image:url(spritesmith1.png);background-position:-753px -834px;width:60px;height:60px}.hair_base_2_pumpkin{background-image:url(spritesmith1.png);background-position:-1001px -455px;width:90px;height:90px}.customize-option.hair_base_2_pumpkin{background-image:url(spritesmith1.png);background-position:-1026px -470px;width:60px;height:60px}.hair_base_2_purple{background-image:url(spritesmith1.png);background-position:-455px -1001px;width:90px;height:90px}.customize-option.hair_base_2_purple{background-image:url(spritesmith1.png);background-position:-480px -1016px;width:60px;height:60px}.hair_base_2_pyellow{background-image:url(spritesmith1.png);background-position:-182px -1092px;width:90px;height:90px}.customize-option.hair_base_2_pyellow{background-image:url(spritesmith1.png);background-position:-207px -1107px;width:60px;height:60px}.hair_base_2_rainbow{background-image:url(spritesmith1.png);background-position:-1092px -182px;width:90px;height:90px}.customize-option.hair_base_2_rainbow{background-image:url(spritesmith1.png);background-position:-1117px -197px;width:60px;height:60px}.hair_base_2_red{background-image:url(spritesmith1.png);background-position:-910px -637px;width:90px;height:90px}.customize-option.hair_base_2_red{background-image:url(spritesmith1.png);background-position:-935px -652px;width:60px;height:60px}.hair_base_2_snowy{background-image:url(spritesmith1.png);background-position:-637px -910px;width:90px;height:90px}.customize-option.hair_base_2_snowy{background-image:url(spritesmith1.png);background-position:-662px -925px;width:60px;height:60px}.hair_base_2_white{background-image:url(spritesmith1.png);background-position:-1092px -273px;width:90px;height:90px}.customize-option.hair_base_2_white{background-image:url(spritesmith1.png);background-position:-1117px -288px;width:60px;height:60px}.hair_base_2_winternight{background-image:url(spritesmith1.png);background-position:-273px -1092px;width:90px;height:90px}.customize-option.hair_base_2_winternight{background-image:url(spritesmith1.png);background-position:-298px -1107px;width:60px;height:60px}.hair_base_2_winterstar{background-image:url(spritesmith1.png);background-position:-546px -1001px;width:90px;height:90px}.customize-option.hair_base_2_winterstar{background-image:url(spritesmith1.png);background-position:-571px -1016px;width:60px;height:60px}.hair_base_2_yellow{background-image:url(spritesmith1.png);background-position:-1001px -546px;width:90px;height:90px}.customize-option.hair_base_2_yellow{background-image:url(spritesmith1.png);background-position:-1026px -561px;width:60px;height:60px}.hair_base_2_zombie{background-image:url(spritesmith1.png);background-position:-364px -1092px;width:90px;height:90px}.customize-option.hair_base_2_zombie{background-image:url(spritesmith1.png);background-position:-389px -1107px;width:60px;height:60px}.hair_base_3_TRUred{background-image:url(spritesmith1.png);background-position:-1092px -364px;width:90px;height:90px}.customize-option.hair_base_3_TRUred{background-image:url(spritesmith1.png);background-position:-1117px -379px;width:60px;height:60px}.hair_base_3_aurora{background-image:url(spritesmith1.png);background-position:-819px -819px;width:90px;height:90px}.customize-option.hair_base_3_aurora{background-image:url(spritesmith1.png);background-position:-844px -834px;width:60px;height:60px}.hair_base_3_black{background-image:url(spritesmith1.png);background-position:-728px -910px;width:90px;height:90px}.customize-option.hair_base_3_black{background-image:url(spritesmith1.png);background-position:-753px -925px;width:60px;height:60px}.hair_base_3_blond{background-image:url(spritesmith1.png);background-position:-910px -728px;width:90px;height:90px}.customize-option.hair_base_3_blond{background-image:url(spritesmith1.png);background-position:-935px -743px;width:60px;height:60px}.hair_base_3_blue{background-image:url(spritesmith1.png);background-position:-1092px -455px;width:90px;height:90px}.customize-option.hair_base_3_blue{background-image:url(spritesmith1.png);background-position:-1117px -470px;width:60px;height:60px}.hair_base_3_brown{background-image:url(spritesmith1.png);background-position:-455px -1092px;width:90px;height:90px}.customize-option.hair_base_3_brown{background-image:url(spritesmith1.png);background-position:-480px -1107px;width:60px;height:60px}.hair_base_3_candycane{background-image:url(spritesmith1.png);background-position:0 -1183px;width:90px;height:90px}.customize-option.hair_base_3_candycane{background-image:url(spritesmith1.png);background-position:-25px -1198px;width:60px;height:60px}.hair_base_3_candycorn{background-image:url(spritesmith1.png);background-position:-1183px 0;width:90px;height:90px}.customize-option.hair_base_3_candycorn{background-image:url(spritesmith1.png);background-position:-1208px -15px;width:60px;height:60px}.hair_base_3_festive{background-image:url(spritesmith1.png);background-position:-1183px -91px;width:90px;height:90px}.customize-option.hair_base_3_festive{background-image:url(spritesmith1.png);background-position:-1208px -106px;width:60px;height:60px}.hair_base_3_frost{background-image:url(spritesmith1.png);background-position:-91px -1183px;width:90px;height:90px}.customize-option.hair_base_3_frost{background-image:url(spritesmith1.png);background-position:-116px -1198px;width:60px;height:60px}.hair_base_3_ghostwhite{background-image:url(spritesmith1.png);background-position:-1001px -637px;width:90px;height:90px}.customize-option.hair_base_3_ghostwhite{background-image:url(spritesmith1.png);background-position:-1026px -652px;width:60px;height:60px}.hair_base_3_green{background-image:url(spritesmith1.png);background-position:-637px -1001px;width:90px;height:90px}.customize-option.hair_base_3_green{background-image:url(spritesmith1.png);background-position:-662px -1016px;width:60px;height:60px}.hair_base_3_halloween{background-image:url(spritesmith1.png);background-position:-182px -1183px;width:90px;height:90px}.customize-option.hair_base_3_halloween{background-image:url(spritesmith1.png);background-position:-207px -1198px;width:60px;height:60px}.hair_base_3_holly{background-image:url(spritesmith1.png);background-position:-1183px -182px;width:90px;height:90px}.customize-option.hair_base_3_holly{background-image:url(spritesmith1.png);background-position:-1208px -197px;width:60px;height:60px}.hair_base_3_hollygreen{background-image:url(spritesmith1.png);background-position:-273px -1183px;width:90px;height:90px}.customize-option.hair_base_3_hollygreen{background-image:url(spritesmith1.png);background-position:-298px -1198px;width:60px;height:60px}.hair_base_3_midnight{background-image:url(spritesmith1.png);background-position:-1183px -273px;width:90px;height:90px}.customize-option.hair_base_3_midnight{background-image:url(spritesmith1.png);background-position:-1208px -288px;width:60px;height:60px}.hair_base_3_pblue{background-image:url(spritesmith1.png);background-position:-1092px -546px;width:90px;height:90px}.customize-option.hair_base_3_pblue{background-image:url(spritesmith1.png);background-position:-1117px -561px;width:60px;height:60px}.hair_base_3_peppermint{background-image:url(spritesmith1.png);background-position:-546px -1092px;width:90px;height:90px}.customize-option.hair_base_3_peppermint{background-image:url(spritesmith1.png);background-position:-571px -1107px;width:60px;height:60px}.hair_base_3_pgreen{background-image:url(spritesmith1.png);background-position:-819px -910px;width:90px;height:90px}.customize-option.hair_base_3_pgreen{background-image:url(spritesmith1.png);background-position:-844px -925px;width:60px;height:60px}.hair_base_3_porange{background-image:url(spritesmith1.png);background-position:-910px -819px;width:90px;height:90px}.customize-option.hair_base_3_porange{background-image:url(spritesmith1.png);background-position:-935px -834px;width:60px;height:60px}.hair_base_3_ppink{background-image:url(spritesmith1.png);background-position:-364px -1183px;width:90px;height:90px}.customize-option.hair_base_3_ppink{background-image:url(spritesmith1.png);background-position:-389px -1198px;width:60px;height:60px}.hair_base_3_ppurple{background-image:url(spritesmith1.png);background-position:-1001px -728px;width:90px;height:90px}.customize-option.hair_base_3_ppurple{background-image:url(spritesmith1.png);background-position:-1026px -743px;width:60px;height:60px}.hair_base_3_pumpkin{background-image:url(spritesmith1.png);background-position:-1183px -364px;width:90px;height:90px}.customize-option.hair_base_3_pumpkin{background-image:url(spritesmith1.png);background-position:-1208px -379px;width:60px;height:60px}.hair_base_3_purple{background-image:url(spritesmith1.png);background-position:-728px -1001px;width:90px;height:90px}.customize-option.hair_base_3_purple{background-image:url(spritesmith1.png);background-position:-753px -1016px;width:60px;height:60px}.hair_base_3_pyellow{background-image:url(spritesmith1.png);background-position:-637px -1092px;width:90px;height:90px}.customize-option.hair_base_3_pyellow{background-image:url(spritesmith1.png);background-position:-662px -1107px;width:60px;height:60px}.hair_base_3_rainbow{background-image:url(spritesmith1.png);background-position:-1092px -637px;width:90px;height:90px}.customize-option.hair_base_3_rainbow{background-image:url(spritesmith1.png);background-position:-1117px -652px;width:60px;height:60px}.hair_base_3_red{background-image:url(spritesmith1.png);background-position:-1183px -455px;width:90px;height:90px}.customize-option.hair_base_3_red{background-image:url(spritesmith1.png);background-position:-1208px -470px;width:60px;height:60px}.hair_base_3_snowy{background-image:url(spritesmith1.png);background-position:-455px -1183px;width:90px;height:90px}.customize-option.hair_base_3_snowy{background-image:url(spritesmith1.png);background-position:-480px -1198px;width:60px;height:60px}.hair_base_3_white{background-image:url(spritesmith1.png);background-position:-1274px 0;width:90px;height:90px}.customize-option.hair_base_3_white{background-image:url(spritesmith1.png);background-position:-1299px -15px;width:60px;height:60px}.hair_base_3_winternight{background-image:url(spritesmith1.png);background-position:0 -1274px;width:90px;height:90px}.customize-option.hair_base_3_winternight{background-image:url(spritesmith1.png);background-position:-25px -1289px;width:60px;height:60px}.hair_base_3_winterstar{background-image:url(spritesmith1.png);background-position:-91px -1274px;width:90px;height:90px}.customize-option.hair_base_3_winterstar{background-image:url(spritesmith1.png);background-position:-116px -1289px;width:60px;height:60px}.hair_base_3_yellow{background-image:url(spritesmith1.png);background-position:-1274px -91px;width:90px;height:90px}.customize-option.hair_base_3_yellow{background-image:url(spritesmith1.png);background-position:-1299px -106px;width:60px;height:60px}.hair_base_3_zombie{background-image:url(spritesmith1.png);background-position:-182px -1274px;width:90px;height:90px}.customize-option.hair_base_3_zombie{background-image:url(spritesmith1.png);background-position:-207px -1289px;width:60px;height:60px}.hair_base_4_TRUred{background-image:url(spritesmith1.png);background-position:-910px -910px;width:90px;height:90px}.customize-option.hair_base_4_TRUred{background-image:url(spritesmith1.png);background-position:-935px -925px;width:60px;height:60px}.hair_base_4_aurora{background-image:url(spritesmith1.png);background-position:-1274px -182px;width:90px;height:90px}.customize-option.hair_base_4_aurora{background-image:url(spritesmith1.png);background-position:-1299px -197px;width:60px;height:60px}.hair_base_4_black{background-image:url(spritesmith1.png);background-position:-1001px -819px;width:90px;height:90px}.customize-option.hair_base_4_black{background-image:url(spritesmith1.png);background-position:-1026px -834px;width:60px;height:60px}.hair_base_4_blond{background-image:url(spritesmith1.png);background-position:-819px -1001px;width:90px;height:90px}.customize-option.hair_base_4_blond{background-image:url(spritesmith1.png);background-position:-844px -1016px;width:60px;height:60px}.hair_base_4_blue{background-image:url(spritesmith1.png);background-position:-1183px -546px;width:90px;height:90px}.customize-option.hair_base_4_blue{background-image:url(spritesmith1.png);background-position:-1208px -561px;width:60px;height:60px}.hair_base_4_brown{background-image:url(spritesmith1.png);background-position:-1274px -273px;width:90px;height:90px}.customize-option.hair_base_4_brown{background-image:url(spritesmith1.png);background-position:-1299px -288px;width:60px;height:60px}.hair_base_4_candycane{background-image:url(spritesmith1.png);background-position:-546px -1183px;width:90px;height:90px}.customize-option.hair_base_4_candycane{background-image:url(spritesmith1.png);background-position:-571px -1198px;width:60px;height:60px}.hair_base_4_candycorn{background-image:url(spritesmith1.png);background-position:-273px -1274px;width:90px;height:90px}.customize-option.hair_base_4_candycorn{background-image:url(spritesmith1.png);background-position:-298px -1289px;width:60px;height:60px}.hair_base_4_festive{background-image:url(spritesmith1.png);background-position:-728px -1092px;width:90px;height:90px}.customize-option.hair_base_4_festive{background-image:url(spritesmith1.png);background-position:-753px -1107px;width:60px;height:60px}.hair_base_4_frost{background-image:url(spritesmith1.png);background-position:-1092px -728px;width:90px;height:90px}.customize-option.hair_base_4_frost{background-image:url(spritesmith1.png);background-position:-1117px -743px;width:60px;height:60px}.hair_base_4_ghostwhite{background-image:url(spritesmith1.png);background-position:-364px -1274px;width:90px;height:90px}.customize-option.hair_base_4_ghostwhite{background-image:url(spritesmith1.png);background-position:-389px -1289px;width:60px;height:60px}.hair_base_4_green{background-image:url(spritesmith1.png);background-position:-1274px -364px;width:90px;height:90px}.customize-option.hair_base_4_green{background-image:url(spritesmith1.png);background-position:-1299px -379px;width:60px;height:60px}.hair_base_4_halloween{background-image:url(spritesmith1.png);background-position:-1183px -637px;width:90px;height:90px}.customize-option.hair_base_4_halloween{background-image:url(spritesmith1.png);background-position:-1208px -652px;width:60px;height:60px}.hair_base_4_holly{background-image:url(spritesmith1.png);background-position:0 0;width:90px;height:90px}.customize-option.hair_base_4_holly{background-image:url(spritesmith1.png);background-position:-25px -15px;width:60px;height:60px}.hair_base_4_hollygreen{background-image:url(spritesmith1.png);background-position:-1001px -910px;width:90px;height:90px}.customize-option.hair_base_4_hollygreen{background-image:url(spritesmith1.png);background-position:-1026px -925px;width:60px;height:60px}.hair_base_4_midnight{background-image:url(spritesmith1.png);background-position:-1274px -455px;width:90px;height:90px}.customize-option.hair_base_4_midnight{background-image:url(spritesmith1.png);background-position:-1299px -470px;width:60px;height:60px}.hair_base_4_pblue{background-image:url(spritesmith1.png);background-position:-455px -1274px;width:90px;height:90px}.customize-option.hair_base_4_pblue{background-image:url(spritesmith1.png);background-position:-480px -1289px;width:60px;height:60px}.hair_base_4_peppermint{background-image:url(spritesmith1.png);background-position:-910px -1001px;width:90px;height:90px}.customize-option.hair_base_4_peppermint{background-image:url(spritesmith1.png);background-position:-935px -1016px;width:60px;height:60px}.hair_base_4_pgreen{background-image:url(spritesmith1.png);background-position:-1365px 0;width:90px;height:90px}.customize-option.hair_base_4_pgreen{background-image:url(spritesmith1.png);background-position:-1390px -15px;width:60px;height:60px}.hair_base_4_porange{background-image:url(spritesmith1.png);background-position:-1092px -819px;width:90px;height:90px}.customize-option.hair_base_4_porange{background-image:url(spritesmith1.png);background-position:-1117px -834px;width:60px;height:60px}.hair_base_4_ppink{background-image:url(spritesmith1.png);background-position:0 -1365px;width:90px;height:90px}.customize-option.hair_base_4_ppink{background-image:url(spritesmith1.png);background-position:-25px -1380px;width:60px;height:60px}.hair_base_4_ppurple{background-image:url(spritesmith1.png);background-position:-819px -1092px;width:90px;height:90px}.customize-option.hair_base_4_ppurple{background-image:url(spritesmith1.png);background-position:-844px -1107px;width:60px;height:60px}.hair_base_4_pumpkin{background-image:url(spritesmith1.png);background-position:-91px -1365px;width:90px;height:90px}.customize-option.hair_base_4_pumpkin{background-image:url(spritesmith1.png);background-position:-116px -1380px;width:60px;height:60px}.hair_base_4_purple{background-image:url(spritesmith1.png);background-position:-1365px -91px;width:90px;height:90px}.customize-option.hair_base_4_purple{background-image:url(spritesmith1.png);background-position:-1390px -106px;width:60px;height:60px}.hair_base_4_pyellow{background-image:url(spritesmith1.png);background-position:-182px -1365px;width:90px;height:90px}.customize-option.hair_base_4_pyellow{background-image:url(spritesmith1.png);background-position:-207px -1380px;width:60px;height:60px}.hair_base_4_rainbow{background-image:url(spritesmith1.png);background-position:-1365px -182px;width:90px;height:90px}.customize-option.hair_base_4_rainbow{background-image:url(spritesmith1.png);background-position:-1390px -197px;width:60px;height:60px}.hair_base_4_red{background-image:url(spritesmith1.png);background-position:-1274px -546px;width:90px;height:90px}.customize-option.hair_base_4_red{background-image:url(spritesmith1.png);background-position:-1299px -561px;width:60px;height:60px}.hair_base_4_snowy{background-image:url(spritesmith1.png);background-position:-546px -1274px;width:90px;height:90px}.customize-option.hair_base_4_snowy{background-image:url(spritesmith1.png);background-position:-571px -1289px;width:60px;height:60px}.hair_base_4_white{background-image:url(spritesmith1.png);background-position:-1183px -728px;width:90px;height:90px}.customize-option.hair_base_4_white{background-image:url(spritesmith1.png);background-position:-1208px -743px;width:60px;height:60px}.hair_base_4_winternight{background-image:url(spritesmith1.png);background-position:-728px -1183px;width:90px;height:90px}.customize-option.hair_base_4_winternight{background-image:url(spritesmith1.png);background-position:-753px -1198px;width:60px;height:60px}.hair_base_4_winterstar{background-image:url(spritesmith1.png);background-position:-1365px -273px;width:90px;height:90px}.customize-option.hair_base_4_winterstar{background-image:url(spritesmith1.png);background-position:-1390px -288px;width:60px;height:60px}.hair_base_4_yellow{background-image:url(spritesmith1.png);background-position:-273px -1365px;width:90px;height:90px}.customize-option.hair_base_4_yellow{background-image:url(spritesmith1.png);background-position:-298px -1380px;width:60px;height:60px}.hair_base_4_zombie{background-image:url(spritesmith1.png);background-position:-364px -1365px;width:90px;height:90px}.customize-option.hair_base_4_zombie{background-image:url(spritesmith1.png);background-position:-389px -1380px;width:60px;height:60px}.hair_base_5_TRUred{background-image:url(spritesmith1.png);background-position:-1365px -364px;width:90px;height:90px}.customize-option.hair_base_5_TRUred{background-image:url(spritesmith1.png);background-position:-1390px -379px;width:60px;height:60px}.hair_base_5_aurora{background-image:url(spritesmith1.png);background-position:-1001px -1001px;width:90px;height:90px}.customize-option.hair_base_5_aurora{background-image:url(spritesmith1.png);background-position:-1026px -1016px;width:60px;height:60px}.hair_base_5_black{background-image:url(spritesmith1.png);background-position:-1092px -910px;width:90px;height:90px}.customize-option.hair_base_5_black{background-image:url(spritesmith1.png);background-position:-1117px -925px;width:60px;height:60px}.hair_base_5_blond{background-image:url(spritesmith1.png);background-position:-910px -1092px;width:90px;height:90px}.customize-option.hair_base_5_blond{background-image:url(spritesmith1.png);background-position:-935px -1107px;width:60px;height:60px}.hair_base_5_blue{background-image:url(spritesmith1.png);background-position:-1274px -637px;width:90px;height:90px}.customize-option.hair_base_5_blue{background-image:url(spritesmith1.png);background-position:-1299px -652px;width:60px;height:60px}.hair_base_5_brown{background-image:url(spritesmith1.png);background-position:-637px -1274px;width:90px;height:90px}.customize-option.hair_base_5_brown{background-image:url(spritesmith1.png);background-position:-662px -1289px;width:60px;height:60px}.hair_base_5_candycane{background-image:url(spritesmith1.png);background-position:-819px -1183px;width:90px;height:90px}.customize-option.hair_base_5_candycane{background-image:url(spritesmith1.png);background-position:-844px -1198px;width:60px;height:60px}.hair_base_5_candycorn{background-image:url(spritesmith1.png);background-position:-455px -1365px;width:90px;height:90px}.customize-option.hair_base_5_candycorn{background-image:url(spritesmith1.png);background-position:-480px -1380px;width:60px;height:60px}.hair_base_5_festive{background-image:url(spritesmith1.png);background-position:-1183px -819px;width:90px;height:90px}.customize-option.hair_base_5_festive{background-image:url(spritesmith1.png);background-position:-1208px -834px;width:60px;height:60px}.hair_base_5_frost{background-image:url(spritesmith1.png);background-position:-1365px -455px;width:90px;height:90px}.customize-option.hair_base_5_frost{background-image:url(spritesmith1.png);background-position:-1390px -470px;width:60px;height:60px}.hair_base_5_ghostwhite{background-image:url(spritesmith1.png);background-position:0 -1456px;width:90px;height:90px}.customize-option.hair_base_5_ghostwhite{background-image:url(spritesmith1.png);background-position:-25px -1471px;width:60px;height:60px}.hair_base_5_green{background-image:url(spritesmith1.png);background-position:-1456px 0;width:90px;height:90px}.customize-option.hair_base_5_green{background-image:url(spritesmith1.png);background-position:-1481px -15px;width:60px;height:60px}.hair_base_5_halloween{background-image:url(spritesmith1.png);background-position:-91px -1456px;width:90px;height:90px}.customize-option.hair_base_5_halloween{background-image:url(spritesmith1.png);background-position:-116px -1471px;width:60px;height:60px}.hair_base_5_holly{background-image:url(spritesmith1.png);background-position:-1456px -91px;width:90px;height:90px}.customize-option.hair_base_5_holly{background-image:url(spritesmith1.png);background-position:-1481px -106px;width:60px;height:60px}.hair_base_5_hollygreen{background-image:url(spritesmith1.png);background-position:-182px -1456px;width:90px;height:90px}.customize-option.hair_base_5_hollygreen{background-image:url(spritesmith1.png);background-position:-207px -1471px;width:60px;height:60px}.hair_base_5_midnight{background-image:url(spritesmith1.png);background-position:-728px -1274px;width:90px;height:90px}.customize-option.hair_base_5_midnight{background-image:url(spritesmith1.png);background-position:-753px -1289px;width:60px;height:60px}.hair_base_5_pblue{background-image:url(spritesmith1.png);background-position:-1274px -728px;width:90px;height:90px}.customize-option.hair_base_5_pblue{background-image:url(spritesmith1.png);background-position:-1299px -743px;width:60px;height:60px}.hair_base_5_peppermint{background-image:url(spritesmith1.png);background-position:-1456px -182px;width:90px;height:90px}.customize-option.hair_base_5_peppermint{background-image:url(spritesmith1.png);background-position:-1481px -197px;width:60px;height:60px}.hair_base_5_pgreen{background-image:url(spritesmith1.png);background-position:-1365px -546px;width:90px;height:90px}.customize-option.hair_base_5_pgreen{background-image:url(spritesmith1.png);background-position:-1390px -561px;width:60px;height:60px}.hair_base_5_porange{background-image:url(spritesmith1.png);background-position:-546px -1365px;width:90px;height:90px}.customize-option.hair_base_5_porange{background-image:url(spritesmith1.png);background-position:-571px -1380px;width:60px;height:60px}.hair_base_5_ppink{background-image:url(spritesmith1.png);background-position:-1456px -273px;width:90px;height:90px}.customize-option.hair_base_5_ppink{background-image:url(spritesmith1.png);background-position:-1481px -288px;width:60px;height:60px}.hair_base_5_ppurple{background-image:url(spritesmith1.png);background-position:-1092px -1001px;width:90px;height:90px}.customize-option.hair_base_5_ppurple{background-image:url(spritesmith1.png);background-position:-1117px -1016px;width:60px;height:60px}.hair_base_5_pumpkin{background-image:url(spritesmith1.png);background-position:-1001px -1092px;width:90px;height:90px}.customize-option.hair_base_5_pumpkin{background-image:url(spritesmith1.png);background-position:-1026px -1107px;width:60px;height:60px}.hair_base_5_purple{background-image:url(spritesmith1.png);background-position:-273px -1456px;width:90px;height:90px}.customize-option.hair_base_5_purple{background-image:url(spritesmith1.png);background-position:-298px -1471px;width:60px;height:60px}.hair_base_5_pyellow{background-image:url(spritesmith1.png);background-position:-1183px -910px;width:90px;height:90px}.customize-option.hair_base_5_pyellow{background-image:url(spritesmith1.png);background-position:-1208px -925px;width:60px;height:60px}.hair_base_5_rainbow{background-image:url(spritesmith1.png);background-position:-910px -1183px;width:90px;height:90px}.customize-option.hair_base_5_rainbow{background-image:url(spritesmith1.png);background-position:-935px -1198px;width:60px;height:60px}.hair_base_5_red{background-image:url(spritesmith1.png);background-position:-364px -1456px;width:90px;height:90px}.customize-option.hair_base_5_red{background-image:url(spritesmith1.png);background-position:-389px -1471px;width:60px;height:60px}.hair_base_5_snowy{background-image:url(spritesmith1.png);background-position:-1456px -364px;width:90px;height:90px}.customize-option.hair_base_5_snowy{background-image:url(spritesmith1.png);background-position:-1481px -379px;width:60px;height:60px}.hair_base_5_white{background-image:url(spritesmith1.png);background-position:-1365px -637px;width:90px;height:90px}.customize-option.hair_base_5_white{background-image:url(spritesmith1.png);background-position:-1390px -652px;width:60px;height:60px}.hair_base_5_winternight{background-image:url(spritesmith1.png);background-position:-637px -1365px;width:90px;height:90px}.customize-option.hair_base_5_winternight{background-image:url(spritesmith1.png);background-position:-662px -1380px;width:60px;height:60px}.hair_base_5_winterstar{background-image:url(spritesmith1.png);background-position:-1274px -819px;width:90px;height:90px}.customize-option.hair_base_5_winterstar{background-image:url(spritesmith1.png);background-position:-1299px -834px;width:60px;height:60px}.hair_base_5_yellow{background-image:url(spritesmith1.png);background-position:-819px -1274px;width:90px;height:90px}.customize-option.hair_base_5_yellow{background-image:url(spritesmith1.png);background-position:-844px -1289px;width:60px;height:60px}.hair_base_5_zombie{background-image:url(spritesmith1.png);background-position:-1456px -455px;width:90px;height:90px}.customize-option.hair_base_5_zombie{background-image:url(spritesmith1.png);background-position:-1481px -470px;width:60px;height:60px}.hair_base_6_TRUred{background-image:url(spritesmith1.png);background-position:-455px -1456px;width:90px;height:90px}.customize-option.hair_base_6_TRUred{background-image:url(spritesmith1.png);background-position:-480px -1471px;width:60px;height:60px}.hair_base_6_aurora{background-image:url(spritesmith1.png);background-position:-1092px -1092px;width:90px;height:90px}.customize-option.hair_base_6_aurora{background-image:url(spritesmith1.png);background-position:-1117px -1107px;width:60px;height:60px}.hair_base_6_black{background-image:url(spritesmith1.png);background-position:-1547px 0;width:90px;height:90px}.customize-option.hair_base_6_black{background-image:url(spritesmith1.png);background-position:-1572px -15px;width:60px;height:60px}.hair_base_6_blond{background-image:url(spritesmith1.png);background-position:-1365px -728px;width:90px;height:90px}.customize-option.hair_base_6_blond{background-image:url(spritesmith1.png);background-position:-1390px -743px;width:60px;height:60px}.hair_base_6_blue{background-image:url(spritesmith1.png);background-position:0 -1547px;width:90px;height:90px}.customize-option.hair_base_6_blue{background-image:url(spritesmith1.png);background-position:-25px -1562px;width:60px;height:60px}.hair_base_6_brown{background-image:url(spritesmith1.png);background-position:-728px -1365px;width:90px;height:90px}.customize-option.hair_base_6_brown{background-image:url(spritesmith1.png);background-position:-753px -1380px;width:60px;height:60px}.hair_base_6_candycane{background-image:url(spritesmith1.png);background-position:-91px -1547px;width:90px;height:90px}.customize-option.hair_base_6_candycane{background-image:url(spritesmith1.png);background-position:-116px -1562px;width:60px;height:60px}.hair_base_6_candycorn{background-image:url(spritesmith1.png);background-position:-1001px -1183px;width:90px;height:90px}.customize-option.hair_base_6_candycorn{background-image:url(spritesmith1.png);background-position:-1026px -1198px;width:60px;height:60px}.hair_base_6_festive{background-image:url(spritesmith1.png);background-position:-1183px -1001px;width:90px;height:90px}.customize-option.hair_base_6_festive{background-image:url(spritesmith1.png);background-position:-1208px -1016px;width:60px;height:60px}.hair_base_6_frost{background-image:url(spritesmith1.png);background-position:-1547px -91px;width:90px;height:90px}.customize-option.hair_base_6_frost{background-image:url(spritesmith1.png);background-position:-1572px -106px;width:60px;height:60px}.hair_base_6_ghostwhite{background-image:url(spritesmith1.png);background-position:-1456px -546px;width:90px;height:90px}.customize-option.hair_base_6_ghostwhite{background-image:url(spritesmith1.png);background-position:-1481px -561px;width:60px;height:60px}.hair_base_6_green{background-image:url(spritesmith1.png);background-position:-546px -1456px;width:90px;height:90px}.customize-option.hair_base_6_green{background-image:url(spritesmith1.png);background-position:-571px -1471px;width:60px;height:60px}.hair_base_6_halloween{background-image:url(spritesmith1.png);background-position:-182px -1547px;width:90px;height:90px}.customize-option.hair_base_6_halloween{background-image:url(spritesmith1.png);background-position:-207px -1562px;width:60px;height:60px}.hair_base_6_holly{background-image:url(spritesmith1.png);background-position:-1547px -182px;width:90px;height:90px}.customize-option.hair_base_6_holly{background-image:url(spritesmith1.png);background-position:-1572px -197px;width:60px;height:60px}.hair_base_6_hollygreen{background-image:url(spritesmith1.png);background-position:-910px -1274px;width:90px;height:90px}.customize-option.hair_base_6_hollygreen{background-image:url(spritesmith1.png);background-position:-935px -1289px;width:60px;height:60px}.hair_base_6_midnight{background-image:url(spritesmith1.png);background-position:-1274px -910px;width:90px;height:90px}.customize-option.hair_base_6_midnight{background-image:url(spritesmith1.png);background-position:-1299px -925px;width:60px;height:60px}.hair_base_6_pblue{background-image:url(spritesmith1.png);background-position:-273px -1547px;width:90px;height:90px}.customize-option.hair_base_6_pblue{background-image:url(spritesmith1.png);background-position:-298px -1562px;width:60px;height:60px}.hair_base_6_peppermint{background-image:url(spritesmith1.png);background-position:-1547px -273px;width:90px;height:90px}.customize-option.hair_base_6_peppermint{background-image:url(spritesmith1.png);background-position:-1572px -288px;width:60px;height:60px}.hair_base_6_pgreen{background-image:url(spritesmith1.png);background-position:-364px -1547px;width:90px;height:90px}.customize-option.hair_base_6_pgreen{background-image:url(spritesmith1.png);background-position:-389px -1562px;width:60px;height:60px}.hair_base_6_porange{background-image:url(spritesmith1.png);background-position:-637px -1456px;width:90px;height:90px}.customize-option.hair_base_6_porange{background-image:url(spritesmith1.png);background-position:-662px -1471px;width:60px;height:60px}.hair_base_6_ppink{background-image:url(spritesmith1.png);background-position:-1456px -637px;width:90px;height:90px}.customize-option.hair_base_6_ppink{background-image:url(spritesmith1.png);background-position:-1481px -652px;width:60px;height:60px}.hair_base_6_ppurple{background-image:url(spritesmith1.png);background-position:-1547px -364px;width:90px;height:90px}.customize-option.hair_base_6_ppurple{background-image:url(spritesmith1.png);background-position:-1572px -379px;width:60px;height:60px}.hair_base_6_pumpkin{background-image:url(spritesmith1.png);background-position:-1365px -819px;width:90px;height:90px}.customize-option.hair_base_6_pumpkin{background-image:url(spritesmith1.png);background-position:-1390px -834px;width:60px;height:60px}.hair_base_6_purple{background-image:url(spritesmith1.png);background-position:-819px -1365px;width:90px;height:90px}.customize-option.hair_base_6_purple{background-image:url(spritesmith1.png);background-position:-844px -1380px;width:60px;height:60px}.hair_base_6_pyellow{background-image:url(spritesmith1.png);background-position:-1092px -1183px;width:90px;height:90px}.customize-option.hair_base_6_pyellow{background-image:url(spritesmith1.png);background-position:-1117px -1198px;width:60px;height:60px}.hair_base_6_rainbow{background-image:url(spritesmith1.png);background-position:-1183px -1092px;width:90px;height:90px}.customize-option.hair_base_6_rainbow{background-image:url(spritesmith1.png);background-position:-1208px -1107px;width:60px;height:60px}.hair_base_6_red{background-image:url(spritesmith1.png);background-position:-1547px -455px;width:90px;height:90px}.customize-option.hair_base_6_red{background-image:url(spritesmith1.png);background-position:-1572px -470px;width:60px;height:60px}.hair_base_6_snowy{background-image:url(spritesmith1.png);background-position:-455px -1547px;width:90px;height:90px}.customize-option.hair_base_6_snowy{background-image:url(spritesmith1.png);background-position:-480px -1562px;width:60px;height:60px}.hair_base_6_white{background-image:url(spritesmith1.png);background-position:-1274px -1001px;width:90px;height:90px}.customize-option.hair_base_6_white{background-image:url(spritesmith1.png);background-position:-1299px -1016px;width:60px;height:60px}.hair_base_6_winternight{background-image:url(spritesmith1.png);background-position:-1001px -1274px;width:90px;height:90px}.customize-option.hair_base_6_winternight{background-image:url(spritesmith1.png);background-position:-1026px -1289px;width:60px;height:60px}.hair_base_6_winterstar{background-image:url(spritesmith1.png);background-position:-728px -1456px;width:90px;height:90px}.customize-option.hair_base_6_winterstar{background-image:url(spritesmith1.png);background-position:-753px -1471px;width:60px;height:60px}.hair_base_6_yellow{background-image:url(spritesmith1.png);background-position:-1456px -728px;width:90px;height:90px}.customize-option.hair_base_6_yellow{background-image:url(spritesmith1.png);background-position:-1481px -743px;width:60px;height:60px}.hair_base_6_zombie{background-image:url(spritesmith1.png);background-position:0 -1638px;width:90px;height:90px}.customize-option.hair_base_6_zombie{background-image:url(spritesmith1.png);background-position:-25px -1653px;width:60px;height:60px}.hair_base_7_TRUred{background-image:url(spritesmith1.png);background-position:-1638px 0;width:90px;height:90px}.customize-option.hair_base_7_TRUred{background-image:url(spritesmith1.png);background-position:-1663px -15px;width:60px;height:60px}.hair_base_7_aurora{background-image:url(spritesmith1.png);background-position:-1638px -91px;width:90px;height:90px}.customize-option.hair_base_7_aurora{background-image:url(spritesmith1.png);background-position:-1663px -106px;width:60px;height:60px}.hair_base_7_black{background-image:url(spritesmith1.png);background-position:-546px -1547px;width:90px;height:90px}.customize-option.hair_base_7_black{background-image:url(spritesmith1.png);background-position:-571px -1562px;width:60px;height:60px}.hair_base_7_blond{background-image:url(spritesmith1.png);background-position:-91px -1638px;width:90px;height:90px}.customize-option.hair_base_7_blond{background-image:url(spritesmith1.png);background-position:-116px -1653px;width:60px;height:60px}.hair_base_7_blue{background-image:url(spritesmith1.png);background-position:-1547px -546px;width:90px;height:90px}.customize-option.hair_base_7_blue{background-image:url(spritesmith1.png);background-position:-1572px -561px;width:60px;height:60px}.hair_base_7_brown{background-image:url(spritesmith1.png);background-position:-1365px -910px;width:90px;height:90px}.customize-option.hair_base_7_brown{background-image:url(spritesmith1.png);background-position:-1390px -925px;width:60px;height:60px}.hair_base_7_candycane{background-image:url(spritesmith1.png);background-position:-910px -1365px;width:90px;height:90px}.customize-option.hair_base_7_candycane{background-image:url(spritesmith1.png);background-position:-935px -1380px;width:60px;height:60px}.hair_base_7_candycorn{background-image:url(spritesmith1.png);background-position:-182px -1638px;width:90px;height:90px}.customize-option.hair_base_7_candycorn{background-image:url(spritesmith1.png);background-position:-207px -1653px;width:60px;height:60px}.hair_base_7_festive{background-image:url(spritesmith1.png);background-position:-1638px -182px;width:90px;height:90px}.customize-option.hair_base_7_festive{background-image:url(spritesmith1.png);background-position:-1663px -197px;width:60px;height:60px}.hair_base_7_frost{background-image:url(spritesmith1.png);background-position:-273px -1638px;width:90px;height:90px}.customize-option.hair_base_7_frost{background-image:url(spritesmith1.png);background-position:-298px -1653px;width:60px;height:60px}.hair_base_7_ghostwhite{background-image:url(spritesmith1.png);background-position:-1638px -273px;width:90px;height:90px}.customize-option.hair_base_7_ghostwhite{background-image:url(spritesmith1.png);background-position:-1663px -288px;width:60px;height:60px}.hair_base_7_green{background-image:url(spritesmith1.png);background-position:-819px -1456px;width:90px;height:90px}.customize-option.hair_base_7_green{background-image:url(spritesmith1.png);background-position:-844px -1471px;width:60px;height:60px}.hair_base_7_halloween{background-image:url(spritesmith1.png);background-position:-1456px -819px;width:90px;height:90px}.customize-option.hair_base_7_halloween{background-image:url(spritesmith1.png);background-position:-1481px -834px;width:60px;height:60px}.hair_base_7_holly{background-image:url(spritesmith1.png);background-position:-1183px -1183px;width:90px;height:90px}.customize-option.hair_base_7_holly{background-image:url(spritesmith1.png);background-position:-1208px -1198px;width:60px;height:60px}.hair_base_7_hollygreen{background-image:url(spritesmith1.png);background-position:-637px -1547px;width:90px;height:90px}.customize-option.hair_base_7_hollygreen{background-image:url(spritesmith1.png);background-position:-662px -1562px;width:60px;height:60px}.hair_base_7_midnight{background-image:url(spritesmith1.png);background-position:-1547px -637px;width:90px;height:90px}.customize-option.hair_base_7_midnight{background-image:url(spritesmith1.png);background-position:-1572px -652px;width:60px;height:60px}.hair_base_7_pblue{background-image:url(spritesmith1.png);background-position:-1092px -1274px;width:90px;height:90px}.customize-option.hair_base_7_pblue{background-image:url(spritesmith1.png);background-position:-1117px -1289px;width:60px;height:60px}.hair_base_7_peppermint{background-image:url(spritesmith1.png);background-position:-1274px -1092px;width:90px;height:90px}.customize-option.hair_base_7_peppermint{background-image:url(spritesmith1.png);background-position:-1299px -1107px;width:60px;height:60px}.hair_base_7_pgreen{background-image:url(spritesmith1.png);background-position:-364px -1638px;width:90px;height:90px}.customize-option.hair_base_7_pgreen{background-image:url(spritesmith1.png);background-position:-389px -1653px;width:60px;height:60px}.hair_base_7_porange{background-image:url(spritesmith1.png);background-position:-1638px -364px;width:90px;height:90px}.customize-option.hair_base_7_porange{background-image:url(spritesmith1.png);background-position:-1663px -379px;width:60px;height:60px}.hair_base_7_ppink{background-image:url(spritesmith1.png);background-position:-1001px -1365px;width:90px;height:90px}.customize-option.hair_base_7_ppink{background-image:url(spritesmith1.png);background-position:-1026px -1380px;width:60px;height:60px}.hair_base_7_ppurple{background-image:url(spritesmith1.png);background-position:-1365px -1001px;width:90px;height:90px}.customize-option.hair_base_7_ppurple{background-image:url(spritesmith1.png);background-position:-1390px -1016px;width:60px;height:60px}.hair_base_7_pumpkin{background-image:url(spritesmith1.png);background-position:-455px -1638px;width:90px;height:90px}.customize-option.hair_base_7_pumpkin{background-image:url(spritesmith1.png);background-position:-480px -1653px;width:60px;height:60px}.hair_base_7_purple{background-image:url(spritesmith1.png);background-position:-1638px -455px;width:90px;height:90px}.customize-option.hair_base_7_purple{background-image:url(spritesmith1.png);background-position:-1663px -470px;width:60px;height:60px}.hair_base_7_pyellow{background-image:url(spritesmith1.png);background-position:-728px -1547px;width:90px;height:90px}.customize-option.hair_base_7_pyellow{background-image:url(spritesmith1.png);background-position:-753px -1562px;width:60px;height:60px}.hair_base_7_rainbow{background-image:url(spritesmith1.png);background-position:-1547px -728px;width:90px;height:90px}.customize-option.hair_base_7_rainbow{background-image:url(spritesmith1.png);background-position:-1572px -743px;width:60px;height:60px}.hair_base_7_red{background-image:url(spritesmith1.png);background-position:-910px -1456px;width:90px;height:90px}.customize-option.hair_base_7_red{background-image:url(spritesmith1.png);background-position:-935px -1471px;width:60px;height:60px}.hair_base_7_snowy{background-image:url(spritesmith1.png);background-position:-1456px -910px;width:90px;height:90px}.customize-option.hair_base_7_snowy{background-image:url(spritesmith1.png);background-position:-1481px -925px;width:60px;height:60px}.hair_base_7_white{background-image:url(spritesmith1.png);background-position:-1638px -546px;width:90px;height:90px}.customize-option.hair_base_7_white{background-image:url(spritesmith1.png);background-position:-1663px -561px;width:60px;height:60px}.hair_base_7_winternight{background-image:url(spritesmith1.png);background-position:-546px -1638px;width:90px;height:90px}.customize-option.hair_base_7_winternight{background-image:url(spritesmith1.png);background-position:-571px -1653px;width:60px;height:60px}.hair_base_7_winterstar{background-image:url(spritesmith1.png);background-position:-1729px 0;width:90px;height:90px}.customize-option.hair_base_7_winterstar{background-image:url(spritesmith1.png);background-position:-1754px -15px;width:60px;height:60px}.hair_base_7_yellow{background-image:url(spritesmith1.png);background-position:0 -1729px;width:90px;height:90px}.customize-option.hair_base_7_yellow{background-image:url(spritesmith1.png);background-position:-25px -1744px;width:60px;height:60px}.hair_base_7_zombie{background-image:url(spritesmith1.png);background-position:-91px -1729px;width:90px;height:90px}.customize-option.hair_base_7_zombie{background-image:url(spritesmith1.png);background-position:-116px -1744px;width:60px;height:60px}.hair_base_8_TRUred{background-image:url(spritesmith1.png);background-position:-1729px -91px;width:90px;height:90px}.customize-option.hair_base_8_TRUred{background-image:url(spritesmith1.png);background-position:-1754px -106px;width:60px;height:60px}.hair_base_8_aurora{background-image:url(spritesmith1.png);background-position:-1729px -182px;width:90px;height:90px}.customize-option.hair_base_8_aurora{background-image:url(spritesmith1.png);background-position:-1754px -197px;width:60px;height:60px}.hair_base_8_black{background-image:url(spritesmith1.png);background-position:-1274px -1183px;width:90px;height:90px}.customize-option.hair_base_8_black{background-image:url(spritesmith1.png);background-position:-1299px -1198px;width:60px;height:60px}.hair_base_8_blond{background-image:url(spritesmith1.png);background-position:-1183px -1274px;width:90px;height:90px}.customize-option.hair_base_8_blond{background-image:url(spritesmith1.png);background-position:-1208px -1289px;width:60px;height:60px}.hair_base_8_blue{background-image:url(spritesmith1.png);background-position:-182px -1729px;width:90px;height:90px}.customize-option.hair_base_8_blue{background-image:url(spritesmith1.png);background-position:-207px -1744px;width:60px;height:60px}.hair_base_8_brown{background-image:url(spritesmith1.png);background-position:-1092px -1365px;width:90px;height:90px}.customize-option.hair_base_8_brown{background-image:url(spritesmith1.png);background-position:-1117px -1380px;width:60px;height:60px}.hair_base_8_candycane{background-image:url(spritesmith1.png);background-position:-1365px -1092px;width:90px;height:90px}.customize-option.hair_base_8_candycane{background-image:url(spritesmith1.png);background-position:-1390px -1107px;width:60px;height:60px}.hair_base_8_candycorn{background-image:url(spritesmith1.png);background-position:-1547px -819px;width:90px;height:90px}.customize-option.hair_base_8_candycorn{background-image:url(spritesmith1.png);background-position:-1572px -834px;width:60px;height:60px}.hair_base_8_festive{background-image:url(spritesmith1.png);background-position:-1729px -273px;width:90px;height:90px}.customize-option.hair_base_8_festive{background-image:url(spritesmith1.png);background-position:-1754px -288px;width:60px;height:60px}.hair_base_8_frost{background-image:url(spritesmith1.png);background-position:-819px -1547px;width:90px;height:90px}.customize-option.hair_base_8_frost{background-image:url(spritesmith1.png);background-position:-844px -1562px;width:60px;height:60px}.hair_base_8_ghostwhite{background-image:url(spritesmith1.png);background-position:-273px -1729px;width:90px;height:90px}.customize-option.hair_base_8_ghostwhite{background-image:url(spritesmith1.png);background-position:-298px -1744px;width:60px;height:60px}.hair_base_8_green{background-image:url(spritesmith1.png);background-position:-637px -1638px;width:90px;height:90px}.customize-option.hair_base_8_green{background-image:url(spritesmith1.png);background-position:-662px -1653px;width:60px;height:60px}.hair_base_8_halloween{background-image:url(spritesmith1.png);background-position:-1638px -637px;width:90px;height:90px}.customize-option.hair_base_8_halloween{background-image:url(spritesmith1.png);background-position:-1663px -652px;width:60px;height:60px}.hair_base_8_holly{background-image:url(spritesmith1.png);background-position:-1729px -364px;width:90px;height:90px}.customize-option.hair_base_8_holly{background-image:url(spritesmith1.png);background-position:-1754px -379px;width:60px;height:60px}.hair_base_8_hollygreen{background-image:url(spritesmith1.png);background-position:-1001px -1456px;width:90px;height:90px}.customize-option.hair_base_8_hollygreen{background-image:url(spritesmith1.png);background-position:-1026px -1471px;width:60px;height:60px}.hair_base_8_midnight{background-image:url(spritesmith1.png);background-position:-364px -1729px;width:90px;height:90px}.customize-option.hair_base_8_midnight{background-image:url(spritesmith1.png);background-position:-389px -1744px;width:60px;height:60px}.hair_base_8_pblue{background-image:url(spritesmith1.png);background-position:-1456px -1001px;width:90px;height:90px}.customize-option.hair_base_8_pblue{background-image:url(spritesmith1.png);background-position:-1481px -1016px;width:60px;height:60px}.hair_base_8_peppermint{background-image:url(spritesmith1.png);background-position:-455px -1729px;width:90px;height:90px}.customize-option.hair_base_8_peppermint{background-image:url(spritesmith1.png);background-position:-480px -1744px;width:60px;height:60px}.hair_base_8_pgreen{background-image:url(spritesmith1.png);background-position:-1729px -455px;width:90px;height:90px}.customize-option.hair_base_8_pgreen{background-image:url(spritesmith1.png);background-position:-1754px -470px;width:60px;height:60px}.hair_base_8_porange{background-image:url(spritesmith1.png);background-position:-1638px -728px;width:90px;height:90px}.customize-option.hair_base_8_porange{background-image:url(spritesmith1.png);background-position:-1663px -743px;width:60px;height:60px}.hair_base_8_ppink{background-image:url(spritesmith1.png);background-position:-728px -1638px;width:90px;height:90px}.customize-option.hair_base_8_ppink{background-image:url(spritesmith1.png);background-position:-753px -1653px;width:60px;height:60px}.hair_base_8_ppurple{background-image:url(spritesmith1.png);background-position:-1547px -910px;width:90px;height:90px}.customize-option.hair_base_8_ppurple{background-image:url(spritesmith1.png);background-position:-1572px -925px;width:60px;height:60px}.hair_base_8_pumpkin{background-image:url(spritesmith1.png);background-position:-910px -1547px;width:90px;height:90px}.customize-option.hair_base_8_pumpkin{background-image:url(spritesmith1.png);background-position:-935px -1562px;width:60px;height:60px}.hair_base_8_purple{background-image:url(spritesmith1.png);background-position:-1274px -1274px;width:90px;height:90px}.customize-option.hair_base_8_purple{background-image:url(spritesmith1.png);background-position:-1299px -1289px;width:60px;height:60px}.hair_base_8_pyellow{background-image:url(spritesmith1.png);background-position:-1183px -1365px;width:90px;height:90px}.customize-option.hair_base_8_pyellow{background-image:url(spritesmith1.png);background-position:-1208px -1380px;width:60px;height:60px}.hair_base_8_rainbow{background-image:url(spritesmith1.png);background-position:-1365px -1183px;width:90px;height:90px}.customize-option.hair_base_8_rainbow{background-image:url(spritesmith1.png);background-position:-1390px -1198px;width:60px;height:60px}.hair_base_8_red{background-image:url(spritesmith1.png);background-position:-1729px -546px;width:90px;height:90px}.customize-option.hair_base_8_red{background-image:url(spritesmith1.png);background-position:-1754px -561px;width:60px;height:60px}.hair_base_8_snowy{background-image:url(spritesmith1.png);background-position:-546px -1729px;width:90px;height:90px}.customize-option.hair_base_8_snowy{background-image:url(spritesmith1.png);background-position:-571px -1744px;width:60px;height:60px}.hair_base_8_white{background-image:url(spritesmith1.png);background-position:-1820px 0;width:90px;height:90px}.customize-option.hair_base_8_white{background-image:url(spritesmith1.png);background-position:-1845px -15px;width:60px;height:60px}.hair_base_8_winternight{background-image:url(spritesmith1.png);background-position:-1092px -1456px;width:90px;height:90px}.customize-option.hair_base_8_winternight{background-image:url(spritesmith1.png);background-position:-1117px -1471px;width:60px;height:60px}.hair_base_8_winterstar{background-image:url(spritesmith1.png);background-position:0 -1820px;width:90px;height:90px}.customize-option.hair_base_8_winterstar{background-image:url(spritesmith1.png);background-position:-25px -1835px;width:60px;height:60px}.hair_base_8_yellow{background-image:url(spritesmith1.png);background-position:-1456px -1092px;width:90px;height:90px}.customize-option.hair_base_8_yellow{background-image:url(spritesmith1.png);background-position:-1481px -1107px;width:60px;height:60px}.hair_base_8_zombie{background-image:url(spritesmith1.png);background-position:-1820px -91px;width:90px;height:90px}.customize-option.hair_base_8_zombie{background-image:url(spritesmith1.png);background-position:-1845px -106px;width:60px;height:60px}.hair_base_9_TRUEred{background-image:url(spritesmith1.png);background-position:-91px -1820px;width:90px;height:90px}.customize-option.hair_base_9_TRUEred{background-image:url(spritesmith1.png);background-position:-116px -1835px;width:60px;height:60px}.hair_base_9_aurora{background-image:url(spritesmith1.png);background-position:-182px -1820px;width:90px;height:90px}.customize-option.hair_base_9_aurora{background-image:url(spritesmith1.png);background-position:-207px -1835px;width:60px;height:60px}.hair_base_9_black{background-image:url(spritesmith1.png);background-position:-1820px -182px;width:90px;height:90px}.customize-option.hair_base_9_black{background-image:url(spritesmith1.png);background-position:-1845px -197px;width:60px;height:60px}.hair_base_9_blond{background-image:url(spritesmith1.png);background-position:-1638px -819px;width:90px;height:90px}.customize-option.hair_base_9_blond{background-image:url(spritesmith1.png);background-position:-1663px -834px;width:60px;height:60px}.hair_base_9_blue{background-image:url(spritesmith1.png);background-position:-819px -1638px;width:90px;height:90px}.customize-option.hair_base_9_blue{background-image:url(spritesmith1.png);background-position:-844px -1653px;width:60px;height:60px}.hair_base_9_brown{background-image:url(spritesmith1.png);background-position:-1820px -273px;width:90px;height:90px}.customize-option.hair_base_9_brown{background-image:url(spritesmith1.png);background-position:-1845px -288px;width:60px;height:60px}.hair_base_9_festive{background-image:url(spritesmith1.png);background-position:-273px -1820px;width:90px;height:90px}.customize-option.hair_base_9_festive{background-image:url(spritesmith1.png);background-position:-298px -1835px;width:60px;height:60px}.hair_base_9_green{background-image:url(spritesmith1.png);background-position:-637px -1729px;width:90px;height:90px}.customize-option.hair_base_9_green{background-image:url(spritesmith1.png);background-position:-662px -1744px;width:60px;height:60px}.hair_base_9_hollygreen{background-image:url(spritesmith1.png);background-position:-1547px -1001px;width:90px;height:90px}.customize-option.hair_base_9_hollygreen{background-image:url(spritesmith1.png);background-position:-1572px -1016px;width:60px;height:60px}.hair_base_9_pblue{background-image:url(spritesmith1.png);background-position:-1729px -637px;width:90px;height:90px}.customize-option.hair_base_9_pblue{background-image:url(spritesmith1.png);background-position:-1754px -652px;width:60px;height:60px}.hair_base_9_peppermint{background-image:url(spritesmith1.png);background-position:-1001px -1547px;width:90px;height:90px}.customize-option.hair_base_9_peppermint{background-image:url(spritesmith1.png);background-position:-1026px -1562px;width:60px;height:60px}.hair_base_9_pgreen{background-image:url(spritesmith1.png);background-position:-364px -1820px;width:90px;height:90px}.customize-option.hair_base_9_pgreen{background-image:url(spritesmith1.png);background-position:-389px -1835px;width:60px;height:60px}.hair_base_9_porange{background-image:url(spritesmith1.png);background-position:-1820px -364px;width:90px;height:90px}.customize-option.hair_base_9_porange{background-image:url(spritesmith1.png);background-position:-1845px -379px;width:60px;height:60px}.hair_base_9_ppink{background-image:url(spritesmith1.png);background-position:-1274px -1365px;width:90px;height:90px}.customize-option.hair_base_9_ppink{background-image:url(spritesmith1.png);background-position:-1299px -1380px;width:60px;height:60px}.hair_base_9_ppurple{background-image:url(spritesmith1.png);background-position:-1365px -1274px;width:90px;height:90px}.customize-option.hair_base_9_ppurple{background-image:url(spritesmith1.png);background-position:-1390px -1289px;width:60px;height:60px}.hair_base_9_purple{background-image:url(spritesmith1.png);background-position:-1638px -910px;width:90px;height:90px}.customize-option.hair_base_9_purple{background-image:url(spritesmith1.png);background-position:-1663px -925px;width:60px;height:60px}.hair_base_9_pyellow{background-image:url(spritesmith1.png);background-position:-910px -1638px;width:90px;height:90px}.customize-option.hair_base_9_pyellow{background-image:url(spritesmith1.png);background-position:-935px -1653px;width:60px;height:60px}.hair_base_9_rainbow{background-image:url(spritesmith1.png);background-position:-1456px -1183px;width:90px;height:90px}.customize-option.hair_base_9_rainbow{background-image:url(spritesmith1.png);background-position:-1481px -1198px;width:60px;height:60px}.hair_base_9_red{background-image:url(spritesmith1.png);background-position:-455px -1820px;width:90px;height:90px}.customize-option.hair_base_9_red{background-image:url(spritesmith1.png);background-position:-480px -1835px;width:60px;height:60px}.hair_base_9_snowy{background-image:url(spritesmith1.png);background-position:-728px -1729px;width:90px;height:90px}.customize-option.hair_base_9_snowy{background-image:url(spritesmith1.png);background-position:-753px -1744px;width:60px;height:60px}.hair_base_9_white{background-image:url(spritesmith1.png);background-position:-1729px -728px;width:90px;height:90px}.customize-option.hair_base_9_white{background-image:url(spritesmith1.png);background-position:-1754px -743px;width:60px;height:60px}.hair_base_9_winterstar{background-image:url(spritesmith1.png);background-position:-1183px -1456px;width:90px;height:90px}.customize-option.hair_base_9_winterstar{background-image:url(spritesmith1.png);background-position:-1208px -1471px;width:60px;height:60px}.hair_base_9_yellow{background-image:url(spritesmith1.png);background-position:-1820px -455px;width:90px;height:90px}.customize-option.hair_base_9_yellow{background-image:url(spritesmith1.png);background-position:-1845px -470px;width:60px;height:60px}.broad_shirt_black{background-image:url(spritesmith1.png);background-position:-1092px -1547px;width:90px;height:90px}.customize-option.broad_shirt_black{background-image:url(spritesmith1.png);background-position:-1117px -1577px;width:60px;height:60px}.broad_shirt_blue{background-image:url(spritesmith1.png);background-position:-1547px -1092px;width:90px;height:90px}.customize-option.broad_shirt_blue{background-image:url(spritesmith1.png);background-position:-1572px -1122px;width:60px;height:60px}.broad_shirt_convict{background-image:url(spritesmith1.png);background-position:-1820px -546px;width:90px;height:90px}.customize-option.broad_shirt_convict{background-image:url(spritesmith1.png);background-position:-1845px -576px;width:60px;height:60px}.broad_shirt_cross{background-image:url(spritesmith1.png);background-position:-546px -1820px;width:90px;height:90px}.customize-option.broad_shirt_cross{background-image:url(spritesmith1.png);background-position:-571px -1850px;width:60px;height:60px}.broad_shirt_fire{background-image:url(spritesmith1.png);background-position:-1911px 0;width:90px;height:90px}.customize-option.broad_shirt_fire{background-image:url(spritesmith1.png);background-position:-1936px -30px;width:60px;height:60px}.broad_shirt_green{background-image:url(spritesmith1.png);background-position:0 -1911px;width:90px;height:90px}.customize-option.broad_shirt_green{background-image:url(spritesmith1.png);background-position:-25px -1941px;width:60px;height:60px}.broad_shirt_horizon{background-image:url(spritesmith1.png);background-position:-91px -1911px;width:90px;height:90px}.customize-option.broad_shirt_horizon{background-image:url(spritesmith1.png);background-position:-116px -1941px;width:60px;height:60px}.broad_shirt_ocean{background-image:url(spritesmith1.png);background-position:-819px -1729px;width:90px;height:90px}.customize-option.broad_shirt_ocean{background-image:url(spritesmith1.png);background-position:-844px -1759px;width:60px;height:60px}.broad_shirt_pink{background-image:url(spritesmith1.png);background-position:-1911px -91px;width:90px;height:90px}.customize-option.broad_shirt_pink{background-image:url(spritesmith1.png);background-position:-1936px -121px;width:60px;height:60px}.broad_shirt_purple{background-image:url(spritesmith1.png);background-position:-1729px -819px;width:90px;height:90px}.customize-option.broad_shirt_purple{background-image:url(spritesmith1.png);background-position:-1754px -849px;width:60px;height:60px}.broad_shirt_rainbow{background-image:url(spritesmith2.png);background-position:-546px -910px;width:90px;height:90px}.customize-option.broad_shirt_rainbow{background-image:url(spritesmith2.png);background-position:-571px -940px;width:60px;height:60px}.broad_shirt_redblue{background-image:url(spritesmith2.png);background-position:-1092px -819px;width:90px;height:90px}.customize-option.broad_shirt_redblue{background-image:url(spritesmith2.png);background-position:-1117px -849px;width:60px;height:60px}.broad_shirt_thunder{background-image:url(spritesmith2.png);background-position:-1001px -364px;width:90px;height:90px}.customize-option.broad_shirt_thunder{background-image:url(spritesmith2.png);background-position:-1026px -394px;width:60px;height:60px}.broad_shirt_tropical{background-image:url(spritesmith2.png);background-position:-273px -1037px;width:90px;height:90px}.customize-option.broad_shirt_tropical{background-image:url(spritesmith2.png);background-position:-298px -1067px;width:60px;height:60px}.broad_shirt_white{background-image:url(spritesmith2.png);background-position:-1092px 0;width:90px;height:90px}.customize-option.broad_shirt_white{background-image:url(spritesmith2.png);background-position:-1117px -30px;width:60px;height:60px}.broad_shirt_yellow{background-image:url(spritesmith2.png);background-position:-728px -819px;width:90px;height:90px}.customize-option.broad_shirt_yellow{background-image:url(spritesmith2.png);background-position:-753px -849px;width:60px;height:60px}.broad_shirt_zombie{background-image:url(spritesmith2.png);background-position:-476px -1001px;width:90px;height:90px}.customize-option.broad_shirt_zombie{background-image:url(spritesmith2.png);background-position:-501px -1031px;width:60px;height:60px}.slim_shirt_black{background-image:url(spritesmith2.png);background-position:-910px -637px;width:90px;height:90px}.customize-option.slim_shirt_black{background-image:url(spritesmith2.png);background-position:-935px -667px;width:60px;height:60px}.slim_shirt_blue{background-image:url(spritesmith2.png);background-position:-518px -1189px;width:90px;height:90px}.customize-option.slim_shirt_blue{background-image:url(spritesmith2.png);background-position:-543px -1219px;width:60px;height:60px}.slim_shirt_convict{background-image:url(spritesmith2.png);background-position:-1295px -91px;width:90px;height:90px}.customize-option.slim_shirt_convict{background-image:url(spritesmith2.png);background-position:-1320px -121px;width:60px;height:60px}.slim_shirt_cross{background-image:url(spritesmith2.png);background-position:-182px -1310px;width:90px;height:90px}.customize-option.slim_shirt_cross{background-image:url(spritesmith2.png);background-position:-207px -1340px;width:60px;height:60px}.slim_shirt_fire{background-image:url(spritesmith2.png);background-position:-1274px -364px;width:90px;height:90px}.customize-option.slim_shirt_fire{background-image:url(spritesmith2.png);background-position:-1299px -394px;width:60px;height:60px}.slim_shirt_green{background-image:url(spritesmith2.png);background-position:-870px -1001px;width:90px;height:90px}.customize-option.slim_shirt_green{background-image:url(spritesmith2.png);background-position:-895px -1031px;width:60px;height:60px}.slim_shirt_horizon{background-image:url(spritesmith2.png);background-position:-758px -1092px;width:90px;height:90px}.customize-option.slim_shirt_horizon{background-image:url(spritesmith2.png);background-position:-783px -1122px;width:60px;height:60px}.slim_shirt_ocean{background-image:url(spritesmith2.png);background-position:-770px -1274px;width:90px;height:90px}.customize-option.slim_shirt_ocean{background-image:url(spritesmith2.png);background-position:-795px -1304px;width:60px;height:60px}.slim_shirt_pink{background-image:url(spritesmith2.png);background-position:-1183px -910px;width:90px;height:90px}.customize-option.slim_shirt_pink{background-image:url(spritesmith2.png);background-position:-1208px -940px;width:60px;height:60px}.slim_shirt_purple{background-image:url(spritesmith2.png);background-position:-1456px -364px;width:90px;height:90px}.customize-option.slim_shirt_purple{background-image:url(spritesmith2.png);background-position:-1481px -394px;width:60px;height:60px}.slim_shirt_rainbow{background-image:url(spritesmith2.png);background-position:-364px -188px;width:90px;height:90px}.customize-option.slim_shirt_rainbow{background-image:url(spritesmith2.png);background-position:-389px -218px;width:60px;height:60px}.slim_shirt_redblue{background-image:url(spritesmith2.png);background-position:-273px -309px;width:90px;height:90px}.customize-option.slim_shirt_redblue{background-image:url(spritesmith2.png);background-position:-298px -339px;width:60px;height:60px}.slim_shirt_thunder{background-image:url(spritesmith2.png);background-position:0 -424px;width:90px;height:90px}.customize-option.slim_shirt_thunder{background-image:url(spritesmith2.png);background-position:-25px -454px;width:60px;height:60px}.slim_shirt_tropical{background-image:url(spritesmith2.png);background-position:-91px -424px;width:90px;height:90px}.customize-option.slim_shirt_tropical{background-image:url(spritesmith2.png);background-position:-116px -454px;width:60px;height:60px}.slim_shirt_white{background-image:url(spritesmith2.png);background-position:-182px -415px;width:90px;height:90px}.customize-option.slim_shirt_white{background-image:url(spritesmith2.png);background-position:-207px -445px;width:60px;height:60px}.slim_shirt_yellow{background-image:url(spritesmith2.png);background-position:-455px 0;width:90px;height:90px}.customize-option.slim_shirt_yellow{background-image:url(spritesmith2.png);background-position:-480px -30px;width:60px;height:60px}.slim_shirt_zombie{background-image:url(spritesmith2.png);background-position:-364px -279px;width:90px;height:90px}.customize-option.slim_shirt_zombie{background-image:url(spritesmith2.png);background-position:-389px -309px;width:60px;height:60px}.skin_0ff591{background-image:url(spritesmith2.png);background-position:-455px -91px;width:90px;height:90px}.customize-option.skin_0ff591{background-image:url(spritesmith2.png);background-position:-480px -106px;width:60px;height:60px}.skin_0ff591_sleep{background-image:url(spritesmith2.png);background-position:-273px -400px;width:90px;height:90px}.customize-option.skin_0ff591_sleep{background-image:url(spritesmith2.png);background-position:-298px -415px;width:60px;height:60px}.skin_2b43f6{background-image:url(spritesmith2.png);background-position:-455px -182px;width:90px;height:90px}.customize-option.skin_2b43f6{background-image:url(spritesmith2.png);background-position:-480px -197px;width:60px;height:60px}.skin_2b43f6_sleep{background-image:url(spritesmith2.png);background-position:0 -515px;width:90px;height:90px}.customize-option.skin_2b43f6_sleep{background-image:url(spritesmith2.png);background-position:-25px -530px;width:60px;height:60px}.skin_6bd049{background-image:url(spritesmith2.png);background-position:-364px -370px;width:90px;height:90px}.customize-option.skin_6bd049{background-image:url(spritesmith2.png);background-position:-389px -385px;width:60px;height:60px}.skin_6bd049_sleep{background-image:url(spritesmith2.png);background-position:-91px -515px;width:90px;height:90px}.customize-option.skin_6bd049_sleep{background-image:url(spritesmith2.png);background-position:-116px -530px;width:60px;height:60px}.skin_800ed0{background-image:url(spritesmith2.png);background-position:-455px -273px;width:90px;height:90px}.customize-option.skin_800ed0{background-image:url(spritesmith2.png);background-position:-480px -288px;width:60px;height:60px}.skin_800ed0_sleep{background-image:url(spritesmith2.png);background-position:-182px -506px;width:90px;height:90px}.customize-option.skin_800ed0_sleep{background-image:url(spritesmith2.png);background-position:-207px -521px;width:60px;height:60px}.skin_915533{background-image:url(spritesmith2.png);background-position:-546px 0;width:90px;height:90px}.customize-option.skin_915533{background-image:url(spritesmith2.png);background-position:-571px -15px;width:60px;height:60px}.skin_915533_sleep{background-image:url(spritesmith2.png);background-position:-546px -91px;width:90px;height:90px}.customize-option.skin_915533_sleep{background-image:url(spritesmith2.png);background-position:-571px -106px;width:60px;height:60px}.skin_98461a{background-image:url(spritesmith2.png);background-position:-273px -491px;width:90px;height:90px}.customize-option.skin_98461a{background-image:url(spritesmith2.png);background-position:-298px -506px;width:60px;height:60px}.skin_98461a_sleep{background-image:url(spritesmith2.png);background-position:-546px -182px;width:90px;height:90px}.customize-option.skin_98461a_sleep{background-image:url(spritesmith2.png);background-position:-571px -197px;width:60px;height:60px}.skin_c06534{background-image:url(spritesmith2.png);background-position:-455px -364px;width:90px;height:90px}.customize-option.skin_c06534{background-image:url(spritesmith2.png);background-position:-480px -379px;width:60px;height:60px}.skin_c06534_sleep{background-image:url(spritesmith2.png);background-position:-364px -461px;width:90px;height:90px}.customize-option.skin_c06534_sleep{background-image:url(spritesmith2.png);background-position:-389px -476px;width:60px;height:60px}.skin_c3e1dc{background-image:url(spritesmith2.png);background-position:0 -606px;width:90px;height:90px}.customize-option.skin_c3e1dc{background-image:url(spritesmith2.png);background-position:-25px -621px;width:60px;height:60px}.skin_c3e1dc_sleep{background-image:url(spritesmith2.png);background-position:-546px -273px;width:90px;height:90px}.customize-option.skin_c3e1dc_sleep{background-image:url(spritesmith2.png);background-position:-571px -288px;width:60px;height:60px}.skin_candycorn{background-image:url(spritesmith2.png);background-position:-91px -606px;width:90px;height:90px}.customize-option.skin_candycorn{background-image:url(spritesmith2.png);background-position:-116px -621px;width:60px;height:60px}.skin_candycorn_sleep{background-image:url(spritesmith2.png);background-position:-182px -597px;width:90px;height:90px}.customize-option.skin_candycorn_sleep{background-image:url(spritesmith2.png);background-position:-207px -612px;width:60px;height:60px}.skin_d7a9f7{background-image:url(spritesmith2.png);background-position:-637px 0;width:90px;height:90px}.customize-option.skin_d7a9f7{background-image:url(spritesmith2.png);background-position:-662px -15px;width:60px;height:60px}.skin_d7a9f7_sleep{background-image:url(spritesmith2.png);background-position:-273px -582px;width:90px;height:90px}.customize-option.skin_d7a9f7_sleep{background-image:url(spritesmith2.png);background-position:-298px -597px;width:60px;height:60px}.skin_ddc994{background-image:url(spritesmith2.png);background-position:-637px -91px;width:90px;height:90px}.customize-option.skin_ddc994{background-image:url(spritesmith2.png);background-position:-662px -106px;width:60px;height:60px}.skin_ddc994_sleep{background-image:url(spritesmith2.png);background-position:-455px -455px;width:90px;height:90px}.customize-option.skin_ddc994_sleep{background-image:url(spritesmith2.png);background-position:-480px -470px;width:60px;height:60px}.skin_ea8349{background-image:url(spritesmith2.png);background-position:-546px -364px;width:90px;height:90px}.customize-option.skin_ea8349{background-image:url(spritesmith2.png);background-position:-571px -379px;width:60px;height:60px}.skin_ea8349_sleep{background-image:url(spritesmith2.png);background-position:-364px -552px;width:90px;height:90px}.customize-option.skin_ea8349_sleep{background-image:url(spritesmith2.png);background-position:-389px -567px;width:60px;height:60px}.skin_eb052b{background-image:url(spritesmith2.png);background-position:-637px -182px;width:90px;height:90px}.customize-option.skin_eb052b{background-image:url(spritesmith2.png);background-position:-662px -197px;width:60px;height:60px}.skin_eb052b_sleep{background-image:url(spritesmith2.png);background-position:-637px -273px;width:90px;height:90px}.customize-option.skin_eb052b_sleep{background-image:url(spritesmith2.png);background-position:-662px -288px;width:60px;height:60px}.skin_f5a76e{background-image:url(spritesmith2.png);background-position:0 -697px;width:90px;height:90px}.customize-option.skin_f5a76e{background-image:url(spritesmith2.png);background-position:-25px -712px;width:60px;height:60px}.skin_f5a76e_sleep{background-image:url(spritesmith2.png);background-position:-91px -697px;width:90px;height:90px}.customize-option.skin_f5a76e_sleep{background-image:url(spritesmith2.png);background-position:-116px -712px;width:60px;height:60px}.skin_f5d70f{background-image:url(spritesmith2.png);background-position:-546px -455px;width:90px;height:90px}.customize-option.skin_f5d70f{background-image:url(spritesmith2.png);background-position:-571px -470px;width:60px;height:60px}.skin_f5d70f_sleep{background-image:url(spritesmith2.png);background-position:-455px -546px;width:90px;height:90px}.customize-option.skin_f5d70f_sleep{background-image:url(spritesmith2.png);background-position:-480px -561px;width:60px;height:60px}.skin_f69922{background-image:url(spritesmith2.png);background-position:-182px -688px;width:90px;height:90px}.customize-option.skin_f69922{background-image:url(spritesmith2.png);background-position:-207px -703px;width:60px;height:60px}.skin_f69922_sleep{background-image:url(spritesmith2.png);background-position:-273px -673px;width:90px;height:90px}.customize-option.skin_f69922_sleep{background-image:url(spritesmith2.png);background-position:-298px -688px;width:60px;height:60px}.skin_ghost{background-image:url(spritesmith2.png);background-position:-728px 0;width:90px;height:90px}.customize-option.skin_ghost{background-image:url(spritesmith2.png);background-position:-753px -15px;width:60px;height:60px}.skin_ghost_sleep{background-image:url(spritesmith2.png);background-position:-728px -91px;width:90px;height:90px}.customize-option.skin_ghost_sleep{background-image:url(spritesmith2.png);background-position:-753px -106px;width:60px;height:60px}.skin_monster{background-image:url(spritesmith2.png);background-position:-637px -364px;width:90px;height:90px}.customize-option.skin_monster{background-image:url(spritesmith2.png);background-position:-662px -379px;width:60px;height:60px}.skin_monster_sleep{background-image:url(spritesmith2.png);background-position:-364px -643px;width:90px;height:90px}.customize-option.skin_monster_sleep{background-image:url(spritesmith2.png);background-position:-389px -658px;width:60px;height:60px}.skin_ogre{background-image:url(spritesmith2.png);background-position:-728px -182px;width:90px;height:90px}.customize-option.skin_ogre{background-image:url(spritesmith2.png);background-position:-753px -197px;width:60px;height:60px}.skin_ogre_sleep{background-image:url(spritesmith2.png);background-position:-546px -546px;width:90px;height:90px}.customize-option.skin_ogre_sleep{background-image:url(spritesmith2.png);background-position:-571px -561px;width:60px;height:60px}.skin_pumpkin{background-image:url(spritesmith2.png);background-position:-728px -273px;width:90px;height:90px}.customize-option.skin_pumpkin{background-image:url(spritesmith2.png);background-position:-753px -288px;width:60px;height:60px}.skin_pumpkin2{background-image:url(spritesmith2.png);background-position:-637px -455px;width:90px;height:90px}.customize-option.skin_pumpkin2{background-image:url(spritesmith2.png);background-position:-662px -470px;width:60px;height:60px}.skin_pumpkin2_sleep{background-image:url(spritesmith2.png);background-position:-455px -637px;width:90px;height:90px}.customize-option.skin_pumpkin2_sleep{background-image:url(spritesmith2.png);background-position:-480px -652px;width:60px;height:60px}.skin_pumpkin_sleep{background-image:url(spritesmith2.png);background-position:0 -788px;width:90px;height:90px}.customize-option.skin_pumpkin_sleep{background-image:url(spritesmith2.png);background-position:-25px -803px;width:60px;height:60px}.skin_rainbow{background-image:url(spritesmith2.png);background-position:-91px -788px;width:90px;height:90px}.customize-option.skin_rainbow{background-image:url(spritesmith2.png);background-position:-116px -803px;width:60px;height:60px}.skin_rainbow_sleep{background-image:url(spritesmith2.png);background-position:-182px -779px;width:90px;height:90px}.customize-option.skin_rainbow_sleep{background-image:url(spritesmith2.png);background-position:-207px -794px;width:60px;height:60px}.skin_reptile{background-image:url(spritesmith2.png);background-position:-273px -764px;width:90px;height:90px}.customize-option.skin_reptile{background-image:url(spritesmith2.png);background-position:-298px -779px;width:60px;height:60px}.skin_reptile_sleep{background-image:url(spritesmith2.png);background-position:-728px -364px;width:90px;height:90px}.customize-option.skin_reptile_sleep{background-image:url(spritesmith2.png);background-position:-753px -379px;width:60px;height:60px}.skin_shadow{background-image:url(spritesmith2.png);background-position:-819px 0;width:90px;height:90px}.customize-option.skin_shadow{background-image:url(spritesmith2.png);background-position:-844px -15px;width:60px;height:60px}.skin_shadow2{background-image:url(spritesmith2.png);background-position:-364px -734px;width:90px;height:90px}.customize-option.skin_shadow2{background-image:url(spritesmith2.png);background-position:-389px -749px;width:60px;height:60px}.skin_shadow2_sleep{background-image:url(spritesmith2.png);background-position:-819px -91px;width:90px;height:90px}.customize-option.skin_shadow2_sleep{background-image:url(spritesmith2.png);background-position:-844px -106px;width:60px;height:60px}.skin_shadow_sleep{background-image:url(spritesmith2.png);background-position:-546px -637px;width:90px;height:90px}.customize-option.skin_shadow_sleep{background-image:url(spritesmith2.png);background-position:-571px -652px;width:60px;height:60px}.skin_skeleton{background-image:url(spritesmith2.png);background-position:-637px -546px;width:90px;height:90px}.customize-option.skin_skeleton{background-image:url(spritesmith2.png);background-position:-662px -561px;width:60px;height:60px}.skin_skeleton2{background-image:url(spritesmith2.png);background-position:-819px -182px;width:90px;height:90px}.customize-option.skin_skeleton2{background-image:url(spritesmith2.png);background-position:-844px -197px;width:60px;height:60px}.skin_skeleton2_sleep{background-image:url(spritesmith2.png);background-position:-728px -455px;width:90px;height:90px}.customize-option.skin_skeleton2_sleep{background-image:url(spritesmith2.png);background-position:-753px -470px;width:60px;height:60px}.skin_skeleton_sleep{background-image:url(spritesmith2.png);background-position:-455px -728px;width:90px;height:90px}.customize-option.skin_skeleton_sleep{background-image:url(spritesmith2.png);background-position:-480px -743px;width:60px;height:60px}.skin_transparent{background-image:url(spritesmith2.png);background-position:-819px -273px;width:90px;height:90px}.customize-option.skin_transparent{background-image:url(spritesmith2.png);background-position:-844px -288px;width:60px;height:60px}.skin_transparent_sleep{background-image:url(spritesmith2.png);background-position:0 -879px;width:90px;height:90px}.customize-option.skin_transparent_sleep{background-image:url(spritesmith2.png);background-position:-25px -894px;width:60px;height:60px}.skin_zombie{background-image:url(spritesmith2.png);background-position:-91px -879px;width:90px;height:90px}.customize-option.skin_zombie{background-image:url(spritesmith2.png);background-position:-116px -894px;width:60px;height:60px}.skin_zombie2{background-image:url(spritesmith2.png);background-position:-182px -870px;width:90px;height:90px}.customize-option.skin_zombie2{background-image:url(spritesmith2.png);background-position:-207px -885px;width:60px;height:60px}.skin_zombie2_sleep{background-image:url(spritesmith2.png);background-position:-819px -364px;width:90px;height:90px}.customize-option.skin_zombie2_sleep{background-image:url(spritesmith2.png);background-position:-844px -379px;width:60px;height:60px}.skin_zombie_sleep{background-image:url(spritesmith2.png);background-position:-273px -855px;width:90px;height:90px}.customize-option.skin_zombie_sleep{background-image:url(spritesmith2.png);background-position:-298px -870px;width:60px;height:60px}.broad_armor_healer_1{background-image:url(spritesmith2.png);background-position:-637px -637px;width:90px;height:90px}.broad_armor_healer_2{background-position:-364px -825px}.broad_armor_healer_2,.broad_armor_healer_3{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_healer_3{background-position:-728px -546px}.broad_armor_healer_4{background-position:-546px -728px}.broad_armor_healer_4,.broad_armor_healer_5{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_healer_5{background-position:-910px 0}.broad_armor_rogue_1{background-position:-910px -91px}.broad_armor_rogue_1,.broad_armor_rogue_2{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_rogue_2{background-position:-910px -182px}.broad_armor_rogue_3{background-position:-819px -455px}.broad_armor_rogue_3,.broad_armor_rogue_4{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_rogue_4{background-position:-455px -819px}.broad_armor_rogue_5{background-position:-910px -273px}.broad_armor_rogue_5,.broad_armor_special_2{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_special_2{background-position:-728px -637px}.broad_armor_warrior_1{background-position:-637px -728px}.broad_armor_warrior_1,.broad_armor_warrior_2{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_warrior_2{background-position:0 -970px}.broad_armor_warrior_3{background-position:-91px -970px}.broad_armor_warrior_3,.broad_armor_warrior_4{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_warrior_4{background-position:-182px -961px}.broad_armor_warrior_5{background-position:-910px -364px}.broad_armor_warrior_5,.broad_armor_wizard_1{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_wizard_1{background-position:-546px -819px}.broad_armor_wizard_2{background-position:-819px -546px}.broad_armor_wizard_2,.broad_armor_wizard_3{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_wizard_3{background-position:-273px -946px}.broad_armor_wizard_4{background-position:-364px -916px}.broad_armor_wizard_4,.broad_armor_wizard_5{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_wizard_5{background-position:-1001px 0}.shop_armor_healer_1{background-image:url(spritesmith2.png);background-position:-328px -1685px;width:40px;height:40px}.shop_armor_healer_2{background-position:-1630px -537px}.shop_armor_healer_2,.shop_armor_healer_3{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_healer_3{background-position:-1679px -355px}.shop_armor_healer_4{background-position:-1583px -660px}.shop_armor_healer_4,.shop_armor_healer_5{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_healer_5{background-position:-1366px -1033px}.shop_armor_rogue_1{background-position:-1450px -910px}.shop_armor_rogue_1,.shop_armor_rogue_2{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_rogue_2{background-position:-1533px -760px}.shop_armor_rogue_3{background-position:-1043px -1356px}.shop_armor_rogue_3,.shop_armor_rogue_4{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_rogue_4{background-position:-619px -1594px}.shop_armor_rogue_5{background-position:-287px -1685px}.shop_armor_rogue_5,.shop_armor_special_0{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_special_0{background-position:-895px -1456px}.shop_armor_special_1{background-position:-496px -1635px}.shop_armor_special_1,.shop_armor_special_2{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_special_2{background-position:-1310px -1092px}.shop_armor_warrior_1{background-position:-1589px -619px}.shop_armor_warrior_1,.shop_armor_warrior_2{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_warrior_2{background-position:-1700px -123px}.shop_armor_warrior_3{background-position:-1084px -1315px}.shop_armor_warrior_3,.shop_armor_warrior_4{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_warrior_4{background-position:-1630px -455px}.shop_armor_warrior_5{background-position:-396px -1644px}.shop_armor_warrior_5,.shop_armor_wizard_1{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_wizard_1{background-position:-1456px -860px}.shop_armor_wizard_2{background-position:-82px -1689px}.shop_armor_wizard_2,.shop_armor_wizard_3{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_wizard_3{background-position:-1589px -578px}.shop_armor_wizard_4{background-position:-1368px -992px}.shop_armor_wizard_4,.shop_armor_wizard_5{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_wizard_5{background-position:-41px -1689px}.slim_armor_healer_1{background-position:-637px -910px}.slim_armor_healer_1,.slim_armor_healer_2{background-image:url(spritesmith2.png);width:90px;height:90px}.slim_armor_healer_2{background-position:-1092px -273px}.slim_armor_healer_3{background-position:-224px -1128px}.slim_armor_healer_3,.slim_armor_healer_4{background-image:url(spritesmith2.png);width:90px;height:90px}.slim_armor_healer_4{background-position:-567px -1001px}.slim_armor_healer_5{background-position:-1092px -364px}.slim_armor_healer_5,.slim_armor_rogue_1{background-image:url(spritesmith2.png);width:90px;height:90px}.slim_armor_rogue_1{background-position:0 -1152px}.slim_armor_rogue_2{background-position:-91px -1152px}.slim_armor_rogue_2,.slim_armor_rogue_3{background-image:url(spritesmith2.png);width:90px;height:90px}.slim_armor_rogue_3{background-position:-364px -1098px}.slim_armor_rogue_4{background-position:-819px -819px}.slim_armor_rogue_4,.slim_armor_rogue_5{background-image:url(spritesmith2.png);width:90px;height:90px}.slim_armor_rogue_5{background-position:-1022px -546px}.slim_armor_special_2{background-position:-728px -910px}.slim_armor_special_2,.slim_armor_warrior_1{background-image:url(spritesmith2.png);width:90px;height:90px}.slim_armor_warrior_1{background-position:-931px -728px}.slim_armor_warrior_2{background-position:-1183px 0}.slim_armor_warrior_2,.slim_armor_warrior_3{background-image:url(spritesmith2.png);width:90px;height:90px}.slim_armor_warrior_3{background-position:-1001px -637px}.slim_armor_warrior_4{background-position:-455px -1098px}.slim_armor_warrior_4,.slim_armor_warrior_5{background-image:url(spritesmith2.png);width:90px;height:90px}.slim_armor_warrior_5{background-position:-658px -1001px}.slim_armor_wizard_1{background-position:-1204px -91px}.slim_armor_wizard_1,.slim_armor_wizard_2{background-image:url(spritesmith2.png);width:90px;height:90px}.slim_armor_wizard_2{background-position:-1119px -455px}.slim_armor_wizard_3{background-position:-1183px -273px}.slim_armor_wizard_3,.slim_armor_wizard_4{background-image:url(spritesmith2.png);width:90px;height:90px}.slim_armor_wizard_4{background-position:-1204px -182px}.slim_armor_wizard_5{background-position:-546px -1092px}.broad_armor_special_birthday,.slim_armor_wizard_5{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_special_birthday{background-position:-910px -819px}.broad_armor_special_birthday2015{background-image:url(spritesmith2.png);background-position:-819px -910px;width:90px;height:90px}.shop_armor_special_birthday{background-image:url(spritesmith2.png);background-position:0 -1689px;width:40px;height:40px}.shop_armor_special_birthday2015{background-image:url(spritesmith2.png);background-position:-1659px -314px;width:40px;height:40px}.slim_armor_special_birthday{background-image:url(spritesmith2.png);background-position:-1183px -364px;width:90px;height:90px}.slim_armor_special_birthday2015{background-image:url(spritesmith2.png);background-position:-1113px -546px;width:90px;height:90px}.broad_armor_special_fallHealer{background-image:url(spritesmith2.png);background-position:0 -1243px;width:90px;height:90px}.broad_armor_special_fallMage{background-image:url(spritesmith2.png);background-position:-749px -1001px;width:120px;height:90px}.broad_armor_special_fallRogue{background-image:url(spritesmith2.png);background-position:-1022px -728px;width:105px;height:90px}.broad_armor_special_fallWarrior{background-position:-91px -1243px}.broad_armor_special_fallWarrior,.head_special_fallHealer{background-image:url(spritesmith2.png);width:90px;height:90px}.head_special_fallHealer{background-position:-427px -1189px}.head_special_fallMage{background-position:-637px -1092px;width:120px}.head_special_fallMage,.head_special_fallRogue{background-image:url(spritesmith2.png);height:90px}.head_special_fallRogue{background-position:-1092px -637px;width:105px}.head_special_fallWarrior{background-position:-1274px 0}.head_special_fallWarrior,.shield_special_fallHealer{background-image:url(spritesmith2.png);width:90px;height:90px}.shield_special_fallHealer{background-position:-910px -910px}.shield_special_fallRogue{background-image:url(spritesmith2.png);background-position:-1210px -455px;width:105px;height:90px}.shield_special_fallWarrior{background-image:url(spritesmith2.png);background-position:-1001px -819px;width:90px;height:90px}.shop_armor_special_fallHealer{background-image:url(spritesmith2.png);background-position:-1680px -164px;width:40px;height:40px}.shop_armor_special_fallMage{background-image:url(spritesmith2.png);background-position:-854px -1456px;width:40px;height:40px}.shop_armor_special_fallRogue{background-image:url(spritesmith2.png);background-position:-660px -1553px;width:40px;height:40px}.shop_armor_special_fallWarrior{background-image:url(spritesmith2.png);background-position:-992px -1365px;width:40px;height:40px}.shop_head_special_fallHealer{background-image:url(spritesmith2.png);background-position:-1638px -405px;width:40px;height:40px}.shop_head_special_fallMage{background-position:-205px -1674px}.shop_head_special_fallMage,.shop_head_special_fallRogue{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_head_special_fallRogue{background-position:-1325px -1042px}.shop_head_special_fallWarrior{background-image:url(spritesmith2.png);background-position:-1542px -678px;width:40px;height:40px}.shop_shield_special_fallHealer{background-image:url(spritesmith2.png);background-position:-772px -1497px;width:40px;height:40px}.shop_shield_special_fallRogue{background-image:url(spritesmith2.png);background-position:-537px -1594px;width:40px;height:40px}.shop_shield_special_fallWarrior{background-image:url(spritesmith2.png);background-position:-164px -1674px;width:40px;height:40px}.shop_weapon_special_fallHealer{background-image:url(spritesmith2.png);background-position:-355px -1644px;width:40px;height:40px}.shop_weapon_special_fallMage{background-image:url(spritesmith2.png);background-position:-1700px -246px;width:40px;height:40px}.shop_weapon_special_fallRogue{background-image:url(spritesmith2.png);background-position:-1492px -769px;width:40px;height:40px}.shop_weapon_special_fallWarrior{background-image:url(spritesmith2.png);background-position:-1043px -1315px;width:40px;height:40px}.slim_armor_special_fallHealer{background-image:url(spritesmith2.png);background-position:-1001px -910px;width:90px;height:90px}.slim_armor_special_fallMage{background-image:url(spritesmith2.png);background-position:-1198px -637px;width:120px;height:90px}.slim_armor_special_fallRogue{background-image:url(spritesmith2.png);background-position:-1365px 0;width:105px;height:90px}.slim_armor_special_fallWarrior{background-image:url(spritesmith2.png);background-position:-364px -97px;width:90px;height:90px}.weapon_special_fallHealer{background-image:url(spritesmith2.png);background-position:-497px -1280px;width:90px;height:90px}.weapon_special_fallMage{background-image:url(spritesmith2.png);background-position:-700px -1183px;width:120px;height:90px}.weapon_special_fallRogue{background-image:url(spritesmith2.png);background-position:-849px -1092px;width:105px;height:90px}.weapon_special_fallWarrior{background-image:url(spritesmith2.png);background-position:-961px -1001px;width:90px;height:90px}.broad_armor_special_gaymerx{background-position:-1386px -91px}.broad_armor_special_gaymerx,.head_special_gaymerx{background-image:url(spritesmith2.png);width:90px;height:90px}.head_special_gaymerx{background-position:-1316px -455px}.shop_armor_special_gaymerx{background-position:-1638px -364px}.shop_armor_special_gaymerx,.shop_head_special_gaymerx{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_head_special_gaymerx{background-position:-1409px -910px}.slim_armor_special_gaymerx{background-position:-1386px -273px}.back_mystery_201402,.slim_armor_special_gaymerx{background-image:url(spritesmith2.png);width:90px;height:90px}.back_mystery_201402{background-position:-1365px -364px}.broad_armor_mystery_201402{background-position:-182px -1401px}.broad_armor_mystery_201402,.head_mystery_201402{background-image:url(spritesmith2.png);width:90px;height:90px}.head_mystery_201402{background-position:-364px -1371px}.shop_armor_mystery_201402{background-image:url(spritesmith2.png);background-position:-1589px -537px;width:40px;height:40px}.shop_back_mystery_201402{background-position:-1492px -728px}.shop_back_mystery_201402,.shop_head_mystery_201402{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_head_mystery_201402{background-position:-455px -1594px}.slim_armor_mystery_201402{background-image:url(spritesmith2.png);background-position:-1316px -546px;width:90px;height:90px}.broad_armor_mystery_201403{background-position:0 -1425px}.broad_armor_mystery_201403,.headAccessory_mystery_201403{background-image:url(spritesmith2.png);width:90px;height:90px}.headAccessory_mystery_201403{background-position:-91px -1425px}.shop_armor_mystery_201403{background-image:url(spritesmith2.png);background-position:-578px -1553px;width:40px;height:40px}.shop_headAccessory_mystery_201403{background-image:url(spritesmith2.png);background-position:-1653px -41px;width:40px;height:40px}.slim_armor_mystery_201403{background-image:url(spritesmith2.png);background-position:-679px -1274px;width:90px;height:90px}.back_mystery_201404{background-position:-455px -1371px}.back_mystery_201404,.headAccessory_mystery_201404{background-image:url(spritesmith2.png);width:90px;height:90px}.headAccessory_mystery_201404{background-position:-955px -1092px}.shop_back_mystery_201404{background-image:url(spritesmith2.png);background-position:-1653px 0;width:40px;height:40px}.shop_headAccessory_mystery_201404{background-image:url(spritesmith2.png);background-position:-1589px -455px;width:40px;height:40px}.broad_armor_mystery_201405{background-position:-1471px 0}.broad_armor_mystery_201405,.head_mystery_201405{background-image:url(spritesmith2.png);width:90px;height:90px}.head_mystery_201405{background-position:-546px -1371px}.shop_armor_mystery_201405{background-position:-123px -1648px}.shop_armor_mystery_201405,.shop_head_mystery_201405{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_head_mystery_201405{background-position:-82px -1648px}.slim_armor_mystery_201405{background-image:url(spritesmith2.png);background-position:-273px -1462px;width:90px;height:90px}.broad_armor_mystery_201406{background-position:-364px 0}.broad_armor_mystery_201406,.head_mystery_201406{background-image:url(spritesmith2.png);width:90px;height:96px}.head_mystery_201406{background-position:-182px -318px}.shop_armor_mystery_201406{background-position:-41px -1648px}.shop_armor_mystery_201406,.shop_head_mystery_201406{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_head_mystery_201406{background-position:-772px -1456px}.slim_armor_mystery_201406{background-image:url(spritesmith2.png);background-position:-273px -212px;width:90px;height:96px}.broad_armor_mystery_201407{background-position:-1477px -273px}.broad_armor_mystery_201407,.head_mystery_201407{background-image:url(spritesmith2.png);width:90px;height:90px}.head_mystery_201407{background-position:-182px -1492px}.shop_armor_mystery_201407{background-position:0 -1648px}.shop_armor_mystery_201407,.shop_head_mystery_201407{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_head_mystery_201407{background-position:-1501px -678px}.slim_armor_mystery_201407{background-image:url(spritesmith2.png);background-position:-1407px -546px;width:90px;height:90px}.broad_armor_mystery_201408{background-position:-637px -1371px}.broad_armor_mystery_201408,.head_mystery_201408{background-image:url(spritesmith2.png);width:90px;height:90px}.head_mystery_201408{background-position:-1046px -1092px}.shop_armor_mystery_201408{background-position:-1043px -1274px}.shop_armor_mystery_201408,.shop_head_mystery_201408{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_head_mystery_201408{background-position:-1097px -1224px}.slim_armor_mystery_201408{background-image:url(spritesmith2.png);background-position:-91px -1516px;width:90px;height:90px}.broad_armor_mystery_201409{background-position:-1143px -1001px}.broad_armor_mystery_201409,.headAccessory_mystery_201409{background-image:url(spritesmith2.png);width:90px;height:90px}.headAccessory_mystery_201409{background-position:-455px -1462px}.shop_armor_mystery_201409{background-image:url(spritesmith2.png);background-position:-1228px -1092px;width:40px;height:40px}.shop_headAccessory_mystery_201409{background-image:url(spritesmith2.png);background-position:-1501px -637px;width:40px;height:40px}.slim_armor_mystery_201409{background-image:url(spritesmith2.png);background-position:-1410px -637px;width:90px;height:90px}.back_mystery_201410{background-position:-1003px -1183px}.back_mystery_201410,.broad_armor_mystery_201410{background-image:url(spritesmith2.png);width:93px;height:90px}.broad_armor_mystery_201410{background-position:-546px -1462px}.shop_armor_mystery_201410{background-position:-496px -1553px}.shop_armor_mystery_201410,.shop_back_mystery_201410{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_back_mystery_201410{background-position:-731px -1456px}.slim_armor_mystery_201410{background-image:url(spritesmith2.png);background-position:-1274px -910px;width:93px;height:90px}.head_mystery_201411{background-image:url(spritesmith2.png);background-position:-1568px -91px;width:90px;height:90px}.shop_head_mystery_201411{background-position:-455px -1553px}.shop_head_mystery_201411,.shop_weapon_mystery_201411{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_weapon_mystery_201411{background-position:-1097px -1183px}.weapon_mystery_201411{background-image:url(spritesmith2.png);background-position:-1401px -728px;width:90px;height:90px}.broad_armor_mystery_201412{background-position:-1234px -1001px}.broad_armor_mystery_201412,.head_mystery_201412{background-image:url(spritesmith2.png);width:90px;height:90px}.head_mystery_201412{background-position:-1547px -364px}.shop_armor_mystery_201412{background-position:-123px -1607px}.shop_armor_mystery_201412,.shop_head_mystery_201412{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_head_mystery_201412{background-position:-182px -1152px}.slim_armor_mystery_201412{background-image:url(spritesmith2.png);background-position:-1365px -819px;width:90px;height:90px}.broad_armor_mystery_201501{background-position:-819px -1365px}.broad_armor_mystery_201501,.head_mystery_201501{background-image:url(spritesmith2.png);width:90px;height:90px}.head_mystery_201501{background-position:-182px -1583px}.shop_armor_mystery_201501{background-position:-1659px -273px}.shop_armor_mystery_201501,.shop_head_mystery_201501{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_head_mystery_201501{background-position:-224px -1052px}.slim_armor_mystery_201501{background-position:-640px -1462px}.broad_armor_mystery_301404,.slim_armor_mystery_201501{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_mystery_301404{background-position:-364px -1553px}.eyewear_mystery_301404{background-position:-1498px -546px}.eyewear_mystery_301404,.head_mystery_301404{background-image:url(spritesmith2.png);width:90px;height:90px}.head_mystery_301404{background-position:-1568px -273px}.shop_armor_mystery_301404{background-position:-315px -1128px}.shop_armor_mystery_301404,.shop_eyewear_mystery_301404{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_eyewear_mystery_301404{background-position:0 -1607px}.shop_head_mystery_301404{background-position:-41px -1607px}.shop_head_mystery_301404,.shop_weapon_mystery_301404{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_weapon_mystery_301404{background-position:-82px -1607px}.slim_armor_mystery_301404{background-position:-952px -1274px}.slim_armor_mystery_301404,.weapon_mystery_301404{background-image:url(spritesmith2.png);width:90px;height:90px}.weapon_mystery_301404{background-position:-273px -1553px}.eyewear_mystery_301405{background-position:-1137px -1092px}.eyewear_mystery_301405,.headAccessory_mystery_301405{background-image:url(spritesmith2.png);width:90px;height:90px}.headAccessory_mystery_301405{background-position:-1498px -455px}.head_mystery_301405{background-position:-1562px 0}.head_mystery_301405,.shield_mystery_301405{background-image:url(spritesmith2.png);width:90px;height:90px}.shield_mystery_301405{background-position:-728px -1365px}.shop_eyewear_mystery_301405{background-image:url(spritesmith2.png);background-position:-910px -1365px;width:40px;height:40px}.shop_headAccessory_mystery_301405{background-image:url(spritesmith2.png);background-position:-1138px -1183px;width:40px;height:40px}.shop_head_mystery_301405{background-position:-1368px -910px}.shop_head_mystery_301405,.shop_shield_mystery_301405{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_shield_mystery_301405{background-position:-537px -1553px}.broad_armor_special_springHealer{background-image:url(spritesmith2.png);background-position:-861px -1274px;width:90px;height:90px}.broad_armor_special_springMage{background-image:url(spritesmith2.png);background-position:0 -1516px;width:90px;height:90px}.broad_armor_special_springRogue{background-image:url(spritesmith2.png);background-position:-1274px -819px;width:90px;height:90px}.broad_armor_special_springWarrior{background-image:url(spritesmith2.png);background-position:-1498px -182px;width:90px;height:90px}.headAccessory_special_springHealer{background-image:url(spritesmith2.png);background-position:-364px -1462px;width:90px;height:90px}.headAccessory_special_springMage{background-image:url(spritesmith2.png);background-position:-1310px -728px;width:90px;height:90px}.headAccessory_special_springRogue{background-image:url(spritesmith2.png);background-position:-912px -1183px;width:90px;height:90px}.headAccessory_special_springWarrior{background-image:url(spritesmith2.png);background-position:-1477px -91px;width:90px;height:90px}.head_special_springHealer{background-image:url(spritesmith2.png);background-position:-1407px -455px;width:90px;height:90px}.head_special_springMage{background-position:-1319px -637px}.head_special_springMage,.head_special_springRogue{background-image:url(spritesmith2.png);width:90px;height:90px}.head_special_springRogue{background-position:-1052px -1001px}.head_special_springWarrior{background-position:-821px -1183px}.head_special_springWarrior,.shield_special_springHealer{background-image:url(spritesmith2.png);width:90px;height:90px}.shield_special_springHealer{background-position:-1183px -819px}.shield_special_springRogue{background-position:-1092px -910px}.shield_special_springRogue,.shield_special_springWarrior{background-image:url(spritesmith2.png);width:90px;height:90px}.shield_special_springWarrior{background-position:-1219px -728px}.shop_armor_special_springHealer{background-image:url(spritesmith2.png);background-position:-1325px -1001px;width:40px;height:40px}.shop_armor_special_springMage{background-image:url(spritesmith2.png);background-position:-1659px -82px;width:40px;height:40px}.shop_armor_special_springRogue{background-image:url(spritesmith2.png);background-position:-1659px -123px;width:40px;height:40px}.shop_armor_special_springWarrior{background-image:url(spritesmith2.png);background-position:-951px -1365px;width:40px;height:40px}.shop_headAccessory_special_springHealer{background-image:url(spritesmith2.png);background-position:-1589px -496px;width:40px;height:40px}.shop_headAccessory_special_springMage{background-image:url(spritesmith2.png);background-position:-731px -1497px;width:40px;height:40px}.shop_headAccessory_special_springRogue{background-image:url(spritesmith2.png);background-position:-1368px -951px;width:40px;height:40px}.shop_headAccessory_special_springWarrior{background-image:url(spritesmith2.png);background-position:-273px -1644px;width:40px;height:40px}.shop_head_special_springHealer{background-image:url(spritesmith2.png);background-position:-813px -1456px;width:40px;height:40px}.shop_head_special_springMage{background-image:url(spritesmith2.png);background-position:-1542px -637px;width:40px;height:40px}.shop_head_special_springRogue copy{background-image:url(spritesmith2.png);background-position:-496px -1594px;width:40px;height:40px}.shop_head_special_springRogue{background-image:url(spritesmith2.png);background-position:-1179px -1183px;width:40px;height:40px}.shop_head_special_springWarrior{background-image:url(spritesmith2.png);background-position:-1456px -819px;width:40px;height:40px}.shop_shield_special_springHealer{background-image:url(spritesmith2.png);background-position:-1228px -1133px;width:40px;height:40px}.shop_shield_special_springRogue{background-image:url(spritesmith2.png);background-position:-1138px -1224px;width:40px;height:40px}.shop_shield_special_springWarrior{background-image:url(spritesmith2.png);background-position:-619px -1553px;width:40px;height:40px}.shop_weapon_special_springHealer{background-image:url(spritesmith2.png);background-position:-1084px -1274px;width:40px;height:40px}.shop_weapon_special_springMage{background-image:url(spritesmith2.png);background-position:-314px -1644px;width:40px;height:40px}.shop_weapon_special_springRogue{background-image:url(spritesmith2.png);background-position:-1269px -1092px;width:40px;height:40px}.shop_weapon_special_springWarrior{background-image:url(spritesmith2.png);background-position:-910px -1406px;width:40px;height:40px}.slim_armor_special_springHealer{background-image:url(spritesmith2.png);background-position:-1407px -182px;width:90px;height:90px}.slim_armor_special_springMage{background-image:url(spritesmith2.png);background-position:-588px -1280px;width:90px;height:90px}.slim_armor_special_springRogue{background-image:url(spritesmith2.png);background-position:-273px -1371px;width:90px;height:90px}.slim_armor_special_springWarrior{background-image:url(spritesmith2.png);background-position:-406px -1280px;width:90px;height:90px}.weapon_special_springHealer{background-position:-1128px -728px}.weapon_special_springHealer,.weapon_special_springMage{background-image:url(spritesmith2.png);width:90px;height:90px}.weapon_special_springMage{background-position:-91px -1334px}.weapon_special_springRogue{background-position:0 -1334px}.weapon_special_springRogue,.weapon_special_springWarrior{background-image:url(spritesmith2.png);width:90px;height:90px}.weapon_special_springWarrior{background-position:-609px -1183px}.body_special_summerHealer{background-image:url(spritesmith2.png);background-position:-91px -318px;width:90px;height:105px}.body_special_summerMage{background-position:0 -318px}.body_special_summerMage,.broad_armor_special_summerHealer{background-image:url(spritesmith2.png);width:90px;height:105px}.broad_armor_special_summerHealer{background-position:-273px -106px}.broad_armor_special_summerMage{background-image:url(spritesmith2.png);background-position:-182px -212px;width:90px;height:105px}.broad_armor_special_summerRogue{background-image:url(spritesmith2.png);background-position:-1204px -546px;width:111px;height:90px}.broad_armor_special_summerWarrior{background-image:url(spritesmith2.png);background-position:-294px -1280px;width:111px;height:90px}.eyewear_special_summerRogue{background-image:url(spritesmith2.png);background-position:-1295px -182px;width:111px;height:90px}.eyewear_special_summerWarrior{background-image:url(spritesmith2.png);background-position:-1274px -273px;width:111px;height:90px}.head_special_summerHealer{background-position:-273px 0}.head_special_summerHealer,.head_special_summerMage{background-image:url(spritesmith2.png);width:90px;height:105px}.head_special_summerMage{background-position:-91px 0}.head_special_summerRogue{background-position:-182px -1219px}.head_special_summerRogue,.head_special_summerWarrior{background-image:url(spritesmith2.png);width:111px;height:90px}.head_special_summerWarrior{background-position:-315px -1189px}.Healer_Summer{background-position:0 0}.Healer_Summer,.Mage_Summer{background-image:url(spritesmith2.png);width:90px;height:105px}.Mage_Summer{background-position:-182px -106px}.SummerRogue14{background-position:-1092px -182px}.SummerRogue14,.SummerWarrior14{background-image:url(spritesmith2.png);width:111px;height:90px}.SummerWarrior14{background-position:-1007px -455px}.shield_special_summerHealer{background-image:url(spritesmith2.png);background-position:-182px 0;width:90px;height:105px}.shield_special_summerRogue{background-position:-819px -728px}.shield_special_summerRogue,.shield_special_summerWarrior{background-image:url(spritesmith2.png);width:111px;height:90px}.shield_special_summerWarrior{background-position:-1092px -91px}.shop_armor_special_summerHealer{background-image:url(spritesmith2.png);background-position:-1680px -205px;width:40px;height:40px}.shop_armor_special_summerMage{background-image:url(spritesmith2.png);background-position:-1125px -1265px;width:40px;height:40px}.shop_armor_special_summerRogue{background-image:url(spritesmith2.png);background-position:-1533px -719px;width:40px;height:40px}.shop_armor_special_summerWarrior{background-image:url(spritesmith2.png);background-position:-123px -1689px;width:40px;height:40px}.shop_body_special_summerHealer{background-image:url(spritesmith2.png);background-position:-1694px 0;width:40px;height:40px}.shop_body_special_summerMage{background-image:url(spritesmith2.png);background-position:-1694px -41px;width:40px;height:40px}.shop_eyewear_special_summerRogue{background-image:url(spritesmith2.png);background-position:-578px -1594px;width:40px;height:40px}.shop_eyewear_special_summerWarrior{background-image:url(spritesmith2.png);background-position:-455px -1635px;width:40px;height:40px}.shop_head_special_summerHealer{background-image:url(spritesmith2.png);background-position:-951px -1406px;width:40px;height:40px}.shop_head_special_summerMage{background-image:url(spritesmith2.png);background-position:-1228px -1174px;width:40px;height:40px}.shop_head_special_summerRogue{background-image:url(spritesmith2.png);background-position:-1179px -1224px;width:40px;height:40px}.shop_head_special_summerWarrior{background-image:url(spritesmith2.png);background-position:-1409px -951px;width:40px;height:40px}.shop_shield_special_summerHealer{background-image:url(spritesmith2.png);background-position:-1269px -1133px;width:40px;height:40px}.shop_shield_special_summerRogue{background-image:url(spritesmith2.png);background-position:-1700px -82px;width:40px;height:40px}.shop_shield_special_summerWarrior{background-image:url(spritesmith2.png);background-position:-1497px -810px;width:40px;height:40px}.shop_weapon_special_summerHealer{background-image:url(spritesmith2.png);background-position:-246px -1685px;width:40px;height:40px}.shop_weapon_special_summerMage{background-image:url(spritesmith2.png);background-position:-731px -1538px;width:40px;height:40px}.shop_weapon_special_summerRogue{background-image:url(spritesmith2.png);background-position:-813px -1497px;width:40px;height:40px}.shop_weapon_special_summerWarrior{background-image:url(spritesmith2.png);background-position:-1630px -496px;width:40px;height:40px}.slim_armor_special_summerHealer{background-image:url(spritesmith2.png);background-position:-91px -106px;width:90px;height:105px}.slim_armor_special_summerMage{background-image:url(spritesmith2.png);background-position:0 -106px;width:90px;height:105px}.slim_armor_special_summerRogue{background-image:url(spritesmith2.png);background-position:-364px -1007px;width:111px;height:90px}.slim_armor_special_summerWarrior{background-image:url(spritesmith2.png);background-position:-112px -1061px;width:111px;height:90px}.weapon_special_summerHealer{background-position:0 -212px}.weapon_special_summerHealer,.weapon_special_summerMage{background-image:url(spritesmith2.png);width:90px;height:105px}.weapon_special_summerMage{background-position:-91px -212px}.weapon_special_summerRogue{background-position:-910px -546px}.weapon_special_summerRogue,.weapon_special_summerWarrior{background-image:url(spritesmith2.png);width:111px;height:90px}.weapon_special_summerWarrior{background-position:0 -1061px}.broad_armor_special_candycane{background-image:url(spritesmith2.png);background-position:-1001px -273px;width:90px;height:90px}.broad_armor_special_ski{background-position:-819px -637px}.broad_armor_special_ski,.broad_armor_special_snowflake{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_special_snowflake{background-position:-637px -819px}.broad_armor_special_winter2015Healer{background-image:url(spritesmith2.png);background-position:-728px -728px;width:90px;height:90px}.broad_armor_special_winter2015Mage{background-image:url(spritesmith2.png);background-position:-1001px -182px;width:90px;height:90px}.broad_armor_special_winter2015Rogue{background-image:url(spritesmith2.png);background-position:-910px -455px;width:96px;height:90px}.broad_armor_special_winter2015Warrior{background-image:url(spritesmith2.png);background-position:-455px -910px;width:90px;height:90px}.broad_armor_special_yeti{background-position:-1001px -91px}.broad_armor_special_yeti,.head_special_candycane{background-image:url(spritesmith2.png);width:90px;height:90px}.head_special_candycane{background-position:-1589px -182px}.head_special_nye{background-image:url(spritesmith3.png);background-position:-1442px -364px;width:90px;height:90px}.head_special_nye2014{background-position:-1199px -1147px}.head_special_nye2014,.head_special_ski{background-image:url(spritesmith3.png);width:90px;height:90px}.head_special_ski{background-position:-1487px -182px}.head_special_snowflake{background-position:-1361px -606px}.head_special_snowflake,.head_special_winter2015Healer{background-image:url(spritesmith3.png);width:90px;height:90px}.head_special_winter2015Healer{background-position:-602px -1371px}.head_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1108px -1121px;width:90px;height:90px}.head_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-1543px -455px;width:96px;height:90px}.head_special_winter2015Warrior{background-position:-364px -1593px}.head_special_winter2015Warrior,.head_special_yeti{background-image:url(spritesmith3.png);width:90px;height:90px}.head_special_yeti{background-position:-979px -972px}.shield_special_ski{background-position:-406px -1320px;width:104px}.shield_special_ski,.shield_special_snowflake{background-image:url(spritesmith3.png);height:90px}.shield_special_snowflake{background-position:-1270px -553px;width:90px}.shield_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1387px -91px;width:90px;height:90px}.shield_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-732px -1183px;width:96px;height:90px}.shield_special_winter2015Warrior{background-position:-1478px -91px}.shield_special_winter2015Warrior,.shield_special_yeti{background-image:url(spritesmith3.png);width:90px;height:90px}.shield_special_yeti{background-position:-469px -1411px}.shop_armor_special_candycane{background-image:url(spritesmith3.png);background-position:-543px -1164px;width:40px;height:40px}.shop_armor_special_ski{background-position:-584px -1164px}.shop_armor_special_ski,.shop_armor_special_snowflake{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_armor_special_snowflake{background-position:-1444px -1247px}.shop_armor_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1064px -1600px;width:40px;height:40px}.shop_armor_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1870px -446px;width:40px;height:40px}.shop_armor_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-1908px -246px;width:40px;height:40px}.shop_armor_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-123px -1920px;width:40px;height:40px}.shop_armor_special_yeti{background-position:-867px -1718px}.shop_armor_special_yeti,.shop_head_special_candycane{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_special_candycane{background-position:-164px -1920px}.shop_head_special_nye{background-position:-418px -1880px}.shop_head_special_nye,.shop_head_special_nye2014{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_special_nye2014{background-position:-1619px -1042px}.shop_head_special_ski{background-position:-1278px -1440px}.shop_head_special_ski,.shop_head_special_snowflake{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_special_snowflake{background-position:-1506px -1198px}.shop_head_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1578px -1096px;width:40px;height:40px}.shop_head_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1908px -205px;width:40px;height:40px}.shop_head_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-1896px -290px;width:40px;height:40px}.shop_head_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-1660px -960px;width:40px;height:40px}.shop_head_special_yeti{background-image:url(spritesmith3.png);background-position:-1786px -693px;width:40px;height:40px}.shop_shield_special_ski{background-position:-1908px -164px}.shop_shield_special_ski,.shop_shield_special_snowflake{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_shield_special_snowflake{background-position:-1870px -405px}.shop_shield_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1203px -1487px;width:40px;height:40px}.shop_shield_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-634px -1804px;width:40px;height:40px}.shop_shield_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-675px -1789px;width:40px;height:40px}.shop_shield_special_yeti{background-position:-1303px -1399px}.shop_shield_special_yeti,.shop_weapon_special_candycane{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_special_candycane{background-position:-1724px -826px}.shop_weapon_special_ski{background-position:-1392px -1310px}.shop_weapon_special_ski,.shop_weapon_special_snowflake{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_special_snowflake{background-position:-1351px -1351px}.shop_weapon_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1520px -1157px;width:40px;height:40px}.shop_weapon_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1023px -1611px;width:40px;height:40px}.shop_weapon_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-1904px -123px;width:40px;height:40px}.shop_weapon_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-928px -1666px;width:40px;height:40px}.shop_weapon_special_yeti{background-image:url(spritesmith3.png);background-position:-1121px -1542px;width:40px;height:40px}.slim_armor_special_candycane{background-image:url(spritesmith3.png);background-position:-1543px -546px;width:90px;height:90px}.slim_armor_special_ski{background-position:-1290px -1008px}.slim_armor_special_ski,.slim_armor_special_snowflake{background-image:url(spritesmith3.png);width:90px;height:90px}.slim_armor_special_snowflake{background-position:-742px -1462px}.slim_armor_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1108px -1212px;width:90px;height:90px}.slim_armor_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1651px 0;width:90px;height:90px}.slim_armor_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-597px -1553px;width:96px;height:90px}.slim_armor_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-1624px -364px;width:90px;height:90px}.slim_armor_special_yeti{background-position:-1296px -151px}.slim_armor_special_yeti,.weapon_special_candycane{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_special_candycane{background-position:-729px -1092px}.weapon_special_ski{background-position:-888px -972px}.weapon_special_ski,.weapon_special_snowflake{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_special_snowflake{background-position:-1179px -601px}.weapon_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1305px -242px;width:90px;height:90px}.weapon_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1260px -462px;width:90px;height:90px}.weapon_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-1044px -848px;width:96px;height:90px}.weapon_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-1305px -333px;width:90px;height:90px}.weapon_special_yeti{background-position:-641px -1189px}.back_special_wondercon_black,.weapon_special_yeti{background-image:url(spritesmith3.png);width:90px;height:90px}.back_special_wondercon_black{background-position:0 -1351px}.back_special_wondercon_red{background-position:-1354px 0}.back_special_wondercon_red,.body_special_wondercon_black{background-image:url(spritesmith3.png);width:90px;height:90px}.body_special_wondercon_black{background-position:-91px -1351px}.body_special_wondercon_gold{background-position:-315px -1320px}.body_special_wondercon_gold,.body_special_wondercon_red{background-image:url(spritesmith3.png);width:90px;height:90px}.body_special_wondercon_red{background-position:-196px -1344px}.eyewear_special_wondercon_black{background-image:url(spritesmith3.png);background-position:-820px -1092px;width:90px;height:90px}.eyewear_special_wondercon_red{background-image:url(spritesmith3.png);background-position:-1179px -692px;width:90px;height:90px}.shop_back_special_wondercon_black{background-image:url(spritesmith3.png);background-position:-826px -1718px;width:40px;height:40px}.shop_back_special_wondercon_red{background-image:url(spritesmith3.png);background-position:-785px -1737px;width:40px;height:40px}.shop_body_special_wondercon_black{background-image:url(spritesmith3.png);background-position:-1795px -641px;width:40px;height:40px}.shop_body_special_wondercon_gold{background-image:url(spritesmith3.png);background-position:-1904px -82px;width:40px;height:40px}.shop_body_special_wondercon_red{background-image:url(spritesmith3.png);background-position:-377px -1868px;width:40px;height:40px}.shop_eyewear_special_wondercon_black{background-image:url(spritesmith3.png);background-position:-1619px -1001px;width:40px;height:40px}.shop_eyewear_special_wondercon_red{background-image:url(spritesmith3.png);background-position:-566px -1817px;width:40px;height:40px}.head_0{background-position:-911px -1063px;width:90px;height:90px}.customize-option.head_0,.head_0{background-image:url(spritesmith3.png)}.customize-option.head_0{background-position:-936px -1078px;width:60px;height:60px}.head_healer_1{background-position:-1162px -783px}.head_healer_1,.head_healer_2{background-image:url(spritesmith3.png);width:90px;height:90px}.head_healer_2{background-position:-1396px -182px}.head_healer_3{background-position:-511px -1320px}.head_healer_3,.head_healer_4{background-image:url(spritesmith3.png);width:90px;height:90px}.head_healer_4{background-position:-1351px -424px}.head_healer_5{background-position:-1396px -273px}.head_healer_5,.head_rogue_1{background-image:url(spritesmith3.png);width:90px;height:90px}.head_rogue_1{background-position:-1070px -939px}.head_rogue_2{background-position:-1270px -644px}.head_rogue_2,.head_rogue_3{background-image:url(spritesmith3.png);width:90px;height:90px}.head_rogue_3{background-position:-641px -1280px}.head_rogue_4{background-position:-287px -1411px}.head_rogue_4,.head_rogue_5{background-image:url(spritesmith3.png);width:90px;height:90px}.head_rogue_5{background-position:0 -1442px}.head_special_2{background-position:-829px -1183px}.head_special_2,.head_warrior_1{background-image:url(spritesmith3.png);width:90px;height:90px}.head_warrior_1{background-position:-91px -1442px}.head_warrior_2{background-position:-1445px 0}.head_warrior_2,.head_warrior_3{background-image:url(spritesmith3.png);width:90px;height:90px}.head_warrior_3{background-position:-182px -1435px}.head_warrior_4{background-position:-1161px -874px}.head_warrior_4,.head_warrior_5{background-image:url(spritesmith3.png);width:90px;height:90px}.head_warrior_5{background-position:-1361px -515px}.head_wizard_1{background-position:-378px -1411px}.head_wizard_1,.head_wizard_2{background-image:url(spritesmith3.png);width:90px;height:90px}.head_wizard_2{background-position:-1002px -1063px}.head_wizard_3{background-position:-1270px -735px}.head_wizard_3,.head_wizard_4{background-image:url(spritesmith3.png);width:90px;height:90px}.head_wizard_4{background-position:-732px -1274px}.head_wizard_5{background-position:-920px -1154px;width:90px;height:90px}.head_wizard_5,.shop_head_healer_1{background-image:url(spritesmith3.png)}.shop_head_healer_1{background-position:-295px -1879px;width:40px;height:40px}.shop_head_healer_2{background-position:-525px -1828px}.shop_head_healer_2,.shop_head_healer_3{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_healer_3{background-position:-1829px -518px}.shop_head_healer_4{background-position:-1815px -559px}.shop_head_healer_4,.shop_head_healer_5{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_healer_5{background-position:0 -1899px}.shop_head_rogue_1{background-position:-1578px -1055px}.shop_head_rogue_1,.shop_head_rogue_2{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_rogue_2{background-position:-336px -1868px}.shop_head_rogue_3{background-position:-1465px -1206px}.shop_head_rogue_3,.shop_head_rogue_4{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_rogue_4{background-position:-1080px -1559px}.shop_head_rogue_5{background-position:-254px -1879px}.shop_head_rogue_5,.shop_head_special_0{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_special_0{background-position:-459px -1839px}.shop_head_special_1{background-position:-883px -1677px}.shop_head_special_1,.shop_head_special_2{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_special_2{background-position:-1657px -919px}.shop_head_warrior_1{background-position:-1724px -785px}.shop_head_warrior_1,.shop_head_warrior_2{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_warrior_2{background-position:-82px -1892px}.shop_head_warrior_3{background-position:-502px -1164px}.shop_head_warrior_3,.shop_head_warrior_4{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_warrior_4{background-position:-1237px -1433px}.shop_head_warrior_5{background-position:-1529px -1116px}.shop_head_warrior_5,.shop_head_wizard_1{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_wizard_1{background-position:-1795px -600px}.shop_head_wizard_2{background-position:-969px -1625px}.shop_head_wizard_2,.shop_head_wizard_3{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_wizard_3{background-position:-213px -1879px}.shop_head_wizard_4{background-position:-1829px -477px}.shop_head_wizard_4,.shop_head_wizard_5{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_wizard_5{background-position:-744px -1737px}.shield_healer_1{background-image:url(spritesmith3.png);background-position:-1253px -826px;width:90px;height:90px}.shield_healer_2{background-position:-1093px -1030px}.shield_healer_2,.shield_healer_3{background-image:url(spritesmith3.png);width:90px;height:90px}.shield_healer_3{background-position:-1487px -273px}.shield_healer_4{background-position:-823px -1274px}.shield_healer_4,.shield_healer_5{background-image:url(spritesmith3.png);width:90px;height:90px}.shield_healer_5{background-position:-1452px -455px}.shield_rogue_0{background-position:-273px -1502px;width:90px}.shield_rogue_0,.shield_rogue_1{background-image:url(spritesmith3.png);height:90px}.shield_rogue_1{background-position:-1184px -965px;width:103px}.shield_rogue_2{background-position:-1361px -697px;width:103px}.shield_rogue_2,.shield_rogue_3{background-image:url(spritesmith3.png);height:90px}.shield_rogue_3{background-position:0 -1533px;width:114px}.shield_rogue_4{background-position:-1011px -1154px;width:96px}.shield_rogue_4,.shield_rogue_5{background-image:url(spritesmith3.png);height:90px}.shield_rogue_5{background-position:-1536px 0;width:114px}.shield_rogue_6{background-position:-693px -1371px;width:114px}.shield_rogue_6,.shield_special_1{background-image:url(spritesmith3.png);height:90px}.shield_special_1{background-position:-182px -1526px;width:90px}.shield_special_goldenknight{background-position:-364px -1502px;width:111px}.shield_special_goldenknight,.shield_warrior_1{background-image:url(spritesmith3.png);height:90px}.shield_warrior_1{background-position:-920px -1245px;width:90px}.shield_warrior_2{background-position:-1452px -546px}.shield_warrior_2,.shield_warrior_3{background-image:url(spritesmith3.png);width:90px;height:90px}.shield_warrior_3{background-position:-560px -1462px}.shield_warrior_4{background-position:-1569px -91px}.shield_warrior_4,.shield_warrior_5{background-image:url(spritesmith3.png);width:90px;height:90px}.shield_warrior_5{background-position:-1361px -788px}.shop_shield_healer_1{background-image:url(spritesmith3.png);background-position:-1737px -744px;width:40px;height:40px}.shop_shield_healer_2{background-position:-1162px -1490px}.shop_shield_healer_2,.shop_shield_healer_3{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_shield_healer_3{background-position:-41px -1888px}.shop_shield_healer_4{background-position:-172px -1879px}.shop_shield_healer_4,.shop_shield_healer_5{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_shield_healer_5{background-position:-418px -1839px}.shop_shield_rogue_0{background-position:-1403px -1258px}.shop_shield_rogue_0,.shop_shield_rogue_1{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_shield_rogue_1{background-position:-131px -1879px}.shop_shield_rogue_2{background-position:-1867px -249px}.shop_shield_rogue_2,.shop_shield_rogue_3{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_shield_rogue_3{background-position:-1855px -323px}.shop_shield_rogue_4{background-position:-1882px -41px}.shop_shield_rogue_4,.shop_shield_rogue_5{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_shield_rogue_5{background-position:-1619px -960px}.shop_shield_rogue_6{background-position:-1303px -1358px}.shop_shield_rogue_6,.shop_shield_special_0{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_shield_special_0{background-position:-1882px 0}.shop_shield_special_1{background-position:-1351px -1310px}.shop_shield_special_1,.shop_shield_special_goldenknight{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_shield_special_goldenknight{background-position:-1829px -436px}.shop_shield_warrior_1{background-position:-1867px -208px}.shop_shield_warrior_1,.shop_shield_warrior_2{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_shield_warrior_2{background-position:-686px -1748px}.shop_shield_warrior_3{background-position:-1745px -693px}.shop_shield_warrior_3,.shop_shield_warrior_4{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_shield_warrior_4{background-position:-1196px -1446px}.shop_shield_warrior_5{background-position:-842px -1677px}.shop_shield_warrior_5,.shop_weapon_healer_0{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_healer_0{background-position:-1578px -1014px}.shop_weapon_healer_1{background-position:-1537px -1075px}.shop_weapon_healer_1,.shop_weapon_healer_2{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_healer_2{background-position:-1867px -167px}.shop_weapon_healer_3{background-position:-1023px -1570px}.shop_weapon_healer_3,.shop_weapon_healer_4{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_healer_4{background-position:-634px -1763px}.shop_weapon_healer_5{background-position:-1121px -1501px}.shop_weapon_healer_5,.shop_weapon_healer_6{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_healer_6{background-position:-593px -1776px}.shop_weapon_rogue_0{background-position:-928px -1625px}.shop_weapon_rogue_0,.shop_weapon_rogue_1{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_rogue_1{background-position:-1754px -652px}.shop_weapon_rogue_2{background-position:-1262px -1381px}.shop_weapon_rogue_2,.shop_weapon_rogue_3{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_rogue_3{background-position:-785px -1696px}.shop_weapon_rogue_4{background-position:-1424px -1206px}.shop_weapon_rogue_4,.shop_weapon_rogue_5{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_rogue_5{background-position:-377px -1827px}.shop_weapon_rogue_6{background-position:-1080px -1518px}.shop_weapon_rogue_6,.shop_weapon_special_0{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_special_0{background-position:-525px -1787px}.shop_weapon_special_1{background-position:-1683px -796px}.shop_weapon_special_1,.shop_weapon_special_2{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_special_2{background-position:-1774px -559px}.shop_weapon_special_3{background-position:-1616px -919px}.shop_weapon_special_3,.shop_weapon_special_critical{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_special_critical{background-position:0 -1858px}.shop_weapon_warrior_0{background-position:-336px -1827px}.shop_weapon_warrior_0,.shop_weapon_warrior_1{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_warrior_1{background-position:-1488px -1112px}.shop_weapon_warrior_2{background-position:-1754px -611px}.shop_weapon_warrior_2,.shop_weapon_warrior_3{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_warrior_3{background-position:-90px -1851px}.shop_weapon_warrior_4{background-position:-1479px -1153px}.shop_weapon_warrior_4,.shop_weapon_warrior_5{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_warrior_5{background-position:-1155px -1449px}.shop_weapon_warrior_6{background-position:-1537px -1034px}.shop_weapon_warrior_6,.shop_weapon_wizard_0{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_wizard_0{background-position:-1696px -744px}.shop_weapon_wizard_1{background-position:-593px -1735px}.shop_weapon_wizard_1,.shop_weapon_wizard_2{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_wizard_2{background-position:-49px -1806px}.shop_weapon_wizard_3{background-position:-517px -1502px}.shop_weapon_wizard_3,.shop_weapon_wizard_4{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_wizard_4{background-position:-476px -1502px}.shop_weapon_wizard_5{background-position:-560px -1411px}.shop_weapon_wizard_5,.shop_weapon_wizard_6{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_wizard_6{background-position:-1396px -364px}.weapon_healer_0{background-image:url(spritesmith3.png);background-position:-1669px -273px;width:90px;height:90px}.weapon_healer_1{background-position:-1290px -1099px}.weapon_healer_1,.weapon_healer_2{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_healer_2{background-position:-221px -1684px}.weapon_healer_3{background-position:-924px -1427px}.weapon_healer_3,.weapon_healer_4{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_healer_4{background-position:-694px -1553px}.weapon_healer_5{background-position:-1640px -455px}.weapon_healer_5,.weapon_healer_6{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_healer_6{background-position:-455px -1644px}.weapon_rogue_0{background-position:-1102px -1303px}.weapon_rogue_0,.weapon_rogue_1{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_rogue_1{background-position:-1381px -1008px}.weapon_rogue_2{background-position:-91px -1708px}.weapon_rogue_2,.weapon_rogue_3{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_rogue_3{background-position:-312px -1684px}.weapon_rogue_4{background-position:0 -1715px}.weapon_rogue_4,.weapon_rogue_5{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_rogue_5{background-position:-1556px -728px}.weapon_rogue_6{background-position:-1634px -546px;width:90px}.weapon_rogue_6,.weapon_special_1{background-image:url(spritesmith3.png);height:90px}.weapon_special_1{background-position:-1199px -1238px;width:102px}.weapon_special_2{background-position:-546px -1644px}.weapon_special_2,.weapon_special_3{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_special_3{background-position:-785px -1553px}.weapon_warrior_0{background-position:-1742px 0}.weapon_warrior_0,.weapon_warrior_1{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_warrior_1{background-position:-1543px -819px}.weapon_warrior_2{background-position:-1015px -1427px}.weapon_warrior_2,.weapon_warrior_3{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_warrior_3{background-position:-1715px -364px}.weapon_warrior_4{background-position:-1556px -637px}.weapon_warrior_4,.weapon_warrior_5{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_warrior_5{background-position:-1669px -182px}.weapon_warrior_6{background-position:-833px -1456px}.weapon_warrior_6,.weapon_wizard_0{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_wizard_0{background-position:-1660px -91px}.weapon_wizard_1{background-position:-1011px -1245px}.weapon_wizard_1,.weapon_wizard_2{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_wizard_2{background-position:-1578px -273px}.weapon_wizard_3{background-position:-1199px -1056px}.weapon_wizard_3,.weapon_wizard_4{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_wizard_4{background-position:-1578px -182px}.weapon_wizard_5{background-position:-808px -1365px}.weapon_wizard_5,.weapon_wizard_6{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_wizard_6{background-position:-1533px -364px}.GrimReaper{background-position:-637px -1644px;width:57px;height:66px}.GrimReaper,.Pet_Currency_Gem{background-image:url(spritesmith3.png)}.Pet_Currency_Gem{background-position:-969px -1666px;width:45px;height:39px}.Pet_Currency_Gem1x{background-image:url(spritesmith3.png);background-position:-631px -660px;width:15px;height:13px}.Pet_Currency_Gem2x{background-image:url(spritesmith3.png);background-position:-1103px -151px;width:30px;height:26px}.PixelPaw-Gold{background-position:-1351px -1258px}.PixelPaw,.PixelPaw-Gold{background-image:url(spritesmith3.png);width:51px;height:51px}.PixelPaw{background-position:-876px -1625px}.PixelPaw002{background-position:-1806px -384px;width:51px}.PixelPaw002,.inventory_present{background-image:url(spritesmith3.png);height:51px}.inventory_present{background-position:-476px -1787px;width:48px}.inventory_quest_scroll{background-position:-287px -1827px}.inventory_quest_scroll,.inventory_quest_scroll_locked{background-image:url(spritesmith3.png);width:48px;height:51px}.inventory_quest_scroll_locked{background-position:-974px -1573px}.inventory_special_fortify{background-position:-1760px -277px}.inventory_special_fortify,.inventory_special_nye{background-image:url(spritesmith3.png);width:57px;height:54px}.inventory_special_nye{background-position:-1106px -1394px}.inventory_special_opaquePotion{background-image:url(spritesmith3.png);background-position:-1858px -364px;width:40px;height:40px}.inventory_special_snowball{background-position:-924px -1518px}.inventory_special_snowball,.inventory_special_spookDust{background-image:url(spritesmith3.png);width:57px;height:54px}.inventory_special_spookDust{background-position:-1760px -222px}.inventory_special_trinket{background-image:url(spritesmith3.png);background-position:-1647px -744px;width:48px;height:51px}.inventory_special_valentine{background-image:url(spritesmith3.png);background-position:-1381px -1099px;width:57px;height:54px}.pet_key{background-position:-1760px -167px}.pet_key,.rebirth_orb{background-image:url(spritesmith3.png);width:57px;height:54px}.rebirth_orb{background-position:-1647px -637px}.snowman{background-position:-1005px -1336px}.snowman,.spookman{background-image:url(spritesmith3.png);width:90px;height:90px}.spookman{background-position:-1452px -819px}.zzz{background-position:-49px -1847px}.zzz,.zzz_light{background-image:url(spritesmith3.png);width:40px;height:40px}.zzz_light{background-position:-744px -1696px}.just_head{background-position:-692px -1092px;width:36px;height:96px}.just_head,.npc_alex{background-image:url(spritesmith3.png)}.npc_alex{background-position:-908px -709px;width:162px;height:138px}.npc_bailey{background-position:-115px -1533px;width:60px;height:72px}.npc_bailey,.npc_daniel{background-image:url(spritesmith3.png)}.npc_daniel{background-position:-908px -848px;width:135px;height:123px}.npc_justin{background-position:-1094px -601px;width:84px;height:120px}.npc_justin,.npc_matt{background-image:url(spritesmith3.png)}.npc_matt{background-position:-1097px -178px;width:198px;height:144px}.npc_timetravelers{background-position:0 -1212px}.npc_timetravelers,.npc_timetravelers_active{background-image:url(spritesmith3.png);width:195px;height:138px}.npc_timetravelers_active{background-position:-692px -953px}.npc_tyler{background-position:-1465px -728px;width:90px;height:90px}.npc_tyler,.seasonalshop_closed{background-image:url(spritesmith3.png)}.seasonalshop_closed{background-position:-1097px -462px;width:162px;height:138px}.2014_Fall_HealerPROMO2{background-image:url(spritesmith3.png);background-position:0 -1624px;width:90px;height:90px}.2014_Fall_Mage_PROMO9{background-position:-476px -1553px;width:120px}.2014_Fall_Mage_PROMO9,.2014_Fall_RoguePROMO3{background-image:url(spritesmith3.png);height:90px}.2014_Fall_RoguePROMO3{background-position:-115px -1617px;width:105px}.2014_Fall_Warrior_PROMO{background-image:url(spritesmith3.png);background-position:-914px -1336px;width:90px;height:90px}.promo_mystery_201405{background-position:-273px -1593px;height:90px}.promo_mystery_201405,.promo_mystery_201406{background-image:url(spritesmith3.png);width:90px}.promo_mystery_201406{background-position:-1071px -722px;height:96px}.promo_mystery_201407{background-image:url(spritesmith3.png);background-position:-403px -1684px;width:42px;height:62px}.promo_mystery_201408{background-image:url(spritesmith3.png);background-position:-1506px -910px;width:60px;height:71px}.promo_mystery_201409{background-image:url(spritesmith3.png);background-position:-651px -1462px;width:90px;height:90px}.promo_mystery_201410{background-image:url(spritesmith3.png);background-position:-1302px -1190px;width:72px;height:63px}.promo_mystery_201411{background-image:url(spritesmith3.png);background-position:-1465px -637px;width:90px;height:90px}.promo_mystery_201412{background-image:url(spritesmith3.png);background-position:-865px -709px;width:42px;height:66px}.promo_mystery_201501{background-image:url(spritesmith3.png);background-position:-221px -1617px;width:48px;height:63px}.promo_mystery_3014{background-image:url(spritesmith3.png);background-position:-1288px -917px;width:217px;height:90px}.promo_partyhats{background-image:url(spritesmith3.png);background-position:-1634px -871px;width:115px;height:47px}.promo_winterclasses2015{background-image:url(spritesmith3.png);background-position:-315px -1209px;width:325px;height:110px}.promo_winteryhair{background-image:url(spritesmith3.png);background-position:-1751px -91px;width:152px;height:75px}.customize-option.promo_winteryhair{background-image:url(spritesmith3.png);background-position:-1776px -106px;width:60px;height:60px}.inventory_quest_scroll_atom1{background-image:url(spritesmith3.png);background-position:-1696px -692px;width:48px;height:51px}.inventory_quest_scroll_atom2{background-image:url(spritesmith3.png);background-position:-1818px -219px;width:48px;height:51px}.inventory_quest_scroll_atom2_locked{background-image:url(spritesmith3.png);background-position:-1375px -1206px;width:48px;height:51px}.inventory_quest_scroll_atom3{background-image:url(spritesmith3.png);background-position:-1634px -819px;width:48px;height:51px}.inventory_quest_scroll_atom3_locked{background-image:url(spritesmith3.png);background-position:-1488px -1060px;width:48px;height:51px}.inventory_quest_scroll_basilist{background-image:url(spritesmith3.png);background-position:-637px -1711px;width:48px;height:51px}.inventory_quest_scroll_dilatory_derby{background-image:url(spritesmith3.png);background-position:-1818px -167px;width:48px;height:51px}.inventory_quest_scroll_egg{background-image:url(spritesmith3.png);background-position:-793px -1644px;width:48px;height:51px}.inventory_quest_scroll_evilsanta{background-image:url(spritesmith3.png);background-position:-925px -1573px;width:48px;height:51px}.inventory_quest_scroll_evilsanta2{background-image:url(spritesmith3.png);background-position:-1106px -1449px;width:48px;height:51px}.inventory_quest_scroll_ghost_stag{background-image:url(spritesmith3.png);background-position:-1705px -637px;width:48px;height:51px}.inventory_quest_scroll_goldenknight1{background-image:url(spritesmith3.png);background-position:-1242px -1329px;width:48px;height:51px}.inventory_quest_scroll_goldenknight2{background-image:url(spritesmith3.png);background-position:-544px -1735px;width:48px;height:51px}.inventory_quest_scroll_goldenknight2_locked{background-image:url(spritesmith3.png);background-position:-1164px -1394px;width:48px;height:51px}.inventory_quest_scroll_goldenknight3{background-image:url(spritesmith3.png);background-position:-378px -1775px;width:48px;height:51px}.inventory_quest_scroll_goldenknight3_locked{background-image:url(spritesmith3.png);background-position:-1725px -559px;width:48px;height:51px}.inventory_quest_scroll_gryphon{background-image:url(spritesmith3.png);background-position:-1567px -910px;width:48px;height:51px}.inventory_quest_scroll_harpy{background-image:url(spritesmith3.png);background-position:-1439px -1099px;width:48px;height:51px}.inventory_quest_scroll_hedgehog{background-image:url(spritesmith3.png);background-position:-1521px -982px;width:48px;height:51px}.inventory_quest_scroll_moonstone1{background-image:url(spritesmith3.png);background-position:-982px -1518px;width:48px;height:51px}.inventory_quest_scroll_moonstone2{background-image:url(spritesmith3.png);background-position:-1302px -1306px;width:48px;height:51px}.inventory_quest_scroll_moonstone2_locked{background-image:url(spritesmith3.png);background-position:-238px -1827px;width:48px;height:51px}.inventory_quest_scroll_moonstone3{background-image:url(spritesmith3.png);background-position:-1570px -962px;width:48px;height:51px}.inventory_quest_scroll_moonstone3_locked{background-image:url(spritesmith3.png);background-position:-1818px -271px;width:48px;height:51px}.inventory_quest_scroll_octopus{background-image:url(spritesmith3.png);background-position:-1213px -1381px;width:48px;height:51px}.inventory_quest_scroll_owl{background-image:url(spritesmith3.png);background-position:-1430px -1154px;width:48px;height:51px}.inventory_quest_scroll_penguin{background-image:url(spritesmith3.png);background-position:-427px -1787px;width:48px;height:51px}.inventory_quest_scroll_rat{background-image:url(spritesmith3.png);background-position:-1780px -455px;width:48px;height:51px}.inventory_quest_scroll_rooster{background-image:url(spritesmith3.png);background-position:-189px -1827px;width:48px;height:51px}.inventory_quest_scroll_spider{background-image:url(spritesmith3.png);background-position:-1806px -332px;width:48px;height:51px}.inventory_quest_scroll_trex{background-image:url(spritesmith3.png);background-position:-1031px -1518px;width:48px;height:51px}.inventory_quest_scroll_trex_undead{background-image:url(spritesmith3.png);background-position:-1833px 0;width:48px;height:51px}.inventory_quest_scroll_vice1{background-image:url(spritesmith3.png);background-position:-695px -1696px;width:48px;height:51px}.inventory_quest_scroll_vice2{background-image:url(spritesmith3.png);background-position:-140px -1827px;width:48px;height:51px}.inventory_quest_scroll_vice2_locked{background-image:url(spritesmith3.png);background-position:-1302px -1254px;width:48px;height:51px}.inventory_quest_scroll_vice3{background-image:url(spritesmith3.png);background-position:0 -1806px;width:48px;height:51px}.inventory_quest_scroll_vice3_locked{background-image:url(spritesmith3.png);background-position:-329px -1775px;width:48px;height:51px}.quest_atom1{background-position:0 -1061px;width:250px;height:150px}.quest_atom1,.quest_atom2{background-image:url(spritesmith3.png)}.quest_atom2{background-position:-1097px -323px;width:207px;height:138px}.quest_atom3{background-position:0 -880px;width:216px;height:180px}.quest_atom3,.quest_basilist{background-image:url(spritesmith3.png)}.quest_basilist{background-position:-502px -1022px;width:189px;height:141px}.quest_dilatory{background-position:-220px 0}.quest_dilatory,.quest_dilatory_derby{background-image:url(spritesmith3.png);width:219px;height:219px}.quest_dilatory_derby{background-position:-220px -440px}.quest_egg_plainEgg{background-image:url(spritesmith3.png);background-position:-695px -1644px;width:48px;height:51px}.quest_evilsanta{background-position:-196px -1212px;width:118px;height:131px}.quest_evilsanta,.quest_ghost_stag{background-image:url(spritesmith3.png)}.quest_ghost_stag{background-position:0 -220px;width:219px;height:219px}.quest_goldenknight1_testimony{background-image:url(spritesmith3.png);background-position:-1780px -507px;width:48px;height:51px}.quest_goldenknight2{background-position:-1103px 0}.quest_goldenknight2,.quest_goldenknight3{background-image:url(spritesmith3.png);width:250px;height:150px}.quest_goldenknight3{background-position:-251px -1058px}.quest_gryphon{background-image:url(spritesmith3.png);background-position:-440px -844px;width:216px;height:177px}.quest_harpy{background-position:0 0;height:219px}.quest_harpy,.quest_hedgehog{background-image:url(spritesmith3.png);width:219px}.quest_hedgehog{background-position:-660px -437px;height:186px}.quest_moonstone1_moonstone{background-image:url(spritesmith3.png);background-position:-657px -953px;width:30px;height:30px}.quest_moonstone2{background-image:url(spritesmith3.png);background-position:-440px -440px;width:219px;height:219px}.quest_moonstone3{background-position:-220px -660px;width:219px;height:219px}.quest_moonstone3,.quest_octopus{background-image:url(spritesmith3.png)}.quest_octopus{background-position:-880px 0;width:222px;height:177px}.quest_owl{background-position:0 -660px;width:219px;height:219px}.quest_owl,.quest_penguin{background-image:url(spritesmith3.png)}.quest_penguin{background-position:-440px -660px;width:190px;height:183px}.quest_rat{background-position:-660px 0;width:219px;height:219px}.quest_rat,.quest_rock{background-image:url(spritesmith3.png)}.quest_rock{background-position:-660px -220px;width:216px;height:216px}.quest_rooster{background-position:-880px -534px;width:213px;height:174px}.quest_rooster,.quest_spider{background-image:url(spritesmith3.png)}.quest_spider{background-position:-657px -802px;width:250px;height:150px}.quest_stressbeast{background-position:-440px -220px}.quest_stressbeast,.quest_stressbeast_bailey{background-image:url(spritesmith3.png);width:219px;height:219px}.quest_stressbeast_bailey{background-position:-440px 0}.quest_stressbeast_guide{background-position:0 -440px}.quest_stressbeast_guide,.quest_stressbeast_stables{background-image:url(spritesmith3.png);width:219px;height:219px}.quest_stressbeast_stables{background-position:-220px -220px}.quest_trex{background-image:url(spritesmith3.png);background-position:-660px -624px;width:204px;height:177px}.quest_trex_undead{background-position:-880px -356px}.quest_trex_undead,.quest_vice1{background-image:url(spritesmith3.png);width:216px;height:177px}.quest_vice1{background-position:-880px -178px}.quest_vice2_lightCrystal{background-image:url(spritesmith3.png);background-position:-727px -1778px;width:40px;height:40px}.quest_vice3{background-position:-217px -880px;width:216px;height:177px}.quest_vice3,.shop_copper{background-image:url(spritesmith3.png)}.shop_copper{background-position:-1167px -151px;width:32px;height:22px}.shop_eyes{background-position:-1162px -1531px;width:40px;height:40px}.shop_eyes,.shop_gold{background-image:url(spritesmith3.png)}.shop_gold{background-position:-865px -776px;width:32px;height:22px}.shop_opaquePotion{background-position:-1923px 0}.shop_opaquePotion,.shop_potion{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_potion{background-position:-1923px -41px}.shop_reroll{background-position:-1778px -734px;width:40px;height:40px}.shop_reroll,.shop_silver{background-image:url(spritesmith3.png)}.shop_silver{background-position:-1134px -151px;width:32px;height:22px}.shop_snowball{background-position:-467px -1022px}.shop_snowball,.shop_spookDust{background-image:url(spritesmith3.png);width:32px;height:32px}.shop_spookDust{background-position:-434px -1022px}.Pet_Egg_BearCub{background-position:-91px -1799px}.Pet_Egg_BearCub,.Pet_Egg_Cactus{background-image:url(spritesmith3.png);width:48px;height:51px}.Pet_Egg_Cactus{background-position:-876px -1573px}.Pet_Egg_Deer{background-position:-1381px -1154px}.Pet_Egg_Deer,.Pet_Egg_Dragon{background-image:url(spritesmith3.png);width:48px;height:51px}.Pet_Egg_Dragon{background-position:-280px -1775px}.Pet_Egg_Egg{background-position:-446px -1735px}.Pet_Egg_Egg,.Pet_Egg_FlyingPig{background-image:url(spritesmith3.png);width:48px;height:51px}.Pet_Egg_FlyingPig{background-position:-231px -1775px}.Pet_Egg_Fox{background-position:-1731px -455px}.Pet_Egg_Fox,.Pet_Egg_Gryphon{background-image:url(spritesmith3.png);width:48px;height:51px}.Pet_Egg_Gryphon{background-position:-1647px -692px}.Pet_Egg_Hedgehog{background-position:-1193px -1329px}.Pet_Egg_Hedgehog,.Pet_Egg_LionCub{background-image:url(spritesmith3.png);width:48px;height:51px}.Pet_Egg_LionCub{background-position:-182px -1775px}.Pet_Egg_Octopus{background-position:-1472px -1008px}.Pet_Egg_Octopus,.Pet_Egg_Owl{background-image:url(spritesmith3.png);width:48px;height:51px}.Pet_Egg_Owl{background-position:-744px -1644px}.Pet_Egg_PandaCub{background-position:-495px -1735px}.Pet_Egg_PandaCub,.Pet_Egg_Parrot{background-image:url(spritesmith3.png);width:48px;height:51px}.Pet_Egg_Parrot{background-position:-1731px -507px}.Pet_Egg_Penguin{background-image:url(spritesmith4.png);background-position:-1802px -1218px;width:48px;height:51px}.Pet_Egg_PolarBear{background-position:0 -2122px}.Pet_Egg_PolarBear,.Pet_Egg_Rat{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Egg_Rat{background-position:-791px -2014px}.Pet_Egg_Rock{background-position:-2014px -794px}.Pet_Egg_Rock,.Pet_Egg_Rooster{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Egg_Rooster{background-position:-2120px -474px}.Pet_Egg_Seahorse{background-position:-1215px -1802px}.Pet_Egg_Seahorse,.Pet_Egg_Spider{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Egg_Spider{background-position:0 -2174px}.Pet_Egg_TRex{background-position:-49px -2174px}.Pet_Egg_TRex,.Pet_Egg_TigerCub{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Egg_TigerCub{background-position:-1484px -1590px}.Pet_Egg_Wolf{background-position:-1590px -1484px;width:48px;height:51px}.Pet_Egg_Wolf,.Pet_Food_Cake_Base{background-image:url(spritesmith4.png)}.Pet_Food_Cake_Base{background-position:-2183px 0;width:43px;height:43px}.Pet_Food_Cake_CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1908px -1058px;width:42px;height:44px}.Pet_Food_Cake_CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1957px -954px;width:43px;height:45px}.Pet_Food_Cake_Desert{background-position:-141px -2174px;height:44px}.Pet_Food_Cake_Desert,.Pet_Food_Cake_Golden{background-image:url(spritesmith4.png);width:43px}.Pet_Food_Cake_Golden{background-position:-2183px -44px;height:42px}.Pet_Food_Cake_Red{background-position:-840px -2014px}.Pet_Food_Cake_Red,.Pet_Food_Cake_Shade{background-image:url(spritesmith4.png);width:43px;height:44px}.Pet_Food_Cake_Shade{background-position:-954px -1960px}.Pet_Food_Cake_Skeleton{background-image:url(spritesmith4.png);background-position:-98px -2174px;width:42px;height:47px}.Pet_Food_Cake_White{background-position:-318px -2156px;width:44px}.Pet_Food_Cake_White,.Pet_Food_Cake_Zombie{background-image:url(spritesmith4.png);height:44px}.Pet_Food_Cake_Zombie{background-position:-1052px -1908px;width:45px}.Pet_Food_Candy_Base{background-position:-2120px -422px}.Pet_Food_Candy_Base,.Pet_Food_Candy_CottonCandyBlue{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Food_Candy_CottonCandyBlue{background-position:-1696px -1272px}.Pet_Food_Candy_CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1908px -1006px;width:48px;height:51px}.Pet_Food_Candy_Desert{background-position:-1003px -1908px}.Pet_Food_Candy_Desert,.Pet_Food_Candy_Golden{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Food_Candy_Golden{background-position:-2120px -370px}.Pet_Food_Candy_Red{background-position:-1696px -1324px}.Pet_Food_Candy_Red,.Pet_Food_Candy_Shade{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Food_Candy_Shade{background-position:-1166px -1802px}.Pet_Food_Candy_Skeleton{background-position:-2014px -742px}.Pet_Food_Candy_Skeleton,.Pet_Food_Candy_White{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Food_Candy_White{background-position:-742px -2014px}.Pet_Food_Candy_Zombie{background-position:-1802px -1166px}.Pet_Food_Candy_Zombie,.Pet_Food_Chocolate{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Food_Chocolate{background-position:-2120px -318px}.Pet_Food_CottonCandyBlue{background-position:-367px -2104px}.Pet_Food_CottonCandyBlue,.Pet_Food_CottonCandyPink{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Food_CottonCandyPink{background-position:-2134px -52px}.Pet_Food_Fish{background-position:-2134px 0}.Pet_Food_Fish,.Pet_Food_Honey{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Food_Honey{background-position:-1908px -954px}.Pet_Food_Meat{background-position:-954px -1908px}.Pet_Food_Meat,.Pet_Food_Milk{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Food_Milk{background-position:-318px -2104px}.Pet_Food_Potatoe{background-position:-147px -2122px}.Pet_Food_Potatoe,.Pet_Food_RottenMeat{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Food_RottenMeat{background-position:-98px -2122px}.Pet_Food_Saddle{background-position:-49px -2122px}.Pet_Food_Saddle,.Pet_Food_Strawberry{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Food_Strawberry{background-position:-1745px -1272px}.Mount_Body_BearCub-Base{background-image:url(spritesmith4.png);background-position:-212px -726px;width:105px;height:105px}.Mount_Body_BearCub-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-636px -424px;width:105px;height:105px}.Mount_Body_BearCub-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-530px -560px;width:105px;height:105px}.Mount_Body_BearCub-Desert{background-position:-424px -666px}.Mount_Body_BearCub-Desert,.Mount_Body_BearCub-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_BearCub-Golden{background-position:-318px -726px}.Mount_Body_BearCub-Polar{background-position:-742px -318px}.Mount_Body_BearCub-Polar,.Mount_Body_BearCub-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_BearCub-Red{background-position:-636px -530px}.Mount_Body_BearCub-Shade{background-position:-832px -106px}.Mount_Body_BearCub-Shade,.Mount_Body_BearCub-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_BearCub-Skeleton{background-position:0 -850px}.Mount_Body_BearCub-White{background-position:-530px -666px}.Mount_Body_BearCub-White,.Mount_Body_BearCub-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_BearCub-Zombie{background-position:-742px -424px}.Mount_Body_Cactus-Base{background-position:-106px -850px}.Mount_Body_Cactus-Base,.Mount_Body_Cactus-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Cactus-CottonCandyBlue{background-position:-212px -832px}.Mount_Body_Cactus-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-832px -212px;width:105px;height:105px}.Mount_Body_Cactus-Desert{background-image:url(spritesmith4.png);background-position:-862px 0;width:105px;height:105px}.Mount_Body_Cactus-Golden{background-position:-424px -772px}.Mount_Body_Cactus-Golden,.Mount_Body_Cactus-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Cactus-Red{background-position:-318px -832px}.Mount_Body_Cactus-Shade{background-position:-636px -636px}.Mount_Body_Cactus-Shade,.Mount_Body_Cactus-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Cactus-Skeleton{background-position:-848px -318px}.Mount_Body_Cactus-White{background-position:-742px -530px}.Mount_Body_Cactus-White,.Mount_Body_Cactus-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Cactus-Zombie{background-position:-530px -772px}.Mount_Body_Deer-Base{background-position:-938px -106px}.Mount_Body_Deer-Base,.Mount_Body_Deer-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Deer-CottonCandyBlue{background-position:-848px -424px}.Mount_Body_Deer-CottonCandyPink{background-position:0 -956px}.Mount_Body_Deer-CottonCandyPink,.Mount_Body_Deer-Desert{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Deer-Desert{background-position:-938px -212px}.Mount_Body_Deer-Golden{background-position:-212px -938px}.Mount_Body_Deer-Golden,.Mount_Body_Deer-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Deer-Red{background-position:-106px -956px}.Mount_Body_Deer-Shade{background-position:-968px 0}.Mount_Body_Deer-Shade,.Mount_Body_Deer-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Deer-Skeleton{background-position:-424px -878px}.Mount_Body_Deer-White{background-position:-636px -742px}.Mount_Body_Deer-White,.Mount_Body_Deer-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Deer-Zombie{background-position:-742px -636px}.Mount_Body_Dragon-Base{background-position:-318px -938px}.Mount_Body_Dragon-Base,.Mount_Body_Dragon-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Dragon-CottonCandyBlue{background-position:-848px -530px}.Mount_Body_Dragon-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-954px -318px;width:105px;height:105px}.Mount_Body_Dragon-Desert{background-position:-530px -878px}.Mount_Body_Dragon-Desert,.Mount_Body_Dragon-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Dragon-Golden{background-position:-954px -424px}.Mount_Body_Dragon-Red{background-position:-742px -742px}.Mount_Body_Dragon-Red,.Mount_Body_Dragon-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Dragon-Shade{background-position:-1044px -106px}.Mount_Body_Dragon-Skeleton{background-position:-848px -636px}.Mount_Body_Dragon-Skeleton,.Mount_Body_Dragon-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Dragon-White{background-position:-636px -848px}.Mount_Body_Dragon-Zombie{background-position:0 -1062px}.Mount_Body_Dragon-Zombie,.Mount_Body_FlyingPig-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_FlyingPig-Base{background-position:-212px -1044px}.Mount_Body_FlyingPig-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1044px -212px;width:105px;height:105px}.Mount_Body_FlyingPig-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-106px -1062px;width:105px;height:105px}.Mount_Body_FlyingPig-Desert{background-image:url(spritesmith4.png);background-position:-424px -984px;width:105px;height:105px}.Mount_Body_FlyingPig-Golden{background-position:-1074px 0}.Mount_Body_FlyingPig-Golden,.Mount_Body_FlyingPig-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_FlyingPig-Red{background-position:-954px -530px}.Mount_Body_FlyingPig-Shade{background-position:-318px -1044px}.Mount_Body_FlyingPig-Shade,.Mount_Body_FlyingPig-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_FlyingPig-Skeleton{background-position:-1060px -318px}.Mount_Body_FlyingPig-White{background-position:-530px -984px}.Mount_Body_FlyingPig-White,.Mount_Body_FlyingPig-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_FlyingPig-Zombie{background-position:-742px -848px}.Mount_Body_Fox-Base{background-position:-848px -742px}.Mount_Body_Fox-Base,.Mount_Body_Fox-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Fox-CottonCandyBlue{background-position:-1060px -424px}.Mount_Body_Fox-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-636px -954px;width:105px;height:105px}.Mount_Body_Fox-Desert{background-position:-954px -636px}.Mount_Body_Fox-Desert,.Mount_Body_Fox-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Fox-Golden{background-position:-1150px -106px}.Mount_Body_Fox-Red{background-position:0 -1168px}.Mount_Body_Fox-Red,.Mount_Body_Fox-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Fox-Shade{background-position:-1150px -212px}.Mount_Body_Fox-Skeleton{background-position:-212px -1150px}.Mount_Body_Fox-Skeleton,.Mount_Body_Fox-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Fox-White{background-position:-424px -1090px}.Mount_Body_Fox-Zombie{background-position:-106px -1168px}.Mount_Body_Fox-Zombie,.Mount_Body_Gryphon-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Gryphon-Base{background-position:-1180px 0}.Mount_Body_Gryphon-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1060px -530px;width:105px;height:105px}.Mount_Body_Gryphon-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-318px -1150px;width:105px;height:105px}.Mount_Body_Gryphon-Desert{background-position:-848px -848px}.Mount_Body_Gryphon-Desert,.Mount_Body_Gryphon-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Gryphon-Golden{background-position:-954px -742px}.Mount_Body_Gryphon-Red{background-position:-1166px -318px}.Mount_Body_Gryphon-Red,.Mount_Body_Gryphon-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Gryphon-Shade{background-position:-742px -954px}.Mount_Body_Gryphon-Skeleton{background-position:-530px -1090px}.Mount_Body_Gryphon-Skeleton,.Mount_Body_Gryphon-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Gryphon-White{background-position:-1060px -636px}.Mount_Body_Gryphon-Zombie{background-position:-636px -1060px}.Mount_Body_Gryphon-Zombie,.Mount_Body_Hedgehog-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Hedgehog-Base{background-position:-1166px -424px}.Mount_Body_Hedgehog-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1256px -106px;width:105px;height:105px}.Mount_Body_Hedgehog-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-424px -1196px;width:105px;height:105px}.Mount_Body_Hedgehog-Desert{background-position:-1256px -212px}.Mount_Body_Hedgehog-Desert,.Mount_Body_Hedgehog-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Hedgehog-Golden{background-position:-212px -1256px}.Mount_Body_Hedgehog-Red{background-position:0 -1274px}.Mount_Body_Hedgehog-Red,.Mount_Body_Hedgehog-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Hedgehog-Shade{background-position:-954px -848px}.Mount_Body_Hedgehog-Skeleton{background-position:-848px -954px}.Mount_Body_Hedgehog-Skeleton,.Mount_Body_Hedgehog-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Hedgehog-White{background-position:-106px -1274px}.Mount_Body_Hedgehog-Zombie{background-position:-1166px -530px}.Mount_Body_Hedgehog-Zombie,.Mount_Body_LionCub-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_LionCub-Base{background-position:-1286px 0}.Mount_Body_LionCub-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1060px -742px;width:105px;height:105px}.Mount_Body_LionCub-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-742px -1060px;width:105px;height:105px}.Mount_Body_LionCub-Desert{background-position:-318px -1256px}.Mount_Body_LionCub-Desert,.Mount_Body_LionCub-Ethereal{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_LionCub-Ethereal{background-position:-530px -1196px}.Mount_Body_LionCub-Golden{background-position:-1272px -318px}.Mount_Body_LionCub-Golden,.Mount_Body_LionCub-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_LionCub-Red{background-position:-636px -1166px}.Mount_Body_LionCub-Shade{background-position:-1166px -636px}.Mount_Body_LionCub-Shade,.Mount_Body_LionCub-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_LionCub-Skeleton{background-position:-1272px -424px}.Mount_Body_LionCub-White{background-position:-954px -954px}.Mount_Body_LionCub-White,.Mount_Body_LionCub-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_LionCub-Zombie{background-position:-848px -1060px}.Mount_Body_Mammoth-Base{background-image:url(spritesmith4.png);background-position:-106px -408px;width:105px;height:123px}.Mount_Body_MantisShrimp-Base{background-image:url(spritesmith4.png);background-position:-1362px -106px;width:108px;height:105px}.Mount_Body_Octopus-Base{background-image:url(spritesmith4.png);background-position:-424px -1302px;width:105px;height:105px}.Mount_Body_Octopus-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1272px -530px;width:105px;height:105px}.Mount_Body_Octopus-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-212px -1362px;width:105px;height:105px}.Mount_Body_Octopus-Desert{background-image:url(spritesmith4.png);background-position:-1362px -212px;width:105px;height:105px}.Mount_Body_Octopus-Golden{background-position:0 -1380px}.Mount_Body_Octopus-Golden,.Mount_Body_Octopus-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Octopus-Red{background-position:-742px -1166px}.Mount_Body_Octopus-Shade{background-position:-1166px -742px}.Mount_Body_Octopus-Shade,.Mount_Body_Octopus-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Octopus-Skeleton{background-position:-106px -1380px}.Mount_Body_Octopus-White{background-position:-1392px 0}.Mount_Body_Octopus-White,.Mount_Body_Octopus-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Octopus-Zombie{background-position:-318px -1362px}.Mount_Body_Owl-Base{background-position:-530px -1302px}.Mount_Body_Owl-Base,.Mount_Body_Owl-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Owl-CottonCandyBlue{background-position:-1378px -318px}.Mount_Body_Owl-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1272px -636px;width:105px;height:105px}.Mount_Body_Owl-Desert{background-position:-636px -1272px}.Mount_Body_Owl-Desert,.Mount_Body_Owl-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Owl-Golden{background-position:-954px -1060px}.Mount_Body_Owl-Red{background-position:-1060px -954px}.Mount_Body_Owl-Red,.Mount_Body_Owl-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Owl-Shade{background-position:-1378px -424px}.Mount_Body_Owl-Skeleton{background-position:-848px -1166px}.Mount_Body_Owl-Skeleton,.Mount_Body_Owl-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Owl-White{background-position:-1166px -848px}.Mount_Body_Owl-Zombie{background-position:-424px -1408px}.Mount_Body_Owl-Zombie,.Mount_Body_PandaCub-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_PandaCub-Base{background-position:-742px -1272px}.Mount_Body_PandaCub-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1272px -742px;width:105px;height:105px}.Mount_Body_PandaCub-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1471px -106px;width:105px;height:105px}.Mount_Body_PandaCub-Desert{background-image:url(spritesmith4.png);background-position:-1378px -530px;width:105px;height:105px}.Mount_Body_PandaCub-Golden{background-position:-1468px -212px}.Mount_Body_PandaCub-Golden,.Mount_Body_PandaCub-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_PandaCub-Red{background-position:-212px -1468px}.Mount_Body_PandaCub-Shade{background-position:0 -1486px}.Mount_Body_PandaCub-Shade,.Mount_Body_PandaCub-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_PandaCub-Skeleton{background-position:-106px -1486px}.Mount_Body_PandaCub-White{background-position:-1498px 0}.Mount_Body_PandaCub-White,.Mount_Body_PandaCub-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_PandaCub-Zombie{background-position:-1060px -1060px}.Mount_Body_Parrot-Base{background-position:-318px -1468px}.Mount_Body_Parrot-Base,.Mount_Body_Parrot-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Parrot-CottonCandyBlue{background-position:-530px -1408px}.Mount_Body_Parrot-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1166px -954px;width:105px;height:105px}.Mount_Body_Parrot-Desert{background-position:-954px -1166px}.Mount_Body_Parrot-Desert,.Mount_Body_Parrot-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Parrot-Golden{background-position:-636px -1378px}.Mount_Body_Parrot-Red{background-position:-1378px -636px}.Mount_Body_Parrot-Red,.Mount_Body_Parrot-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Parrot-Shade{background-position:-1484px -318px}.Mount_Body_Parrot-Skeleton{background-position:-1272px -848px}.Mount_Body_Parrot-Skeleton,.Mount_Body_Parrot-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Parrot-White{background-position:-848px -1272px}.Mount_Body_Parrot-Zombie{background-position:-1484px -424px}.Mount_Body_Parrot-Zombie,.Mount_Body_Penguin-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Penguin-Base{background-position:-742px -1378px}.Mount_Body_Penguin-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1378px -742px;width:105px;height:105px}.Mount_Body_Penguin-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-424px -1514px;width:105px;height:105px}.Mount_Body_Penguin-Desert{background-image:url(spritesmith4.png);background-position:-1484px -530px;width:105px;height:105px}.Mount_Body_Penguin-Golden{background-position:-1060px -1166px}.Mount_Body_Penguin-Golden,.Mount_Body_Penguin-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Penguin-Red{background-position:-1166px -1060px}.Mount_Body_Penguin-Shade{background-position:-1577px -106px}.Mount_Body_Penguin-Shade,.Mount_Body_Penguin-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Penguin-Skeleton{background-position:-212px -1574px}.Mount_Body_Penguin-White{background-position:-1574px -212px}.Mount_Body_Penguin-White,.Mount_Body_Penguin-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Penguin-Zombie{background-position:-408px -136px}.Mount_Body_Rat-Base{background-position:-1272px -954px}.Mount_Body_Rat-Base,.Mount_Body_Rat-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rat-CottonCandyBlue{background-position:0 -1592px}.Mount_Body_Rat-CottonCandyPink{background-position:-106px -1592px}.Mount_Body_Rat-CottonCandyPink,.Mount_Body_Rat-Desert{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rat-Desert{background-position:-1604px 0}.Mount_Body_Rat-Golden{background-position:-530px -1514px}.Mount_Body_Rat-Golden,.Mount_Body_Rat-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rat-Red{background-position:-318px -1574px}.Mount_Body_Rat-Shade{background-position:-1484px -636px}.Mount_Body_Rat-Shade,.Mount_Body_Rat-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rat-Skeleton{background-position:-636px -1484px}.Mount_Body_Rat-White{background-position:-848px -1378px}.Mount_Body_Rat-White,.Mount_Body_Rat-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rat-Zombie{background-position:-1378px -848px}.Mount_Body_Rock-Base{background-position:-1590px -318px}.Mount_Body_Rock-Base,.Mount_Body_Rock-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rock-CottonCandyBlue{background-position:-1590px -424px}.Mount_Body_Rock-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1166px -1166px;width:105px;height:105px}.Mount_Body_Rock-Desert{background-position:-1272px -1060px}.Mount_Body_Rock-Desert,.Mount_Body_Rock-Gold{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rock-Gold{background-position:-1060px -1272px}.Mount_Body_Rock-Red{background-position:-742px -1484px}.Mount_Body_Rock-Red,.Mount_Body_Rock-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rock-Shade{background-position:-1484px -742px}.Mount_Body_Rock-Skeleton{background-position:-424px -1620px}.Mount_Body_Rock-Skeleton,.Mount_Body_Rock-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rock-White{background-position:-1590px -530px}.Mount_Body_Rock-Zombie{background-position:-954px -1378px}.Mount_Body_Rock-Zombie,.Mount_Body_Rooster-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rooster-Base{background-position:-1378px -954px}.Mount_Body_Rooster-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1683px -106px;width:105px;height:105px}.Mount_Body_Rooster-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1680px -212px;width:105px;height:105px}.Mount_Body_Rooster-Desert{background-position:-212px -1680px}.Mount_Body_Rooster-Desert,.Mount_Body_Rooster-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rooster-Golden{background-position:0 -1698px}.Mount_Body_Rooster-Red{background-position:-106px -1698px}.Mount_Body_Rooster-Red,.Mount_Body_Rooster-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rooster-Shade{background-position:-530px -1620px}.Mount_Body_Rooster-Skeleton{background-position:-1484px -848px}.Mount_Body_Rooster-Skeleton,.Mount_Body_Rooster-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rooster-White{background-position:-848px -1484px}.Mount_Body_Rooster-Zombie{background-position:-318px -1680px}.Mount_Body_Rooster-Zombie,.Mount_Body_Seahorse-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Seahorse-Base{background-position:-1710px 0}.Mount_Body_Seahorse-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1590px -636px;width:105px;height:105px}.Mount_Body_Seahorse-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-636px -1590px;width:105px;height:105px}.Mount_Body_Seahorse-Desert{background-image:url(spritesmith4.png);background-position:-1166px -1272px;width:105px;height:105px}.Mount_Body_Seahorse-Golden{background-position:-1272px -1166px}.Mount_Body_Seahorse-Golden,.Mount_Body_Seahorse-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Seahorse-Red{background-position:-1696px -318px}.Mount_Body_Seahorse-Shade{background-position:-1060px -1378px}.Mount_Body_Seahorse-Shade,.Mount_Body_Seahorse-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Seahorse-Skeleton{background-position:-1378px -1060px}.Mount_Body_Seahorse-White{background-position:-1696px -424px}.Mount_Body_Seahorse-White,.Mount_Body_Seahorse-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Seahorse-Zombie{background-position:-742px -1590px}.Mount_Body_Spider-Base{background-position:-1590px -742px}.Mount_Body_Spider-Base,.Mount_Body_Spider-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Spider-CottonCandyBlue{background-position:-954px -1484px}.Mount_Body_Spider-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1484px -954px;width:105px;height:105px}.Mount_Body_Spider-Desert{background-image:url(spritesmith4.png);background-position:-1696px -530px;width:105px;height:105px}.Mount_Body_Spider-Golden{background-position:-424px -1726px}.Mount_Body_Spider-Golden,.Mount_Body_Spider-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Spider-Red{background-position:-1789px -106px}.Mount_Body_Spider-Shade{background-position:-212px -1786px}.Mount_Body_Spider-Shade,.Mount_Body_Spider-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Spider-Skeleton{background-position:-1786px -212px}.Mount_Body_Spider-White{background-position:-1272px -1272px}.Mount_Body_Spider-White,.Mount_Body_Spider-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Spider-Zombie{background-position:-848px -1590px}.Mount_Body_TRex-Base{background-position:-136px -136px}.Mount_Body_TRex-Base,.Mount_Body_TRex-CottonCandyBlue{background-image:url(spritesmith4.png);width:135px;height:135px}.Mount_Body_TRex-CottonCandyBlue{background-position:0 -272px}.Mount_Body_TRex-CottonCandyPink{background-position:-272px 0}.Mount_Body_TRex-CottonCandyPink,.Mount_Body_TRex-Desert{background-image:url(spritesmith4.png);width:135px;height:135px}.Mount_Body_TRex-Desert{background-position:0 0}.Mount_Body_TRex-Golden{background-position:-136px -272px}.Mount_Body_TRex-Golden,.Mount_Body_TRex-Red{background-image:url(spritesmith4.png);width:135px;height:135px}.Mount_Body_TRex-Red{background-position:-272px -272px}.Mount_Body_TRex-Shade{background-position:-408px 0}.Mount_Body_TRex-Shade,.Mount_Body_TRex-Skeleton{background-image:url(spritesmith4.png);width:135px;height:135px}.Mount_Body_TRex-Skeleton{background-position:-272px -136px}.Mount_Body_TRex-White{background-position:0 -136px}.Mount_Body_TRex-White,.Mount_Body_TRex-Zombie{background-image:url(spritesmith4.png);width:135px;height:135px}.Mount_Body_TRex-Zombie{background-position:-136px 0}.Mount_Body_TigerCub-Base{background-image:url(spritesmith4.png);background-position:-1484px -1060px;width:105px;height:105px}.Mount_Body_TigerCub-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1060px -1484px;width:105px;height:105px}.Mount_Body_TigerCub-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1802px -318px;width:105px;height:105px}.Mount_Body_TigerCub-Desert{background-position:-1802px -424px}.Mount_Body_TigerCub-Desert,.Mount_Body_TigerCub-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_TigerCub-Golden{background-position:-1696px -742px}.Mount_Body_TigerCub-Red{background-position:-742px -1696px}.Mount_Body_TigerCub-Red,.Mount_Body_TigerCub-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_TigerCub-Shade{background-position:-1590px -954px}.Mount_Body_TigerCub-Skeleton{background-position:-954px -1590px}.Mount_Body_TigerCub-Skeleton,.Mount_Body_TigerCub-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_TigerCub-White{background-position:-1378px -1272px}.Mount_Body_TigerCub-Zombie{background-position:-1272px -1378px}.Mount_Body_TigerCub-Zombie,.Mount_Body_Turkey-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Turkey-Base{background-position:-1802px -530px}.Mount_Body_Wolf-Base{background-position:-424px -1832px}.Mount_Body_Wolf-Base,.Mount_Body_Wolf-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Wolf-CottonCandyBlue{background-position:-1166px -1484px}.Mount_Body_Wolf-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1484px -1166px;width:105px;height:105px}.Mount_Body_Wolf-Desert{background-position:-1696px -848px}.Mount_Body_Wolf-Desert,.Mount_Body_Wolf-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Wolf-Golden{background-position:-848px -1696px}.Mount_Body_Wolf-Red{background-position:-1895px -106px}.Mount_Body_Wolf-Red,.Mount_Body_Wolf-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Wolf-Shade{background-position:-212px -1892px}.Mount_Body_Wolf-Skeleton{background-position:-1892px -212px}.Mount_Body_Wolf-Skeleton,.Mount_Body_Wolf-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Wolf-White{background-position:-530px -1832px}.Mount_Body_Wolf-Zombie{background-position:0 -1910px}.Mount_Body_Wolf-Zombie,.Mount_Head_BearCub-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_BearCub-Base{background-position:-1060px -1590px}.Mount_Head_BearCub-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-636px -1802px;width:105px;height:105px}.Mount_Head_BearCub-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1590px -1060px;width:105px;height:105px}.Mount_Head_BearCub-Desert{background-position:-106px -1910px}.Mount_Head_BearCub-Desert,.Mount_Head_BearCub-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_BearCub-Golden{background-position:-1805px -636px}.Mount_Head_BearCub-Polar{background-position:-318px -1892px}.Mount_Head_BearCub-Polar,.Mount_Head_BearCub-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_BearCub-Red{background-position:-1922px 0}.Mount_Head_BearCub-Shade{background-position:-1908px -318px}.Mount_Head_BearCub-Shade,.Mount_Head_BearCub-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_BearCub-Skeleton{background-position:-954px -1696px}.Mount_Head_BearCub-White{background-position:-1696px -954px}.Mount_Head_BearCub-White,.Mount_Head_BearCub-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_BearCub-Zombie{background-position:-1802px -742px}.Mount_Head_Cactus-Base{background-position:-742px -1802px}.Mount_Head_Cactus-Base,.Mount_Head_Cactus-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Cactus-CottonCandyBlue{background-position:-1378px -1378px}.Mount_Head_Cactus-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1272px -1484px;width:105px;height:105px}.Mount_Head_Cactus-Desert{background-image:url(spritesmith4.png);background-position:-1908px -424px;width:105px;height:105px}.Mount_Head_Cactus-Golden{background-position:-1484px -1272px}.Mount_Head_Cactus-Golden,.Mount_Head_Cactus-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Cactus-Red{background-position:-1590px -1166px}.Mount_Head_Cactus-Shade{background-position:-1166px -1590px}.Mount_Head_Cactus-Shade,.Mount_Head_Cactus-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Cactus-Skeleton{background-position:-1908px -530px}.Mount_Head_Cactus-White{background-position:-424px -1938px}.Mount_Head_Cactus-White,.Mount_Head_Cactus-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Cactus-Zombie{background-position:-848px -1802px}.Mount_Head_Deer-Base{background-position:-1802px -848px}.Mount_Head_Deer-Base,.Mount_Head_Deer-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Deer-CottonCandyBlue{background-position:-1696px -1060px}.Mount_Head_Deer-CottonCandyPink{background-position:-1060px -1696px}.Mount_Head_Deer-CottonCandyPink,.Mount_Head_Deer-Desert{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Deer-Desert{background-position:-2001px -106px}.Mount_Head_Deer-Golden{background-position:-530px -1938px}.Mount_Head_Deer-Golden,.Mount_Head_Deer-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Deer-Red{background-position:-212px -1998px}.Mount_Head_Deer-Shade{background-position:-1998px -212px}.Mount_Head_Deer-Shade,.Mount_Head_Deer-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Deer-Skeleton{background-position:-636px -1908px}.Mount_Head_Deer-White{background-position:-1911px -636px}.Mount_Head_Deer-White,.Mount_Head_Deer-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Deer-Zombie{background-position:0 -2016px}.Mount_Head_Dragon-Base{background-position:-106px -2016px}.Mount_Head_Dragon-Base,.Mount_Head_Dragon-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Dragon-CottonCandyBlue{background-position:-318px -1998px}.Mount_Head_Dragon-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1378px -1484px;width:105px;height:105px}.Mount_Head_Dragon-Desert{background-position:-1484px -1378px}.Mount_Head_Dragon-Desert,.Mount_Head_Dragon-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Dragon-Golden{background-position:-2028px 0}.Mount_Head_Dragon-Red{background-position:-1272px -1590px}.Mount_Head_Dragon-Red,.Mount_Head_Dragon-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Dragon-Shade{background-position:-1590px -1272px}.Mount_Head_Dragon-Skeleton{background-position:-2014px -318px}.Mount_Head_Dragon-Skeleton,.Mount_Head_Dragon-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Dragon-White{background-position:-1802px -954px}.Mount_Head_Dragon-Zombie{background-position:-954px -1802px}.Mount_Head_Dragon-Zombie,.Mount_Head_FlyingPig-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_FlyingPig-Base{background-position:-1908px -742px}.Mount_Head_FlyingPig-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-742px -1908px;width:105px;height:105px}.Mount_Head_FlyingPig-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1696px -1166px;width:105px;height:105px}.Mount_Head_FlyingPig-Desert{background-image:url(spritesmith4.png);background-position:-2014px -424px;width:105px;height:105px}.Mount_Head_FlyingPig-Golden{background-position:-1166px -1696px}.Mount_Head_FlyingPig-Golden,.Mount_Head_FlyingPig-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_FlyingPig-Red{background-position:-2014px -530px}.Mount_Head_FlyingPig-Shade{background-position:-424px -2044px}.Mount_Head_FlyingPig-Shade,.Mount_Head_FlyingPig-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_FlyingPig-Skeleton{background-position:-848px -1908px}.Mount_Head_FlyingPig-White{background-position:-1908px -848px}.Mount_Head_FlyingPig-White,.Mount_Head_FlyingPig-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_FlyingPig-Zombie{background-position:-1060px -1802px}.Mount_Head_Fox-Base{background-position:-1802px -1060px}.Mount_Head_Fox-Base,.Mount_Head_Fox-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Fox-CottonCandyBlue{background-position:-1484px -1484px}.Mount_Head_Fox-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1590px -1378px;width:105px;height:105px}.Mount_Head_Fox-Desert{background-position:-1378px -1590px}.Mount_Head_Fox-Desert,.Mount_Head_Fox-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Fox-Golden{background-position:-2107px -106px}.Mount_Head_Fox-Red{background-position:-530px -2044px}.Mount_Head_Fox-Red,.Mount_Head_Fox-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Fox-Shade{background-position:-636px -2014px}.Mount_Head_Fox-Skeleton{background-position:-2104px -212px}.Mount_Head_Fox-Skeleton,.Mount_Head_Fox-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Fox-White{background-position:-212px -2104px}.Mount_Head_Fox-Zombie{background-position:-2017px -636px}.Mount_Head_Fox-Zombie,.Mount_Head_Gryphon-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Gryphon-Base{background-position:-1272px -1696px}.Mount_Head_Gryphon-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-954px -1272px;width:105px;height:105px}.Mount_Head_Gryphon-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-726px -212px;width:105px;height:105px}.Mount_Head_Gryphon-Desert{background-position:-756px 0}.Mount_Head_Gryphon-Desert,.Mount_Head_Gryphon-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Gryphon-Golden{background-position:-106px -744px}.Mount_Head_Gryphon-Red{background-position:0 -744px}.Mount_Head_Gryphon-Red,.Mount_Head_Gryphon-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Gryphon-Shade{background-position:-726px -106px}.Mount_Head_Gryphon-Skeleton{background-position:-636px -318px}.Mount_Head_Gryphon-Skeleton,.Mount_Head_Gryphon-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Gryphon-White{background-position:-424px -560px}.Mount_Head_Gryphon-Zombie{background-position:-530px -454px}.Mount_Head_Gryphon-Zombie,.Mount_Head_Hedgehog-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Hedgehog-Base{background-position:-318px -620px}.Mount_Head_Hedgehog-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-620px -212px;width:105px;height:105px}.Mount_Head_Hedgehog-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-212px -620px;width:105px;height:105px}.Mount_Head_Hedgehog-Desert{background-position:-650px 0}.Mount_Head_Hedgehog-Desert,.Mount_Head_Hedgehog-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Hedgehog-Golden{background-position:-106px -638px}.Mount_Head_Hedgehog-Red{background-position:0 -638px}.Mount_Head_Hedgehog-Red,.Mount_Head_Hedgehog-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Hedgehog-Shade{background-position:-530px -348px}.Mount_Head_Hedgehog-Skeleton{background-position:-620px -106px}.Mount_Head_Hedgehog-Skeleton,.Mount_Head_Hedgehog-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Hedgehog-White{background-position:-424px -454px}.Mount_Head_Hedgehog-Zombie{background-position:-318px -514px}.Mount_Head_Hedgehog-Zombie,.Mount_Head_LionCub-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_LionCub-Base{background-position:-514px -242px}.Mount_Head_LionCub-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-212px -514px;width:105px;height:105px}.Mount_Head_LionCub-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-424px -348px;width:105px;height:105px}.Mount_Head_LionCub-Desert{background-position:-544px 0}.Mount_Head_LionCub-Desert,.Mount_Head_LionCub-Ethereal{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_LionCub-Ethereal{background-position:-106px -532px}.Mount_Head_LionCub-Golden{background-position:0 -532px}.Mount_Head_LionCub-Golden,.Mount_Head_LionCub-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_LionCub-Red{background-position:-514px -136px}.Mount_Head_LionCub-Shade{background-position:-318px -408px}.Mount_Head_LionCub-Shade,.Mount_Head_LionCub-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_LionCub-Skeleton{background-position:-408px -242px}.Mount_Head_LionCub-White{background-position:-212px -408px}.Mount_Head_LionCub-White,.Mount_Head_LionCub-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_LionCub-Zombie{background-position:-1816px 0}.Mount_Head_Mammoth-Base{background-image:url(spritesmith4.png);background-position:0 -408px;width:105px;height:123px}.Mount_Head_MantisShrimp-Base{background-image:url(spritesmith4.png);background-position:-1696px -636px;width:108px;height:105px}.Mount_Head_Octopus-Base{background-image:url(spritesmith4.png);background-position:-636px -1696px;width:105px;height:105px}.Mount_Head_Octopus-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-106px -1804px;width:105px;height:105px}.Mount_Head_Octopus-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-530px -1726px;width:105px;height:105px}.Mount_Head_Octopus-Desert{background-position:-1166px -1378px}.Mount_Head_Octopus-Desert,.Mount_Head_Octopus-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Octopus-Golden{background-position:-1378px -1166px}.Mount_Head_Octopus-Red{background-position:0 -1804px}.Mount_Head_Octopus-Red,.Mount_Head_Octopus-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Octopus-Shade{background-position:-1590px -848px}.Mount_Head_Octopus-Skeleton{background-position:-1060px -848px}.Mount_Head_Octopus-Skeleton,.Mount_Head_Octopus-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Octopus-White{background-position:-318px -1786px}.Mount_Head_Octopus-Zombie{background-image:url(spritesmith5.png);background-position:-530px -984px;width:105px;height:105px}.Mount_Head_Owl-Base{background-position:-1166px -530px}.Mount_Head_Owl-Base,.Mount_Head_Owl-CottonCandyBlue{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Owl-CottonCandyBlue{background-position:-530px -772px}.Mount_Head_Owl-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-742px -848px;width:105px;height:105px}.Mount_Head_Owl-Desert{background-position:-848px -742px}.Mount_Head_Owl-Desert,.Mount_Head_Owl-Golden{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Owl-Golden{background-position:-1060px -424px}.Mount_Head_Owl-Red{background-position:-636px -954px}.Mount_Head_Owl-Red,.Mount_Head_Owl-Shade{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Owl-Shade{background-position:-954px -636px}.Mount_Head_Owl-Skeleton{background-position:0 -1150px}.Mount_Head_Owl-Skeleton,.Mount_Head_Owl-White{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Owl-White{background-position:-106px -1150px}.Mount_Head_Owl-Zombie{background-position:-1150px -106px}.Mount_Head_Owl-Zombie,.Mount_Head_PandaCub-Base{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_PandaCub-Base{background-position:-1150px -212px}.Mount_Head_PandaCub-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-106px -408px;width:105px;height:105px}.Mount_Head_PandaCub-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-408px -136px;width:105px;height:105px}.Mount_Head_PandaCub-Desert{background-image:url(spritesmith5.png);background-position:-212px -408px;width:105px;height:105px}.Mount_Head_PandaCub-Golden{background-position:-408px -242px}.Mount_Head_PandaCub-Golden,.Mount_Head_PandaCub-Red{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_PandaCub-Red{background-position:0 -514px}.Mount_Head_PandaCub-Shade{background-position:-318px -408px}.Mount_Head_PandaCub-Shade,.Mount_Head_PandaCub-Skeleton{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_PandaCub-Skeleton{background-position:-106px -514px}.Mount_Head_PandaCub-White{background-position:-514px -136px}.Mount_Head_PandaCub-White,.Mount_Head_PandaCub-Zombie{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_PandaCub-Zombie{background-position:-544px 0}.Mount_Head_Parrot-Base{background-position:-424px -348px}.Mount_Head_Parrot-Base,.Mount_Head_Parrot-CottonCandyBlue{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Parrot-CottonCandyBlue{background-position:-212px -514px}.Mount_Head_Parrot-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-514px -242px;width:105px;height:105px}.Mount_Head_Parrot-Desert{background-position:-318px -514px}.Mount_Head_Parrot-Desert,.Mount_Head_Parrot-Golden{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Parrot-Golden{background-position:0 -620px}.Mount_Head_Parrot-Red{background-position:-424px -454px}.Mount_Head_Parrot-Red,.Mount_Head_Parrot-Shade{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Parrot-Shade{background-position:-106px -620px}.Mount_Head_Parrot-Skeleton{background-position:-620px -106px}.Mount_Head_Parrot-Skeleton,.Mount_Head_Parrot-White{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Parrot-White{background-position:-530px -348px}.Mount_Head_Parrot-Zombie{background-position:-650px 0}.Mount_Head_Parrot-Zombie,.Mount_Head_Penguin-Base{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Penguin-Base{background-position:-620px -212px}.Mount_Head_Penguin-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-212px -620px;width:105px;height:105px}.Mount_Head_Penguin-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-318px -620px;width:105px;height:105px}.Mount_Head_Penguin-Desert{background-image:url(spritesmith5.png);background-position:-530px -454px;width:105px;height:105px}.Mount_Head_Penguin-Golden{background-position:-424px -560px}.Mount_Head_Penguin-Golden,.Mount_Head_Penguin-Red{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Penguin-Red{background-position:-636px -318px}.Mount_Head_Penguin-Shade{background-position:0 -726px}.Mount_Head_Penguin-Shade,.Mount_Head_Penguin-Skeleton{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Penguin-Skeleton{background-position:-106px -726px}.Mount_Head_Penguin-White{background-position:-726px -106px}.Mount_Head_Penguin-White,.Mount_Head_Penguin-Zombie{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Penguin-Zombie{background-position:-756px 0}.Mount_Head_Rat-Base{background-position:-212px -726px}.Mount_Head_Rat-Base,.Mount_Head_Rat-CottonCandyBlue{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rat-CottonCandyBlue{background-position:-726px -212px}.Mount_Head_Rat-CottonCandyPink{background-position:-636px -424px}.Mount_Head_Rat-CottonCandyPink,.Mount_Head_Rat-Desert{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rat-Desert{background-position:-530px -560px}.Mount_Head_Rat-Golden{background-position:-424px -666px}.Mount_Head_Rat-Golden,.Mount_Head_Rat-Red{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rat-Red{background-position:-318px -726px}.Mount_Head_Rat-Shade{background-position:-742px -318px}.Mount_Head_Rat-Shade,.Mount_Head_Rat-Skeleton{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rat-Skeleton{background-position:-636px -530px}.Mount_Head_Rat-White{background-position:0 -832px}.Mount_Head_Rat-White,.Mount_Head_Rat-Zombie{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rat-Zombie{background-position:-106px -832px}.Mount_Head_Rock-Base{background-position:-832px -106px}.Mount_Head_Rock-Base,.Mount_Head_Rock-CottonCandyBlue{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rock-CottonCandyBlue{background-position:-530px -666px}.Mount_Head_Rock-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-742px -424px;width:105px;height:105px}.Mount_Head_Rock-Desert{background-position:-212px -832px}.Mount_Head_Rock-Desert,.Mount_Head_Rock-Gold{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rock-Gold{background-position:-832px -212px}.Mount_Head_Rock-Red{background-position:-862px 0}.Mount_Head_Rock-Red,.Mount_Head_Rock-Shade{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rock-Shade{background-position:-424px -772px}.Mount_Head_Rock-Skeleton{background-position:-318px -832px}.Mount_Head_Rock-Skeleton,.Mount_Head_Rock-White{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rock-White{background-position:-636px -636px}.Mount_Head_Rock-Zombie{background-position:-848px -318px}.Mount_Head_Rock-Zombie,.Mount_Head_Rooster-Base{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rooster-Base{background-position:-742px -530px}.Mount_Head_Rooster-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:0 -408px;width:105px;height:105px}.Mount_Head_Rooster-CottonCandyPink{background-image:url(spritesmith5.png);background-position:0 -938px;width:105px;height:105px}.Mount_Head_Rooster-Desert{background-position:-106px -938px}.Mount_Head_Rooster-Desert,.Mount_Head_Rooster-Golden{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rooster-Golden{background-position:-938px -106px}.Mount_Head_Rooster-Red{background-position:-848px -424px}.Mount_Head_Rooster-Red,.Mount_Head_Rooster-Shade{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rooster-Shade{background-position:-212px -938px}.Mount_Head_Rooster-Skeleton{background-position:-938px -212px}.Mount_Head_Rooster-Skeleton,.Mount_Head_Rooster-White{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rooster-White{background-position:-968px 0}.Mount_Head_Rooster-Zombie{background-position:-424px -878px}.Mount_Head_Rooster-Zombie,.Mount_Head_Seahorse-Base{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Seahorse-Base{background-position:-742px -636px}.Mount_Head_Seahorse-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-636px -742px;width:105px;height:105px}.Mount_Head_Seahorse-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-318px -938px;width:105px;height:105px}.Mount_Head_Seahorse-Desert{background-image:url(spritesmith5.png);background-position:-848px -530px;width:105px;height:105px}.Mount_Head_Seahorse-Golden{background-position:-954px -318px}.Mount_Head_Seahorse-Golden,.Mount_Head_Seahorse-Red{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Seahorse-Red{background-position:-530px -878px}.Mount_Head_Seahorse-Shade{background-position:-954px -424px}.Mount_Head_Seahorse-Shade,.Mount_Head_Seahorse-Skeleton{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Seahorse-Skeleton{background-position:0 -1044px}.Mount_Head_Seahorse-White{background-position:-742px -742px}.Mount_Head_Seahorse-White,.Mount_Head_Seahorse-Zombie{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Seahorse-Zombie{background-position:-1044px -106px}.Mount_Head_Spider-Base{background-position:-106px -1044px}.Mount_Head_Spider-Base,.Mount_Head_Spider-CottonCandyBlue{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Spider-CottonCandyBlue{background-position:-848px -636px}.Mount_Head_Spider-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-636px -848px;width:105px;height:105px}.Mount_Head_Spider-Desert{background-image:url(spritesmith5.png);background-position:-1044px -212px;width:105px;height:105px}.Mount_Head_Spider-Golden{background-position:-212px -1044px}.Mount_Head_Spider-Golden,.Mount_Head_Spider-Red{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Spider-Red{background-position:-424px -984px}.Mount_Head_Spider-Shade{background-position:-1074px 0}.Mount_Head_Spider-Shade,.Mount_Head_Spider-Skeleton{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Spider-Skeleton{background-position:-954px -530px}.Mount_Head_Spider-White{background-position:-318px -1044px}.Mount_Head_Spider-White,.Mount_Head_Spider-Zombie{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Spider-Zombie{background-position:-1060px -318px}.Mount_Head_TRex-Base{background-position:-272px 0}.Mount_Head_TRex-Base,.Mount_Head_TRex-CottonCandyBlue{background-image:url(spritesmith5.png);width:135px;height:135px}.Mount_Head_TRex-CottonCandyBlue{background-position:0 -136px}.Mount_Head_TRex-CottonCandyPink{background-position:-136px -136px}.Mount_Head_TRex-CottonCandyPink,.Mount_Head_TRex-Desert{background-image:url(spritesmith5.png);width:135px;height:135px}.Mount_Head_TRex-Desert{background-position:0 -272px}.Mount_Head_TRex-Golden{background-position:0 0}.Mount_Head_TRex-Golden,.Mount_Head_TRex-Red{background-image:url(spritesmith5.png);width:135px;height:135px}.Mount_Head_TRex-Red{background-position:-272px -136px}.Mount_Head_TRex-Shade{background-position:-136px -272px}.Mount_Head_TRex-Shade,.Mount_Head_TRex-Skeleton{background-image:url(spritesmith5.png);width:135px;height:135px}.Mount_Head_TRex-Skeleton{background-position:-272px -272px}.Mount_Head_TRex-White{background-position:-408px 0}.Mount_Head_TRex-White,.Mount_Head_TRex-Zombie{background-image:url(spritesmith5.png);width:135px;height:135px}.Mount_Head_TRex-Zombie{background-position:-136px 0}.Mount_Head_TigerCub-Base{background-image:url(spritesmith5.png);background-position:-212px -1150px;width:105px;height:105px}.Mount_Head_TigerCub-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-424px -1090px;width:105px;height:105px}.Mount_Head_TigerCub-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1180px 0;width:105px;height:105px}.Mount_Head_TigerCub-Desert{background-position:-1060px -530px}.Mount_Head_TigerCub-Desert,.Mount_Head_TigerCub-Golden{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_TigerCub-Golden{background-position:-318px -1150px}.Mount_Head_TigerCub-Red{background-position:-848px -848px}.Mount_Head_TigerCub-Red,.Mount_Head_TigerCub-Shade{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_TigerCub-Shade{background-position:-1166px -318px}.Mount_Head_TigerCub-Skeleton{background-position:-954px -742px}.Mount_Head_TigerCub-Skeleton,.Mount_Head_TigerCub-White{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_TigerCub-White{background-position:-742px -954px}.Mount_Head_TigerCub-Zombie{background-position:-530px -1090px}.Mount_Head_TigerCub-Zombie,.Mount_Head_Turkey-Base{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Turkey-Base{background-position:-1060px -636px}.Mount_Head_Wolf-Base{background-position:-636px -1060px}.Mount_Head_Wolf-Base,.Mount_Head_Wolf-CottonCandyBlue{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Wolf-CottonCandyBlue{background-position:-1166px -424px}.Mount_Head_Wolf-CottonCandyPink{background-position:0 -1256px}.Mount_Head_Wolf-CottonCandyPink,.Mount_Head_Wolf-Desert{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Wolf-Desert{background-position:-106px -1256px}.Mount_Head_Wolf-Golden{background-position:-1256px -106px}.Mount_Head_Wolf-Golden,.Mount_Head_Wolf-Red{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Wolf-Red{background-position:-424px -1196px}.Mount_Head_Wolf-Shade{background-position:-1256px -212px}.Mount_Head_Wolf-Shade,.Mount_Head_Wolf-Skeleton{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Wolf-Skeleton{background-position:-212px -1256px}.Mount_Head_Wolf-White{background-position:-954px -848px}.Mount_Head_Wolf-White,.Mount_Head_Wolf-Zombie{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Wolf-Zombie{background-position:-848px -954px}.Pet-BearCub-Base{background-position:-1286px 0}.Pet-BearCub-Base,.Pet-BearCub-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-BearCub-CottonCandyBlue{background-position:-1060px -742px}.Pet-BearCub-CottonCandyPink{background-position:-742px -1060px}.Pet-BearCub-CottonCandyPink,.Pet-BearCub-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-BearCub-Desert{background-position:-318px -1256px}.Pet-BearCub-Golden{background-position:-530px -1196px}.Pet-BearCub-Golden,.Pet-BearCub-Polar{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-BearCub-Polar{background-position:-1272px -318px}.Pet-BearCub-Red{background-position:-636px -1166px}.Pet-BearCub-Red,.Pet-BearCub-Shade{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-BearCub-Shade{background-position:-1166px -636px}.Pet-BearCub-Skeleton{background-position:-1272px -418px}.Pet-BearCub-Skeleton,.Pet-BearCub-White{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-BearCub-White{background-position:-824px -1060px}.Pet-BearCub-Zombie{background-position:-954px -954px}.Pet-BearCub-Zombie,.Pet-Cactus-Base{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Cactus-Base{background-position:-1060px -842px}.Pet-Cactus-CottonCandyBlue{background-position:-1142px -742px}.Pet-Cactus-CottonCandyBlue,.Pet-Cactus-CottonCandyPink{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Cactus-CottonCandyPink{background-position:0 -1362px}.Pet-Cactus-Desert{background-position:-400px -1302px}.Pet-Cactus-Desert,.Pet-Cactus-Golden{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Cactus-Golden{background-position:-82px -1362px}.Pet-Cactus-Red{background-position:-1362px -100px}.Pet-Cactus-Red,.Pet-Cactus-Shade{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Cactus-Shade{background-position:-1368px 0}.Pet-Cactus-Skeleton{background-position:-718px -1166px}.Pet-Cactus-Skeleton,.Pet-Cactus-White{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Cactus-White{background-position:-164px -1362px}.Pet-Cactus-Zombie{background-position:-1272px -518px}.Pet-Cactus-Zombie,.Pet-Deer-Base{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Deer-Base{background-position:-1362px -200px}.Pet-Deer-CottonCandyBlue{background-position:-246px -1362px}.Pet-Deer-CottonCandyBlue,.Pet-Deer-CottonCandyPink{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Deer-CottonCandyPink{background-position:-482px -1302px}.Pet-Deer-Desert{background-position:-1354px -318px}.Pet-Deer-Desert,.Pet-Deer-Golden{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Deer-Golden{background-position:-906px -1060px}.Pet-Deer-Red{background-position:-1248px -636px}.Pet-Deer-Red,.Pet-Deer-Shade{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Deer-Shade{background-position:-612px -1266px}.Pet-Deer-Skeleton{background-position:-1036px -954px}.Pet-Deer-Skeleton,.Pet-Deer-White{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Deer-White{background-position:-800px -1160px}.Pet-Deer-Zombie{background-position:-1354px -418px}.Pet-Deer-Zombie,.Pet-Dragon-Base{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Dragon-Base{background-position:-1142px -842px}.Pet-Dragon-CottonCandyBlue{background-position:-1224px -736px}.Pet-Dragon-CottonCandyBlue,.Pet-Dragon-CottonCandyPink{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Dragon-CottonCandyPink{background-position:-328px -1402px}.Pet-Dragon-Desert{background-position:-694px -1266px}.Pet-Dragon-Desert,.Pet-Dragon-Golden{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Dragon-Golden{background-position:-988px -1054px}.Pet-Dragon-Hydra{background-position:-1444px -100px}.Pet-Dragon-Hydra,.Pet-Dragon-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Dragon-Red{background-position:-1354px -518px}.Pet-Dragon-Shade{background-position:-1450px 0}.Pet-Dragon-Shade,.Pet-Dragon-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Dragon-Skeleton{background-position:-882px -1160px}.Pet-Dragon-White{background-position:-1444px -200px}.Pet-Dragon-White,.Pet-Dragon-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Dragon-Zombie{background-position:-410px -1402px}.Pet-Egg-Base{background-position:-1118px -942px}.Pet-Egg-Base,.Pet-Egg-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Egg-CottonCandyBlue{background-position:0 -1462px}.Pet-Egg-CottonCandyPink{background-position:-82px -1462px}.Pet-Egg-CottonCandyPink,.Pet-Egg-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Egg-Desert{background-position:-1330px -618px}.Pet-Egg-Golden{background-position:-1436px -300px}.Pet-Egg-Golden,.Pet-Egg-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Egg-Red{background-position:-164px -1462px}.Pet-Egg-Shade{background-position:-564px -1366px}.Pet-Egg-Shade,.Pet-Egg-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Egg-Skeleton{background-position:-1224px -836px}.Pet-Egg-White{background-position:-246px -1462px}.Pet-Egg-White,.Pet-Egg-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Egg-Zombie{background-position:-776px -1266px}.Pet-FlyingPig-Base{background-position:-1436px -400px}.Pet-FlyingPig-Base,.Pet-FlyingPig-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-FlyingPig-CottonCandyBlue{background-position:-1306px -736px}.Pet-FlyingPig-CottonCandyPink{background-position:-1070px -1054px}.Pet-FlyingPig-CottonCandyPink,.Pet-FlyingPig-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-FlyingPig-Desert{background-position:-964px -1160px}.Pet-FlyingPig-Golden{background-position:-646px -1366px}.Pet-FlyingPig-Golden,.Pet-FlyingPig-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-FlyingPig-Red{background-position:-1436px -500px}.Pet-FlyingPig-Shade{background-position:-858px -1260px}.Pet-FlyingPig-Shade,.Pet-FlyingPig-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-FlyingPig-Skeleton{background-position:-1200px -942px}.Pet-FlyingPig-White{background-position:-1526px -100px}.Pet-FlyingPig-White,.Pet-FlyingPig-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-FlyingPig-Zombie{background-position:-1532px 0}.Pet-Fox-Base{background-position:-328px -1502px}.Pet-Fox-Base,.Pet-Fox-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Fox-CottonCandyBlue{background-position:-1526px -200px}.Pet-Fox-CottonCandyPink{background-position:-1412px -618px}.Pet-Fox-CottonCandyPink,.Pet-Fox-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Fox-Desert{background-position:-492px -1466px}.Pet-Fox-Golden{background-position:-1518px -300px}.Pet-Fox-Golden,.Pet-Fox-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Fox-Red{background-position:-728px -1366px}.Pet-Fox-Shade{background-position:-1306px -836px}.Pet-Fox-Shade,.Pet-Fox-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Fox-Skeleton{background-position:-1152px -1042px}.Pet-Fox-White{background-position:-410px -1502px}.Pet-Fox-White,.Pet-Fox-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Fox-Zombie{background-position:-1046px -1154px}.Pet-Gryphon-Base{background-position:0 -1562px}.Pet-Gryphon-Base,.Pet-Gryphon-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Gryphon-CottonCandyBlue{background-position:-1388px -718px}.Pet-Gryphon-CottonCandyPink{background-position:-82px -1562px}.Pet-Gryphon-CottonCandyPink,.Pet-Gryphon-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Gryphon-Desert{background-position:-1518px -400px}.Pet-Gryphon-Golden{background-position:-164px -1562px}.Pet-Gryphon-Golden,.Pet-Gryphon-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Gryphon-Red{background-position:-940px -1260px}.Pet-Gryphon-Shade{background-position:-574px -1466px}.Pet-Gryphon-Shade,.Pet-Gryphon-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Gryphon-Skeleton{background-position:-246px -1562px}.Pet-Gryphon-White{background-position:-1282px -936px}.Pet-Gryphon-White,.Pet-Gryphon-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Gryphon-Zombie{background-position:-810px -1366px}.Pet-Hedgehog-Base{background-position:-1518px -500px}.Pet-Hedgehog-Base,.Pet-Hedgehog-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Hedgehog-CottonCandyBlue{background-position:-656px -1466px}.Pet-Hedgehog-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1494px -600px;width:81px;height:99px}.Pet-Hedgehog-Desert{background-position:-1608px -100px}.Pet-Hedgehog-Desert,.Pet-Hedgehog-Golden{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Hedgehog-Golden{background-position:-1388px -818px}.Pet-Hedgehog-Red{background-position:-1128px -1154px}.Pet-Hedgehog-Red,.Pet-Hedgehog-Shade{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Hedgehog-Shade{background-position:-1614px 0}.Pet-Hedgehog-Skeleton{background-position:-1234px -1042px}.Pet-Hedgehog-Skeleton,.Pet-Hedgehog-White{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Hedgehog-White{background-position:-1608px -200px}.Pet-Hedgehog-Zombie{background-position:-1022px -1260px}.Pet-Hedgehog-Zombie,.Pet-JackOLantern-Base{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-JackOLantern-Base{background-position:-892px -1360px}.Pet-LionCub-Base{background-position:-1600px -300px}.Pet-LionCub-Base,.Pet-LionCub-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-LionCub-CottonCandyBlue{background-position:-328px -1602px}.Pet-LionCub-CottonCandyPink{background-position:-1470px -718px}.Pet-LionCub-CottonCandyPink,.Pet-LionCub-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-LionCub-Desert{background-position:-738px -1466px}.Pet-LionCub-Golden{background-position:-492px -1566px}.Pet-LionCub-Golden,.Pet-LionCub-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-LionCub-Red{background-position:-1600px -400px}.Pet-LionCub-Shade{background-position:-410px -1602px}.Pet-LionCub-Shade,.Pet-LionCub-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-LionCub-Skeleton{background-position:-1364px -936px}.Pet-LionCub-White{background-position:0 -1662px}.Pet-LionCub-White,.Pet-LionCub-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-LionCub-Zombie{background-position:-1210px -1142px}.Pet-Mammoth-Base{background-position:-82px -1662px}.Pet-Mammoth-Base,.Pet-MantisShrimp-Base{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-MantisShrimp-Base{background-position:-574px -1566px}.Pet-Octopus-Base{background-position:-164px -1662px}.Pet-Octopus-Base,.Pet-Octopus-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Octopus-CottonCandyBlue{background-position:-1104px -1254px}.Pet-Octopus-CottonCandyPink{background-position:-974px -1360px}.Pet-Octopus-CottonCandyPink,.Pet-Octopus-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Octopus-Desert{background-position:-1316px -1036px}.Pet-Octopus-Golden{background-position:-1600px -500px}.Pet-Octopus-Golden,.Pet-Octopus-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Octopus-Red{background-position:-820px -1466px}.Pet-Octopus-Shade{background-position:-246px -1662px}.Pet-Octopus-Shade,.Pet-Octopus-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Octopus-Skeleton{background-position:-1470px -818px}.Pet-Octopus-White{background-position:-1576px -600px}.Pet-Octopus-White,.Pet-Octopus-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Octopus-Zombie{background-position:-1690px -100px}.Pet-Owl-Base{background-position:-1696px 0}.Pet-Owl-Base,.Pet-Owl-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Owl-CottonCandyBlue{background-position:-656px -1566px}.Pet-Owl-CottonCandyPink{background-position:-1690px -200px}.Pet-Owl-CottonCandyPink,.Pet-Owl-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Owl-Desert{background-position:-1552px -700px}.Pet-Owl-Golden{background-position:-1682px -300px}.Pet-Owl-Golden,.Pet-Owl-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Owl-Red{background-position:-1446px -918px}.Pet-Owl-Shade{background-position:-902px -1460px}.Pet-Owl-Shade,.Pet-Owl-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Owl-Skeleton{background-position:-1056px -1360px}.Pet-Owl-White{background-position:-1292px -1142px}.Pet-Owl-White,.Pet-Owl-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Owl-Zombie{background-position:-1186px -1254px}.Pet-PandaCub-Base{background-position:-1682px -400px}.Pet-PandaCub-Base,.Pet-PandaCub-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-PandaCub-CottonCandyBlue{background-position:-738px -1566px}.Pet-PandaCub-CottonCandyPink{background-position:-328px -1702px}.Pet-PandaCub-CottonCandyPink,.Pet-PandaCub-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-PandaCub-Desert{background-position:-492px -1666px}.Pet-PandaCub-Golden{background-position:-1398px -1036px}.Pet-PandaCub-Golden,.Pet-PandaCub-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-PandaCub-Red{background-position:-1552px -800px}.Pet-PandaCub-Shade{background-position:-410px -1702px}.Pet-PandaCub-Shade,.Pet-PandaCub-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-PandaCub-Skeleton{background-position:-1682px -500px}.Pet-PandaCub-White{background-position:-984px -1460px}.Pet-PandaCub-White,.Pet-PandaCub-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-PandaCub-Zombie{background-position:0 -1762px}.Pet-Parrot-Base{background-position:-574px -1666px}.Pet-Parrot-Base,.Pet-Parrot-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Parrot-CottonCandyBlue{background-position:-1658px -600px}.Pet-Parrot-CottonCandyPink{background-position:-82px -1762px}.Pet-Parrot-CottonCandyPink,.Pet-Parrot-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Parrot-Desert{background-position:-820px -1566px}.Pet-Parrot-Golden{background-position:-1138px -1354px}.Pet-Parrot-Golden,.Pet-Parrot-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Parrot-Red{background-position:-164px -1762px}.Pet-Parrot-Shade{background-position:-1772px -100px}.Pet-Parrot-Shade,.Pet-Parrot-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Parrot-Skeleton{background-position:-1268px -1242px}.Pet-Parrot-White{background-position:-1634px -700px}.Pet-Parrot-White,.Pet-Parrot-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Parrot-Zombie{background-position:-1778px 0}.Pet-Penguin-Base{background-position:-246px -1762px}.Pet-Penguin-Base,.Pet-Penguin-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Penguin-CottonCandyBlue{background-position:-1528px -918px}.Pet-Penguin-CottonCandyPink{background-position:-1374px -1136px}.Pet-Penguin-CottonCandyPink,.Pet-Penguin-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Penguin-Desert{background-position:-1772px -200px}.Pet-Penguin-Golden{background-position:-1764px -300px}.Pet-Penguin-Golden,.Pet-Penguin-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Penguin-Red{background-position:-656px -1666px}.Pet-Penguin-Shade{background-position:-1480px -1018px}.Pet-Penguin-Shade,.Pet-Penguin-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Penguin-Skeleton{background-position:-902px -1560px}.Pet-Penguin-White{background-position:-1066px -1460px}.Pet-Penguin-White,.Pet-Penguin-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Penguin-Zombie{background-position:-1764px -400px}.Pet-Rat-Base{background-position:-1634px -800px}.Pet-Rat-Base,.Pet-Rat-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Rat-CottonCandyBlue{background-position:-738px -1666px}.Pet-Rat-CottonCandyPink{background-position:-1220px -1354px}.Pet-Rat-CottonCandyPink,.Pet-Rat-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Rat-Desert{background-position:-328px -1802px}.Pet-Rat-Golden{background-position:-492px -1766px}.Pet-Rat-Golden,.Pet-Rat-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Rat-Red{background-position:-1764px -500px}.Pet-Rat-Shade{background-position:-1350px -1242px}.Pet-Rat-Shade,.Pet-Rat-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Rat-Skeleton{background-position:-1740px -600px}.Pet-Rat-White{background-position:-984px -1560px}.Pet-Rat-White,.Pet-Rat-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Rat-Zombie{background-position:-1610px -900px}.Pet-Rock-Base{background-position:-492px -1966px}.Pet-Rock-Base,.Pet-Rock-CottonCandyBlue{background-image:url(spritesmith5.png);width:75px;height:93px}.Pet-Rock-CottonCandyBlue{background-position:-1702px -1100px}.Pet-Rock-CottonCandyPink{background-position:-1312px -1542px}.Pet-Rock-CottonCandyPink,.Pet-Rock-Desert{background-image:url(spritesmith5.png);width:75px;height:93px}.Pet-Rock-Desert{background-position:-2024px 0}.Pet-Rock-Gold{background-position:-2018px -100px}.Pet-Rock-Gold,.Pet-Rock-Red{background-image:url(spritesmith5.png);width:75px;height:93px}.Pet-Rock-Red{background-position:-984px -1760px}.Pet-Rock-Shade{background-position:-1148px -1654px}.Pet-Rock-Shade,.Pet-Rock-Skeleton{background-image:url(spritesmith5.png);width:75px;height:93px}.Pet-Rock-Skeleton{background-position:-1596px -1218px}.Pet-Rock-White{background-position:-2018px -194px}.Pet-Rock-White,.Pet-Rock-Zombie{background-image:url(spritesmith5.png);width:75px;height:93px}.Pet-Rock-Zombie{background-position:-738px -1866px}.Pet-Rooster-Base{background-position:-1562px -1018px}.Pet-Rooster-Base,.Pet-Rooster-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Rooster-CottonCandyBlue{background-position:-1854px -200px}.Pet-Rooster-CottonCandyPink{background-position:-164px -1862px}.Pet-Rooster-CottonCandyPink,.Pet-Rooster-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Rooster-Desert{background-position:-1302px -1342px}.Pet-Rooster-Golden{background-position:-1846px -300px}.Pet-Rooster-Golden,.Pet-Rooster-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Rooster-Red{background-position:-246px -1862px}.Pet-Rooster-Shade{background-position:-656px -1766px}.Pet-Rooster-Shade,.Pet-Rooster-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Rooster-Skeleton{background-position:-1846px -400px}.Pet-Rooster-White{background-position:-902px -1660px}.Pet-Rooster-White,.Pet-Rooster-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Rooster-Zombie{background-position:-1066px -1560px}.Pet-Seahorse-Base{background-position:-1432px -1236px}.Pet-Seahorse-Base,.Pet-Seahorse-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Seahorse-CottonCandyBlue{background-position:-1716px -800px}.Pet-Seahorse-CottonCandyPink{background-position:-1538px -1118px}.Pet-Seahorse-CottonCandyPink,.Pet-Seahorse-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Seahorse-Desert{background-position:-1230px -1454px}.Pet-Seahorse-Golden{background-position:-1846px -500px}.Pet-Seahorse-Golden,.Pet-Seahorse-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Seahorse-Red{background-position:-738px -1766px}.Pet-Seahorse-Shade{background-position:-1692px -900px}.Pet-Seahorse-Shade,.Pet-Seahorse-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Seahorse-Skeleton{background-position:-1822px -600px}.Pet-Seahorse-White{background-position:-1644px -1000px}.Pet-Seahorse-White,.Pet-Seahorse-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Seahorse-Zombie{background-position:-1384px -1342px}.Pet-Spider-Base{background-position:-1798px -700px}.Pet-Spider-Base,.Pet-Spider-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Spider-CottonCandyBlue{background-position:-984px -1660px}.Pet-Spider-CottonCandyPink{background-position:-492px -1866px}.Pet-Spider-CottonCandyPink,.Pet-Spider-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Spider-Desert{background-position:-328px -1902px}.Pet-Spider-Golden{background-position:-1148px -1554px}.Pet-Spider-Golden,.Pet-Spider-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Spider-Red{background-position:-1936px -100px}.Pet-Spider-Shade{background-position:-1942px 0}.Pet-Spider-Shade,.Pet-Spider-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Spider-Skeleton{background-position:-410px -1902px}.Pet-Spider-White{background-position:-1936px -200px}.Pet-Spider-White,.Pet-Spider-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Spider-Zombie{background-position:-820px -1766px}.Pet-TRex-Base{background-position:-1312px -1442px}.Pet-TRex-Base,.Pet-TRex-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-TRex-CottonCandyBlue{background-position:-1928px -300px}.Pet-TRex-CottonCandyPink{background-position:-574px -1866px}.Pet-TRex-CottonCandyPink,.Pet-TRex-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-TRex-Desert{background-position:-1514px -1236px}.Pet-TRex-Golden{background-position:0 -1962px}.Pet-TRex-Golden,.Pet-TRex-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-TRex-Red{background-position:-82px -1962px}.Pet-TRex-Shade{background-position:-1798px -800px}.Pet-TRex-Shade,.Pet-TRex-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-TRex-Skeleton{background-position:-1620px -1118px}.Pet-TRex-White{background-position:-164px -1962px}.Pet-TRex-White,.Pet-TRex-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-TRex-Zombie{background-position:-1928px -400px}.Pet-TigerCub-Base{background-position:-1066px -1660px}.Pet-TigerCub-Base,.Pet-TigerCub-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-TigerCub-CottonCandyBlue{background-position:-246px -1962px}.Pet-TigerCub-CottonCandyPink{background-position:-902px -1760px}.Pet-TigerCub-CottonCandyPink,.Pet-TigerCub-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-TigerCub-Desert{background-position:-656px -1866px}.Pet-TigerCub-Golden{background-position:-1230px -1554px}.Pet-TigerCub-Golden,.Pet-TigerCub-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-TigerCub-Red{background-position:-1466px -1336px}.Pet-TigerCub-Shade{background-position:-1774px -900px}.Pet-TigerCub-Shade,.Pet-TigerCub-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-TigerCub-Skeleton{background-position:-1928px -500px}.Pet-TigerCub-White{background-position:-1726px -1000px}.Pet-TigerCub-White,.Pet-TigerCub-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-TigerCub-Zombie{background-position:-1904px -600px}.Pet-Turkey-Base{background-position:-1394px -1442px}.Pet-Turkey-Base,.Pet-Wolf-Base{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Wolf-Base{background-position:-1880px -700px}.Pet-Wolf-CottonCandyBlue{background-position:-82px -1862px}.Pet-Wolf-CottonCandyBlue,.Pet-Wolf-CottonCandyPink{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Wolf-CottonCandyPink{background-position:0 -1862px}.Pet-Wolf-Desert{background-position:-1860px 0}.Pet-Wolf-Desert,.Pet-Wolf-Golden{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Wolf-Golden{background-position:-574px -1766px}.Pet-Wolf-Red{background-position:-820px -1666px}.Pet-Wolf-Red,.Pet-Wolf-Shade{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Wolf-Shade{background-position:-1854px -100px}.Pet-Wolf-Skeleton{background-position:-1716px -700px}.Pet-Wolf-Skeleton,.Pet-Wolf-Veteran{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Wolf-Veteran{background-position:-1148px -1454px}.Pet-Wolf-White{background-position:-410px -1802px}.Pet-Wolf-White,.Pet-Wolf-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Wolf-Zombie{background-position:-1456px -1136px}.Pet_HatchingPotion_Base{background-image:url(spritesmith5.png);background-position:-426px -2002px;width:48px;height:51px}.Pet_HatchingPotion_CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-328px -2002px;width:48px;height:51px}.Pet_HatchingPotion_CottonCandyPink{background-image:url(spritesmith5.png);background-position:-2010px -300px;width:48px;height:51px}.Pet_HatchingPotion_Desert{background-image:url(spritesmith5.png);background-position:-814px -1866px;width:48px;height:51px}.Pet_HatchingPotion_Golden{background-position:-377px -2002px}.Pet_HatchingPotion_Golden,.Pet_HatchingPotion_Red{background-image:url(spritesmith5.png);width:48px;height:51px}.Pet_HatchingPotion_Red{background-position:-2010px -352px}.Pet_HatchingPotion_Shade{background-position:-1880px -800px}.Pet_HatchingPotion_Shade,.Pet_HatchingPotion_Skeleton{background-image:url(spritesmith5.png);width:48px;height:51px}.Pet_HatchingPotion_Skeleton{background-position:-1548px -1336px}.Pet_HatchingPotion_White{background-position:-568px -1966px}.Pet_HatchingPotion_White,.Pet_HatchingPotion_Zombie{background-image:url(spritesmith5.png);width:48px;height:51px}.Pet_HatchingPotion_Zombie{background-position:-492px -1402px}.head_special_0,.weapon_special_0{width:105px;height:105px;margin-left:-3px;margin-top:-18px}.broad_armor_special_0,.shield_special_0,.slim_armor_special_0{width:90px;height:90px}.weapon_special_critical{background:url(../img/sprites/backer-only/weapon_special_critical.gif) no-repeat;width:90px;height:90px;margin-left:-12px;margin-top:12px}.weapon_special_1{margin-left:-12px}.broad_armor_special_1,.head_special_1,.slim_armor_special_1{width:90px;height:90px}.head_special_0{background:url(../img/sprites/backer-only/BackerOnly-Equip-ShadeHelmet.gif) no-repeat}.head_special_1{background:url(../img/sprites/backer-only/ContributorOnly-Equip-CrystalHelmet.gif) no-repeat;margin-top:3px}.broad_armor_special_0,.slim_armor_special_0{background:url(../img/sprites/backer-only/BackerOnly-Equip-ShadeArmor.gif) no-repeat}.broad_armor_special_1,.slim_armor_special_1{background:url(../img/sprites/backer-only/ContributorOnly-Equip-CrystalArmor.gif) no-repeat}.shield_special_0{background:url(../img/sprites/backer-only/BackerOnly-Shield-TormentedSkull.gif) no-repeat}.weapon_special_0{background:url(../img/sprites/backer-only/BackerOnly-Weapon-DarkSoulsBlade.gif) no-repeat}.Pet-Wolf-Cerberus{width:105px;height:72px;background:url(../img/sprites/backer-only/BackerOnly-Pet-CerberusPup.gif) no-repeat}.npc_ian{background:url(../img/sprites/npc_ian.gif) no-repeat;width:78px;height:135px}.Gems{display:inline-block;margin-right:5px;border-style:none;margin-left:0;margin-top:2px}.inline-gems{vertical-align:middle;margin-left:0;display:inline-block}.customize-menu .locked{background-color:#727272}.achievement{float:left;clear:right;margin-right:10px}[class*=Mount_Body_],[class*=Mount_Head_]{margin-top:18px}.Pet_Currency_Gem{margin-top:5px;margin-bottom:5px} \ No newline at end of file diff --git a/common/dist/sprites/spritesmith0.css b/common/dist/sprites/spritesmith0.css index 625d4ee07a..adadced17e 100644 --- a/common/dist/sprites/spritesmith0.css +++ b/common/dist/sprites/spritesmith0.css @@ -1 +1,4080 @@ -.achievement-alien{background-image:url(spritesmith0.png);background-position:-1092px -1638px;width:24px;height:26px}.achievement-armor{background-position:-116px -888px}.achievement-armor,.achievement-boot{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-boot{background-position:-1572px -1183px}.achievement-bow{background-position:-621px -1866px}.achievement-bow,.achievement-cactus{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-cactus{background-position:-1729px -937px}.achievement-cake{background-position:-1840px -691px}.achievement-cake,.achievement-cave{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-cave{background-position:-1547px -1210px}.achievement-coffin{background-position:-398px -1923px}.achievement-coffin,.achievement-comment{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-comment{background-position:-1208px -1547px}.achievement-costumeContest{background-position:-1780px -819px}.achievement-costumeContest,.achievement-dilatory{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-dilatory{background-position:-596px -1866px}.achievement-firefox{background-position:-373px -1923px}.achievement-firefox,.achievement-habitBirthday{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-habitBirthday{background-position:-1840px -664px}.achievement-heart{background-position:-1940px -236px}.achievement-heart,.achievement-helm{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-helm{background-position:-348px -1923px}.achievement-karaoke{background-position:-1729px -910px}.achievement-karaoke,.achievement-ninja{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-ninja{background-position:-91px -888px}.achievement-nye{background-position:-1940px -209px}.achievement-nye,.achievement-perfect{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-perfect{background-position:-323px -1923px}.achievement-rat{background-position:-1940px -182px}.achievement-rat,.achievement-shield{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-shield{background-position:-1547px -1183px}.achievement-snowball{background-position:-1183px -1547px}.achievement-snowball,.achievement-spookDust{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-spookDust{background-position:-1840px -637px}.achievement-stoikalm{background-position:-298px -1923px}.achievement-stoikalm,.achievement-sun{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-sun{background-position:-546px -1866px}.achievement-sword{background-position:-273px -1923px}.achievement-sword,.achievement-thermometer{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-thermometer{background-position:-480px -922px}.achievement-tree{background-position:-455px -922px}.achievement-tree,.achievement-triadbingo{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-triadbingo{background-position:-531px -740px}.achievement-valentine{background-position:-506px -740px}.achievement-valentine,.achievement-wolf{background-image:url(spritesmith0.png);width:24px;height:26px}.achievement-wolf{background-position:-571px -1866px}.background_autumn_forest{background-image:url(spritesmith0.png);background-position:-282px -444px;width:140px;height:147px}.background_beach{background-position:0 -148px;width:141px}.background_beach,.background_blacksmithy{background-image:url(spritesmith0.png);height:147px}.background_blacksmithy{background-position:-142px -148px;width:140px}.background_clouds{background-position:-283px 0}.background_clouds,.background_coral_reef{background-image:url(spritesmith0.png);width:140px;height:147px}.background_coral_reef{background-position:0 -296px}.background_crystal_cave{background-position:-283px -148px}.background_crystal_cave,.background_distant_castle{background-image:url(spritesmith0.png);width:140px;height:147px}.background_distant_castle{background-position:-141px -296px}.background_dusty_canyons{background-position:-282px -296px}.background_dusty_canyons,.background_fairy_ring{background-image:url(spritesmith0.png);width:140px;height:147px}.background_fairy_ring{background-position:-424px 0}.background_forest{background-position:0 -444px}.background_forest,.background_frigid_peak{background-image:url(spritesmith0.png);width:140px;height:147px}.background_frigid_peak{background-position:-424px -148px}.background_graveyard{background-position:-141px -444px}.background_graveyard,.background_harvest_feast{background-image:url(spritesmith0.png);width:140px;height:147px}.background_harvest_feast{background-position:-423px -296px}.background_harvest_fields{background-image:url(spritesmith0.png);background-position:0 0;width:141px;height:147px}.background_haunted_house{background-position:-565px 0;width:140px}.background_haunted_house,.background_ice_cave{background-image:url(spritesmith0.png);height:147px}.background_ice_cave{background-position:-565px -148px;width:141px}.background_iceberg{background-position:0 -592px;width:140px}.background_iceberg,.background_open_waters{background-image:url(spritesmith0.png);height:147px}.background_open_waters{background-position:-141px -592px;width:141px}.background_pumpkin_patch{background-position:-423px -444px}.background_pumpkin_patch,.background_seafarer_ship{background-image:url(spritesmith0.png);width:140px;height:147px}.background_seafarer_ship{background-position:-564px -296px}.background_snowy_pines{background-position:-283px -592px}.background_snowy_pines,.background_south_pole{background-image:url(spritesmith0.png);width:140px;height:147px}.background_south_pole{background-position:-706px 0}.background_starry_skies{background-position:-564px -444px}.background_starry_skies,.background_sunset_meadow{background-image:url(spritesmith0.png);width:140px;height:147px}.background_sunset_meadow{background-position:-707px -148px}.background_thunderstorm{background-image:url(spritesmith0.png);background-position:-424px -592px;width:141px;height:147px}.background_twinkly_lights{background-position:0 -740px;width:141px}.background_twinkly_lights,.background_volcano{background-image:url(spritesmith0.png);height:147px}.background_volcano{background-position:-142px 0;width:140px}.hair_beard_1_TRUred{background-image:url(spritesmith0.png);background-position:-273px -922px;width:90px;height:90px}.customize-option.hair_beard_1_TRUred{background-image:url(spritesmith0.png);background-position:-298px -937px;width:60px;height:60px}.hair_beard_1_aurora{background-image:url(spritesmith0.png);background-position:-597px -774px;width:90px;height:90px}.customize-option.hair_beard_1_aurora{background-image:url(spritesmith0.png);background-position:-622px -789px;width:60px;height:60px}.hair_beard_1_black{background-image:url(spritesmith0.png);background-position:0 -979px;width:90px;height:90px}.customize-option.hair_beard_1_black{background-image:url(spritesmith0.png);background-position:-25px -994px;width:60px;height:60px}.hair_beard_1_blond{background-image:url(spritesmith0.png);background-position:-364px -922px;width:90px;height:90px}.customize-option.hair_beard_1_blond{background-image:url(spritesmith0.png);background-position:-389px -937px;width:60px;height:60px}.hair_beard_1_blue{background-image:url(spritesmith0.png);background-position:-887px -455px;width:90px;height:90px}.customize-option.hair_beard_1_blue{background-image:url(spritesmith0.png);background-position:-912px -470px;width:60px;height:60px}.hair_beard_1_brown{background-image:url(spritesmith0.png);background-position:-748px -660px;width:90px;height:90px}.customize-option.hair_beard_1_brown{background-image:url(spritesmith0.png);background-position:-773px -675px;width:60px;height:60px}.hair_beard_1_candycane{background-image:url(spritesmith0.png);background-position:-506px -865px;width:90px;height:90px}.customize-option.hair_beard_1_candycane{background-image:url(spritesmith0.png);background-position:-531px -880px;width:60px;height:60px}.hair_beard_1_candycorn{background-image:url(spritesmith0.png);background-position:-839px -569px;width:90px;height:90px}.customize-option.hair_beard_1_candycorn{background-image:url(spritesmith0.png);background-position:-864px -584px;width:60px;height:60px}.hair_beard_1_festive{background-image:url(spritesmith0.png);background-position:-978px -273px;width:90px;height:90px}.customize-option.hair_beard_1_festive{background-image:url(spritesmith0.png);background-position:-1003px -288px;width:60px;height:60px}.hair_beard_1_frost{background-image:url(spritesmith0.png);background-position:-91px -1013px;width:90px;height:90px}.customize-option.hair_beard_1_frost{background-image:url(spritesmith0.png);background-position:-116px -1028px;width:60px;height:60px}.hair_beard_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-1029px 0;width:90px;height:90px}.customize-option.hair_beard_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-1054px -15px;width:60px;height:60px}.hair_beard_1_green{background-image:url(spritesmith0.png);background-position:-182px -1013px;width:90px;height:90px}.customize-option.hair_beard_1_green{background-image:url(spritesmith0.png);background-position:-207px -1028px;width:60px;height:60px}.hair_beard_1_halloween{background-image:url(spritesmith0.png);background-position:-1030px -91px;width:90px;height:90px}.customize-option.hair_beard_1_halloween{background-image:url(spritesmith0.png);background-position:-1055px -106px;width:60px;height:60px}.hair_beard_1_holly{background-image:url(spritesmith0.png);background-position:-688px -774px;width:90px;height:90px}.customize-option.hair_beard_1_holly{background-image:url(spritesmith0.png);background-position:-713px -789px;width:60px;height:60px}.hair_beard_1_hollygreen{background-image:url(spritesmith0.png);background-position:-978px -364px;width:90px;height:90px}.customize-option.hair_beard_1_hollygreen{background-image:url(spritesmith0.png);background-position:-1003px -379px;width:60px;height:60px}.hair_beard_1_midnight{background-image:url(spritesmith0.png);background-position:-1030px -182px;width:90px;height:90px}.customize-option.hair_beard_1_midnight{background-image:url(spritesmith0.png);background-position:-1055px -197px;width:60px;height:60px}.hair_beard_1_pblue{background-image:url(spritesmith0.png);background-position:-273px -1013px;width:90px;height:90px}.customize-option.hair_beard_1_pblue{background-image:url(spritesmith0.png);background-position:-298px -1028px;width:60px;height:60px}.hair_beard_1_peppermint{background-image:url(spritesmith0.png);background-position:-597px -865px;width:90px;height:90px}.customize-option.hair_beard_1_peppermint{background-image:url(spritesmith0.png);background-position:-622px -880px;width:60px;height:60px}.hair_beard_1_pgreen{background-image:url(spritesmith0.png);background-position:-455px -956px;width:90px;height:90px}.customize-option.hair_beard_1_pgreen{background-image:url(spritesmith0.png);background-position:-480px -971px;width:60px;height:60px}.hair_beard_1_porange{background-image:url(spritesmith0.png);background-position:-839px -660px;width:90px;height:90px}.customize-option.hair_beard_1_porange{background-image:url(spritesmith0.png);background-position:-864px -675px;width:60px;height:60px}.hair_beard_1_ppink{background-image:url(spritesmith0.png);background-position:0 -1070px;width:90px;height:90px}.customize-option.hair_beard_1_ppink{background-image:url(spritesmith0.png);background-position:-25px -1085px;width:60px;height:60px}.hair_beard_1_ppurple{background-image:url(spritesmith0.png);background-position:-364px -1013px;width:90px;height:90px}.customize-option.hair_beard_1_ppurple{background-image:url(spritesmith0.png);background-position:-389px -1028px;width:60px;height:60px}.hair_beard_1_pumpkin{background-image:url(spritesmith0.png);background-position:-930px -546px;width:90px;height:90px}.customize-option.hair_beard_1_pumpkin{background-image:url(spritesmith0.png);background-position:-955px -561px;width:60px;height:60px}.hair_beard_1_purple{background-image:url(spritesmith0.png);background-position:-978px -455px;width:90px;height:90px}.customize-option.hair_beard_1_purple{background-image:url(spritesmith0.png);background-position:-1003px -470px;width:60px;height:60px}.hair_beard_1_pyellow{background-image:url(spritesmith0.png);background-position:-779px -751px;width:90px;height:90px}.customize-option.hair_beard_1_pyellow{background-image:url(spritesmith0.png);background-position:-804px -766px;width:60px;height:60px}.hair_beard_1_rainbow{background-image:url(spritesmith0.png);background-position:-546px -956px;width:90px;height:90px}.customize-option.hair_beard_1_rainbow{background-image:url(spritesmith0.png);background-position:-571px -971px;width:60px;height:60px}.hair_beard_1_red{background-image:url(spritesmith0.png);background-position:-1069px -273px;width:90px;height:90px}.customize-option.hair_beard_1_red{background-image:url(spritesmith0.png);background-position:-1094px -288px;width:60px;height:60px}.hair_beard_1_snowy{background-image:url(spritesmith0.png);background-position:-688px -865px;width:90px;height:90px}.customize-option.hair_beard_1_snowy{background-image:url(spritesmith0.png);background-position:-713px -880px;width:60px;height:60px}.hair_beard_1_white{background-image:url(spritesmith0.png);background-position:-91px -1104px;width:90px;height:90px}.customize-option.hair_beard_1_white{background-image:url(spritesmith0.png);background-position:-116px -1119px;width:60px;height:60px}.hair_beard_1_winternight{background-image:url(spritesmith0.png);background-position:-182px -1104px;width:90px;height:90px}.customize-option.hair_beard_1_winternight{background-image:url(spritesmith0.png);background-position:-207px -1119px;width:60px;height:60px}.hair_beard_1_winterstar{background-image:url(spritesmith0.png);background-position:-1120px 0;width:90px;height:90px}.customize-option.hair_beard_1_winterstar{background-image:url(spritesmith0.png);background-position:-1145px -15px;width:60px;height:60px}.hair_beard_1_yellow{background-image:url(spritesmith0.png);background-position:-1121px -91px;width:90px;height:90px}.customize-option.hair_beard_1_yellow{background-image:url(spritesmith0.png);background-position:-1146px -106px;width:60px;height:60px}.hair_beard_1_zombie{background-image:url(spritesmith0.png);background-position:-930px -637px;width:90px;height:90px}.customize-option.hair_beard_1_zombie{background-image:url(spritesmith0.png);background-position:-955px -652px;width:60px;height:60px}.hair_beard_2_TRUred{background-image:url(spritesmith0.png);background-position:-1069px -364px;width:90px;height:90px}.customize-option.hair_beard_2_TRUred{background-image:url(spritesmith0.png);background-position:-1094px -379px;width:60px;height:60px}.hair_beard_2_aurora{background-image:url(spritesmith0.png);background-position:-1121px -182px;width:90px;height:90px}.customize-option.hair_beard_2_aurora{background-image:url(spritesmith0.png);background-position:-1146px -197px;width:60px;height:60px}.hair_beard_2_black{background-image:url(spritesmith0.png);background-position:-273px -1104px;width:90px;height:90px}.customize-option.hair_beard_2_black{background-image:url(spritesmith0.png);background-position:-298px -1119px;width:60px;height:60px}.hair_beard_2_blond{background-image:url(spritesmith0.png);background-position:-455px -1047px;width:90px;height:90px}.customize-option.hair_beard_2_blond{background-image:url(spritesmith0.png);background-position:-480px -1062px;width:60px;height:60px}.hair_beard_2_blue{background-image:url(spritesmith0.png);background-position:-779px -842px;width:90px;height:90px}.customize-option.hair_beard_2_blue{background-image:url(spritesmith0.png);background-position:-804px -857px;width:60px;height:60px}.hair_beard_2_brown{background-image:url(spritesmith0.png);background-position:-637px -956px;width:90px;height:90px}.customize-option.hair_beard_2_brown{background-image:url(spritesmith0.png);background-position:-662px -971px;width:60px;height:60px}.hair_beard_2_candycane{background-image:url(spritesmith0.png);background-position:-870px -751px;width:90px;height:90px}.customize-option.hair_beard_2_candycane{background-image:url(spritesmith0.png);background-position:-895px -766px;width:60px;height:60px}.hair_beard_2_candycorn{background-image:url(spritesmith0.png);background-position:-1021px -546px;width:90px;height:90px}.customize-option.hair_beard_2_candycorn{background-image:url(spritesmith0.png);background-position:-1046px -561px;width:60px;height:60px}.hair_beard_2_festive{background-image:url(spritesmith0.png);background-position:0 -1161px;width:90px;height:90px}.customize-option.hair_beard_2_festive{background-image:url(spritesmith0.png);background-position:-25px -1176px;width:60px;height:60px}.hair_beard_2_frost{background-image:url(spritesmith0.png);background-position:-1069px -455px;width:90px;height:90px}.customize-option.hair_beard_2_frost{background-image:url(spritesmith0.png);background-position:-1094px -470px;width:60px;height:60px}.hair_beard_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-364px -1104px;width:90px;height:90px}.customize-option.hair_beard_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-389px -1119px;width:60px;height:60px}.hair_beard_2_green{background-image:url(spritesmith0.png);background-position:-546px -1047px;width:90px;height:90px}.customize-option.hair_beard_2_green{background-image:url(spritesmith0.png);background-position:-571px -1062px;width:60px;height:60px}.hair_beard_2_halloween{background-image:url(spritesmith0.png);background-position:-1160px -273px;width:90px;height:90px}.customize-option.hair_beard_2_halloween{background-image:url(spritesmith0.png);background-position:-1185px -288px;width:60px;height:60px}.hair_beard_2_holly{background-image:url(spritesmith0.png);background-position:-91px -1195px;width:90px;height:90px}.customize-option.hair_beard_2_holly{background-image:url(spritesmith0.png);background-position:-116px -1210px;width:60px;height:60px}.hair_beard_2_hollygreen{background-image:url(spritesmith0.png);background-position:-728px -956px;width:90px;height:90px}.customize-option.hair_beard_2_hollygreen{background-image:url(spritesmith0.png);background-position:-753px -971px;width:60px;height:60px}.hair_beard_2_midnight{background-image:url(spritesmith0.png);background-position:-1021px -637px;width:90px;height:90px}.customize-option.hair_beard_2_midnight{background-image:url(spritesmith0.png);background-position:-1046px -652px;width:60px;height:60px}.hair_beard_2_pblue{background-image:url(spritesmith0.png);background-position:-961px -728px;width:90px;height:90px}.customize-option.hair_beard_2_pblue{background-image:url(spritesmith0.png);background-position:-986px -743px;width:60px;height:60px}.hair_beard_2_peppermint{background-image:url(spritesmith0.png);background-position:-182px -1195px;width:90px;height:90px}.customize-option.hair_beard_2_peppermint{background-image:url(spritesmith0.png);background-position:-207px -1210px;width:60px;height:60px}.hair_beard_2_pgreen{background-image:url(spritesmith0.png);background-position:-870px -842px;width:90px;height:90px}.customize-option.hair_beard_2_pgreen{background-image:url(spritesmith0.png);background-position:-895px -857px;width:60px;height:60px}.hair_beard_2_porange{background-image:url(spritesmith0.png);background-position:-1211px 0;width:90px;height:90px}.customize-option.hair_beard_2_porange{background-image:url(spritesmith0.png);background-position:-1236px -15px;width:60px;height:60px}.hair_beard_2_ppink{background-image:url(spritesmith0.png);background-position:-1212px -91px;width:90px;height:90px}.customize-option.hair_beard_2_ppink{background-image:url(spritesmith0.png);background-position:-1237px -106px;width:60px;height:60px}.hair_beard_2_ppurple{background-image:url(spritesmith0.png);background-position:-1160px -364px;width:90px;height:90px}.customize-option.hair_beard_2_ppurple{background-image:url(spritesmith0.png);background-position:-1185px -379px;width:60px;height:60px}.hair_beard_2_pumpkin{background-image:url(spritesmith0.png);background-position:-637px -1047px;width:90px;height:90px}.customize-option.hair_beard_2_pumpkin{background-image:url(spritesmith0.png);background-position:-662px -1062px;width:60px;height:60px}.hair_beard_2_purple{background-image:url(spritesmith0.png);background-position:-1212px -182px;width:90px;height:90px}.customize-option.hair_beard_2_purple{background-image:url(spritesmith0.png);background-position:-1237px -197px;width:60px;height:60px}.hair_beard_2_pyellow{background-image:url(spritesmith0.png);background-position:-455px -1138px;width:90px;height:90px}.customize-option.hair_beard_2_pyellow{background-image:url(spritesmith0.png);background-position:-480px -1153px;width:60px;height:60px}.hair_beard_2_rainbow{background-image:url(spritesmith0.png);background-position:-273px -1195px;width:90px;height:90px}.customize-option.hair_beard_2_rainbow{background-image:url(spritesmith0.png);background-position:-298px -1210px;width:60px;height:60px}.hair_beard_2_red{background-image:url(spritesmith0.png);background-position:-1112px -546px;width:90px;height:90px}.customize-option.hair_beard_2_red{background-image:url(spritesmith0.png);background-position:-1137px -561px;width:60px;height:60px}.hair_beard_2_snowy{background-image:url(spritesmith0.png);background-position:-819px -933px;width:90px;height:90px}.customize-option.hair_beard_2_snowy{background-image:url(spritesmith0.png);background-position:-844px -948px;width:60px;height:60px}.hair_beard_2_white{background-image:url(spritesmith0.png);background-position:-1160px -455px;width:90px;height:90px}.customize-option.hair_beard_2_white{background-image:url(spritesmith0.png);background-position:-1185px -470px;width:60px;height:60px}.hair_beard_2_winternight{background-image:url(spritesmith0.png);background-position:-364px -1195px;width:90px;height:90px}.customize-option.hair_beard_2_winternight{background-image:url(spritesmith0.png);background-position:-389px -1210px;width:60px;height:60px}.hair_beard_2_winterstar{background-image:url(spritesmith0.png);background-position:0 -1252px;width:90px;height:90px}.customize-option.hair_beard_2_winterstar{background-image:url(spritesmith0.png);background-position:-25px -1267px;width:60px;height:60px}.hair_beard_2_yellow{background-image:url(spritesmith0.png);background-position:-546px -1138px;width:90px;height:90px}.customize-option.hair_beard_2_yellow{background-image:url(spritesmith0.png);background-position:-571px -1153px;width:60px;height:60px}.hair_beard_2_zombie{background-image:url(spritesmith0.png);background-position:-961px -819px;width:90px;height:90px}.customize-option.hair_beard_2_zombie{background-image:url(spritesmith0.png);background-position:-986px -834px;width:60px;height:60px}.hair_beard_3_TRUred{background-image:url(spritesmith0.png);background-position:-728px -1047px;width:90px;height:90px}.customize-option.hair_beard_3_TRUred{background-image:url(spritesmith0.png);background-position:-753px -1062px;width:60px;height:60px}.hair_beard_3_aurora{background-image:url(spritesmith0.png);background-position:-1052px -728px;width:90px;height:90px}.customize-option.hair_beard_3_aurora{background-image:url(spritesmith0.png);background-position:-1077px -743px;width:60px;height:60px}.hair_beard_3_black{background-image:url(spritesmith0.png);background-position:-1251px -273px;width:90px;height:90px}.customize-option.hair_beard_3_black{background-image:url(spritesmith0.png);background-position:-1276px -288px;width:60px;height:60px}.hair_beard_3_blond{background-image:url(spritesmith0.png);background-position:-1112px -637px;width:90px;height:90px}.customize-option.hair_beard_3_blond{background-image:url(spritesmith0.png);background-position:-1137px -652px;width:60px;height:60px}.hair_beard_3_blue{background-image:url(spritesmith0.png);background-position:-91px -1286px;width:90px;height:90px}.customize-option.hair_beard_3_blue{background-image:url(spritesmith0.png);background-position:-116px -1301px;width:60px;height:60px}.hair_beard_3_brown{background-image:url(spritesmith0.png);background-position:-182px -1286px;width:90px;height:90px}.customize-option.hair_beard_3_brown{background-image:url(spritesmith0.png);background-position:-207px -1301px;width:60px;height:60px}.hair_beard_3_candycane{background-image:url(spritesmith0.png);background-position:-1302px 0;width:90px;height:90px}.customize-option.hair_beard_3_candycane{background-image:url(spritesmith0.png);background-position:-1327px -15px;width:60px;height:60px}.hair_beard_3_candycorn{background-image:url(spritesmith0.png);background-position:-1251px -364px;width:90px;height:90px}.customize-option.hair_beard_3_candycorn{background-image:url(spritesmith0.png);background-position:-1276px -379px;width:60px;height:60px}.hair_beard_3_festive{background-image:url(spritesmith0.png);background-position:-910px -933px;width:90px;height:90px}.customize-option.hair_beard_3_festive{background-image:url(spritesmith0.png);background-position:-935px -948px;width:60px;height:60px}.hair_beard_3_frost{background-image:url(spritesmith0.png);background-position:-637px -1138px;width:90px;height:90px}.customize-option.hair_beard_3_frost{background-image:url(spritesmith0.png);background-position:-662px -1153px;width:60px;height:60px}.hair_beard_3_ghostwhite{background-image:url(spritesmith0.png);background-position:-1303px -91px;width:90px;height:90px}.customize-option.hair_beard_3_ghostwhite{background-image:url(spritesmith0.png);background-position:-1328px -106px;width:60px;height:60px}.hair_beard_3_green{background-image:url(spritesmith0.png);background-position:-455px -1229px;width:90px;height:90px}.customize-option.hair_beard_3_green{background-image:url(spritesmith0.png);background-position:-480px -1244px;width:60px;height:60px}.hair_beard_3_halloween{background-image:url(spritesmith0.png);background-position:-819px -1024px;width:90px;height:90px}.customize-option.hair_beard_3_halloween{background-image:url(spritesmith0.png);background-position:-844px -1039px;width:60px;height:60px}.hair_beard_3_holly{background-image:url(spritesmith0.png);background-position:-273px -1286px;width:90px;height:90px}.customize-option.hair_beard_3_holly{background-image:url(spritesmith0.png);background-position:-298px -1301px;width:60px;height:60px}.hair_beard_3_hollygreen{background-image:url(spritesmith0.png);background-position:-1303px -182px;width:90px;height:90px}.customize-option.hair_beard_3_hollygreen{background-image:url(spritesmith0.png);background-position:-1328px -197px;width:60px;height:60px}.hair_beard_3_midnight{background-image:url(spritesmith0.png);background-position:-1203px -546px;width:90px;height:90px}.customize-option.hair_beard_3_midnight{background-image:url(spritesmith0.png);background-position:-1228px -561px;width:60px;height:60px}.hair_beard_3_pblue{background-image:url(spritesmith0.png);background-position:-1251px -455px;width:90px;height:90px}.customize-option.hair_beard_3_pblue{background-image:url(spritesmith0.png);background-position:-1276px -470px;width:60px;height:60px}.hair_beard_3_peppermint{background-image:url(spritesmith0.png);background-position:-1052px -819px;width:90px;height:90px}.customize-option.hair_beard_3_peppermint{background-image:url(spritesmith0.png);background-position:-1077px -834px;width:60px;height:60px}.hair_beard_3_pgreen{background-image:url(spritesmith0.png);background-position:-364px -1286px;width:90px;height:90px}.customize-option.hair_beard_3_pgreen{background-image:url(spritesmith0.png);background-position:-389px -1301px;width:60px;height:60px}.hair_beard_3_porange{background-image:url(spritesmith0.png);background-position:0 -1343px;width:90px;height:90px}.customize-option.hair_beard_3_porange{background-image:url(spritesmith0.png);background-position:-25px -1358px;width:60px;height:60px}.hair_beard_3_ppink{background-image:url(spritesmith0.png);background-position:-546px -1229px;width:90px;height:90px}.customize-option.hair_beard_3_ppink{background-image:url(spritesmith0.png);background-position:-571px -1244px;width:60px;height:60px}.hair_beard_3_ppurple{background-image:url(spritesmith0.png);background-position:-728px -1138px;width:90px;height:90px}.customize-option.hair_beard_3_ppurple{background-image:url(spritesmith0.png);background-position:-753px -1153px;width:60px;height:60px}.hair_beard_3_pumpkin{background-image:url(spritesmith0.png);background-position:-1001px -910px;width:90px;height:90px}.customize-option.hair_beard_3_pumpkin{background-image:url(spritesmith0.png);background-position:-1026px -925px;width:60px;height:60px}.hair_beard_3_purple{background-image:url(spritesmith0.png);background-position:-1143px -728px;width:90px;height:90px}.customize-option.hair_beard_3_purple{background-image:url(spritesmith0.png);background-position:-1168px -743px;width:60px;height:60px}.hair_beard_3_pyellow{background-image:url(spritesmith0.png);background-position:-1203px -637px;width:90px;height:90px}.customize-option.hair_beard_3_pyellow{background-image:url(spritesmith0.png);background-position:-1228px -652px;width:60px;height:60px}.hair_beard_3_rainbow{background-image:url(spritesmith0.png);background-position:-1342px -273px;width:90px;height:90px}.customize-option.hair_beard_3_rainbow{background-image:url(spritesmith0.png);background-position:-1367px -288px;width:60px;height:60px}.hair_beard_3_red{background-image:url(spritesmith0.png);background-position:-910px -1024px;width:90px;height:90px}.customize-option.hair_beard_3_red{background-image:url(spritesmith0.png);background-position:-935px -1039px;width:60px;height:60px}.hair_beard_3_snowy{background-image:url(spritesmith0.png);background-position:-91px -1377px;width:90px;height:90px}.customize-option.hair_beard_3_snowy{background-image:url(spritesmith0.png);background-position:-116px -1392px;width:60px;height:60px}.hair_beard_3_white{background-image:url(spritesmith0.png);background-position:-819px -1115px;width:90px;height:90px}.customize-option.hair_beard_3_white{background-image:url(spritesmith0.png);background-position:-844px -1130px;width:60px;height:60px}.hair_beard_3_winternight{background-image:url(spritesmith0.png);background-position:-637px -1229px;width:90px;height:90px}.customize-option.hair_beard_3_winternight{background-image:url(spritesmith0.png);background-position:-662px -1244px;width:60px;height:60px}.hair_beard_3_winterstar{background-image:url(spritesmith0.png);background-position:-182px -1377px;width:90px;height:90px}.customize-option.hair_beard_3_winterstar{background-image:url(spritesmith0.png);background-position:-207px -1392px;width:60px;height:60px}.hair_beard_3_yellow{background-image:url(spritesmith0.png);background-position:-1342px -364px;width:90px;height:90px}.customize-option.hair_beard_3_yellow{background-image:url(spritesmith0.png);background-position:-1367px -379px;width:60px;height:60px}.hair_beard_3_zombie{background-image:url(spritesmith0.png);background-position:-1393px 0;width:90px;height:90px}.customize-option.hair_beard_3_zombie{background-image:url(spritesmith0.png);background-position:-1418px -15px;width:60px;height:60px}.hair_mustache_1_TRUred{background-image:url(spritesmith0.png);background-position:-455px -1320px;width:90px;height:90px}.customize-option.hair_mustache_1_TRUred{background-image:url(spritesmith0.png);background-position:-480px -1335px;width:60px;height:60px}.hair_mustache_1_aurora{background-image:url(spritesmith0.png);background-position:-1394px -91px;width:90px;height:90px}.customize-option.hair_mustache_1_aurora{background-image:url(spritesmith0.png);background-position:-1419px -106px;width:60px;height:60px}.hair_mustache_1_black{background-image:url(spritesmith0.png);background-position:-273px -1377px;width:90px;height:90px}.customize-option.hair_mustache_1_black{background-image:url(spritesmith0.png);background-position:-298px -1392px;width:60px;height:60px}.hair_mustache_1_blond{background-image:url(spritesmith0.png);background-position:-1294px -546px;width:90px;height:90px}.customize-option.hair_mustache_1_blond{background-image:url(spritesmith0.png);background-position:-1319px -561px;width:60px;height:60px}.hair_mustache_1_blue{background-image:url(spritesmith0.png);background-position:-1394px -182px;width:90px;height:90px}.customize-option.hair_mustache_1_blue{background-image:url(spritesmith0.png);background-position:-1419px -197px;width:60px;height:60px}.hair_mustache_1_brown{background-image:url(spritesmith0.png);background-position:-1143px -819px;width:90px;height:90px}.customize-option.hair_mustache_1_brown{background-image:url(spritesmith0.png);background-position:-1168px -834px;width:60px;height:60px}.hair_mustache_1_candycane{background-image:url(spritesmith0.png);background-position:-1001px -1001px;width:90px;height:90px}.customize-option.hair_mustache_1_candycane{background-image:url(spritesmith0.png);background-position:-1026px -1016px;width:60px;height:60px}.hair_mustache_1_candycorn{background-image:url(spritesmith0.png);background-position:-1342px -455px;width:90px;height:90px}.customize-option.hair_mustache_1_candycorn{background-image:url(spritesmith0.png);background-position:-1367px -470px;width:60px;height:60px}.hair_mustache_1_festive{background-image:url(spritesmith0.png);background-position:-1092px -910px;width:90px;height:90px}.customize-option.hair_mustache_1_festive{background-image:url(spritesmith0.png);background-position:-1117px -925px;width:60px;height:60px}.hair_mustache_1_frost{background-image:url(spritesmith0.png);background-position:-364px -1377px;width:90px;height:90px}.customize-option.hair_mustache_1_frost{background-image:url(spritesmith0.png);background-position:-389px -1392px;width:60px;height:60px}.hair_mustache_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-728px -1229px;width:90px;height:90px}.customize-option.hair_mustache_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-753px -1244px;width:60px;height:60px}.hair_mustache_1_green{background-image:url(spritesmith0.png);background-position:-546px -1320px;width:90px;height:90px}.customize-option.hair_mustache_1_green{background-image:url(spritesmith0.png);background-position:-571px -1335px;width:60px;height:60px}.hair_mustache_1_halloween{background-image:url(spritesmith0.png);background-position:-1234px -728px;width:90px;height:90px}.customize-option.hair_mustache_1_halloween{background-image:url(spritesmith0.png);background-position:-1259px -743px;width:60px;height:60px}.hair_mustache_1_holly{background-image:url(spritesmith0.png);background-position:0 -1434px;width:90px;height:90px}.customize-option.hair_mustache_1_holly{background-image:url(spritesmith0.png);background-position:-25px -1449px;width:60px;height:60px}.hair_mustache_1_hollygreen{background-image:url(spritesmith0.png);background-position:-910px -1115px;width:90px;height:90px}.customize-option.hair_mustache_1_hollygreen{background-image:url(spritesmith0.png);background-position:-935px -1130px;width:60px;height:60px}.hair_mustache_1_midnight{background-image:url(spritesmith0.png);background-position:-1294px -637px;width:90px;height:90px}.customize-option.hair_mustache_1_midnight{background-image:url(spritesmith0.png);background-position:-1319px -652px;width:60px;height:60px}.hair_mustache_1_pblue{background-image:url(spritesmith0.png);background-position:-819px -1206px;width:90px;height:90px}.customize-option.hair_mustache_1_pblue{background-image:url(spritesmith0.png);background-position:-844px -1221px;width:60px;height:60px}.hair_mustache_1_peppermint{background-image:url(spritesmith0.png);background-position:-1433px -273px;width:90px;height:90px}.customize-option.hair_mustache_1_peppermint{background-image:url(spritesmith0.png);background-position:-1458px -288px;width:60px;height:60px}.hair_mustache_1_pgreen{background-image:url(spritesmith0.png);background-position:-637px -1320px;width:90px;height:90px}.customize-option.hair_mustache_1_pgreen{background-image:url(spritesmith0.png);background-position:-662px -1335px;width:60px;height:60px}.hair_mustache_1_porange{background-image:url(spritesmith0.png);background-position:-91px -1468px;width:90px;height:90px}.customize-option.hair_mustache_1_porange{background-image:url(spritesmith0.png);background-position:-116px -1483px;width:60px;height:60px}.hair_mustache_1_ppink{background-image:url(spritesmith0.png);background-position:-1433px -364px;width:90px;height:90px}.customize-option.hair_mustache_1_ppink{background-image:url(spritesmith0.png);background-position:-1458px -379px;width:60px;height:60px}.hair_mustache_1_ppurple{background-image:url(spritesmith0.png);background-position:-182px -1468px;width:90px;height:90px}.customize-option.hair_mustache_1_ppurple{background-image:url(spritesmith0.png);background-position:-207px -1483px;width:60px;height:60px}.hair_mustache_1_pumpkin{background-image:url(spritesmith0.png);background-position:-1234px -819px;width:90px;height:90px}.customize-option.hair_mustache_1_pumpkin{background-image:url(spritesmith0.png);background-position:-1259px -834px;width:60px;height:60px}.hair_mustache_1_purple{background-image:url(spritesmith0.png);background-position:-1001px -1092px;width:90px;height:90px}.customize-option.hair_mustache_1_purple{background-image:url(spritesmith0.png);background-position:-1026px -1107px;width:60px;height:60px}.hair_mustache_1_pyellow{background-image:url(spritesmith0.png);background-position:-1092px -1001px;width:90px;height:90px}.customize-option.hair_mustache_1_pyellow{background-image:url(spritesmith0.png);background-position:-1117px -1016px;width:60px;height:60px}.hair_mustache_1_rainbow{background-image:url(spritesmith0.png);background-position:-455px -1411px;width:90px;height:90px}.customize-option.hair_mustache_1_rainbow{background-image:url(spritesmith0.png);background-position:-480px -1426px;width:60px;height:60px}.hair_mustache_1_red{background-image:url(spritesmith0.png);background-position:-1484px 0;width:90px;height:90px}.customize-option.hair_mustache_1_red{background-image:url(spritesmith0.png);background-position:-1509px -15px;width:60px;height:60px}.hair_mustache_1_snowy{background-image:url(spritesmith0.png);background-position:-142px -740px;width:90px;height:90px}.customize-option.hair_mustache_1_snowy{background-image:url(spritesmith0.png);background-position:-167px -755px;width:60px;height:60px}.hair_mustache_1_white{background-image:url(spritesmith0.png);background-position:-1385px -546px;width:90px;height:90px}.customize-option.hair_mustache_1_white{background-image:url(spritesmith0.png);background-position:-1410px -561px;width:60px;height:60px}.hair_mustache_1_winternight{background-image:url(spritesmith0.png);background-position:-1183px -910px;width:90px;height:90px}.customize-option.hair_mustache_1_winternight{background-image:url(spritesmith0.png);background-position:-1208px -925px;width:60px;height:60px}.hair_mustache_1_winterstar{background-image:url(spritesmith0.png);background-position:-273px -1468px;width:90px;height:90px}.customize-option.hair_mustache_1_winterstar{background-image:url(spritesmith0.png);background-position:-298px -1483px;width:60px;height:60px}.hair_mustache_1_yellow{background-image:url(spritesmith0.png);background-position:-1485px -182px;width:90px;height:90px}.customize-option.hair_mustache_1_yellow{background-image:url(spritesmith0.png);background-position:-1510px -197px;width:60px;height:60px}.hair_mustache_1_zombie{background-image:url(spritesmith0.png);background-position:-1433px -455px;width:90px;height:90px}.customize-option.hair_mustache_1_zombie{background-image:url(spritesmith0.png);background-position:-1458px -470px;width:60px;height:60px}.hair_mustache_2_TRUred{background-image:url(spritesmith0.png);background-position:-728px -1320px;width:90px;height:90px}.customize-option.hair_mustache_2_TRUred{background-image:url(spritesmith0.png);background-position:-753px -1335px;width:60px;height:60px}.hair_mustache_2_aurora{background-image:url(spritesmith0.png);background-position:-910px -1206px;width:90px;height:90px}.customize-option.hair_mustache_2_aurora{background-image:url(spritesmith0.png);background-position:-935px -1221px;width:60px;height:60px}.hair_mustache_2_black{background-image:url(spritesmith0.png);background-position:-1325px -728px;width:90px;height:90px}.customize-option.hair_mustache_2_black{background-image:url(spritesmith0.png);background-position:-1350px -743px;width:60px;height:60px}.hair_mustache_2_blond{background-image:url(spritesmith0.png);background-position:-364px -1468px;width:90px;height:90px}.customize-option.hair_mustache_2_blond{background-image:url(spritesmith0.png);background-position:-389px -1483px;width:60px;height:60px}.hair_mustache_2_blue{background-image:url(spritesmith0.png);background-position:-546px -1411px;width:90px;height:90px}.customize-option.hair_mustache_2_blue{background-image:url(spritesmith0.png);background-position:-571px -1426px;width:60px;height:60px}.hair_mustache_2_brown{background-image:url(spritesmith0.png);background-position:-1385px -637px;width:90px;height:90px}.customize-option.hair_mustache_2_brown{background-image:url(spritesmith0.png);background-position:-1410px -652px;width:60px;height:60px}.hair_mustache_2_candycane{background-image:url(spritesmith0.png);background-position:0 -1525px;width:90px;height:90px}.customize-option.hair_mustache_2_candycane{background-image:url(spritesmith0.png);background-position:-25px -1540px;width:60px;height:60px}.hair_mustache_2_candycorn{background-image:url(spritesmith0.png);background-position:-819px -1297px;width:90px;height:90px}.customize-option.hair_mustache_2_candycorn{background-image:url(spritesmith0.png);background-position:-844px -1312px;width:60px;height:60px}.hair_mustache_2_festive{background-image:url(spritesmith0.png);background-position:-1092px -1092px;width:90px;height:90px}.customize-option.hair_mustache_2_festive{background-image:url(spritesmith0.png);background-position:-1117px -1107px;width:60px;height:60px}.hair_mustache_2_frost{background-image:url(spritesmith0.png);background-position:-637px -1411px;width:90px;height:90px}.customize-option.hair_mustache_2_frost{background-image:url(spritesmith0.png);background-position:-662px -1426px;width:60px;height:60px}.hair_mustache_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-1524px -273px;width:90px;height:90px}.customize-option.hair_mustache_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-1549px -288px;width:60px;height:60px}.hair_mustache_2_green{background-image:url(spritesmith0.png);background-position:-1001px -1183px;width:90px;height:90px}.customize-option.hair_mustache_2_green{background-image:url(spritesmith0.png);background-position:-1026px -1198px;width:60px;height:60px}.hair_mustache_2_halloween{background-image:url(spritesmith0.png);background-position:-1183px -1001px;width:90px;height:90px}.customize-option.hair_mustache_2_halloween{background-image:url(spritesmith0.png);background-position:-1208px -1016px;width:60px;height:60px}.hair_mustache_2_holly{background-image:url(spritesmith0.png);background-position:-1325px -819px;width:90px;height:90px}.customize-option.hair_mustache_2_holly{background-image:url(spritesmith0.png);background-position:-1350px -834px;width:60px;height:60px}.hair_mustache_2_hollygreen{background-image:url(spritesmith0.png);background-position:-91px -1559px;width:90px;height:90px}.customize-option.hair_mustache_2_hollygreen{background-image:url(spritesmith0.png);background-position:-116px -1574px;width:60px;height:60px}.hair_mustache_2_midnight{background-image:url(spritesmith0.png);background-position:-1274px -910px;width:90px;height:90px}.customize-option.hair_mustache_2_midnight{background-image:url(spritesmith0.png);background-position:-1299px -925px;width:60px;height:60px}.hair_mustache_2_pblue{background-image:url(spritesmith0.png);background-position:-1524px -364px;width:90px;height:90px}.customize-option.hair_mustache_2_pblue{background-image:url(spritesmith0.png);background-position:-1549px -379px;width:60px;height:60px}.hair_mustache_2_peppermint{background-image:url(spritesmith0.png);background-position:-455px -1502px;width:90px;height:90px}.customize-option.hair_mustache_2_peppermint{background-image:url(spritesmith0.png);background-position:-480px -1517px;width:60px;height:60px}.hair_mustache_2_pgreen{background-image:url(spritesmith0.png);background-position:-182px -1559px;width:90px;height:90px}.customize-option.hair_mustache_2_pgreen{background-image:url(spritesmith0.png);background-position:-207px -1574px;width:60px;height:60px}.hair_mustache_2_porange{background-image:url(spritesmith0.png);background-position:-1476px -546px;width:90px;height:90px}.customize-option.hair_mustache_2_porange{background-image:url(spritesmith0.png);background-position:-1501px -561px;width:60px;height:60px}.hair_mustache_2_ppink{background-image:url(spritesmith0.png);background-position:-1575px 0;width:90px;height:90px}.customize-option.hair_mustache_2_ppink{background-image:url(spritesmith0.png);background-position:-1600px -15px;width:60px;height:60px}.hair_mustache_2_ppurple{background-image:url(spritesmith0.png);background-position:-1576px -91px;width:90px;height:90px}.customize-option.hair_mustache_2_ppurple{background-image:url(spritesmith0.png);background-position:-1601px -106px;width:60px;height:60px}.hair_mustache_2_pumpkin{background-image:url(spritesmith0.png);background-position:-273px -1559px;width:90px;height:90px}.customize-option.hair_mustache_2_pumpkin{background-image:url(spritesmith0.png);background-position:-298px -1574px;width:60px;height:60px}.hair_mustache_2_purple{background-image:url(spritesmith0.png);background-position:-910px -1297px;width:90px;height:90px}.customize-option.hair_mustache_2_purple{background-image:url(spritesmith0.png);background-position:-935px -1312px;width:60px;height:60px}.hair_mustache_2_pyellow{background-image:url(spritesmith0.png);background-position:-1576px -182px;width:90px;height:90px}.customize-option.hair_mustache_2_pyellow{background-image:url(spritesmith0.png);background-position:-1601px -197px;width:60px;height:60px}.hair_mustache_2_rainbow{background-image:url(spritesmith0.png);background-position:-728px -1411px;width:90px;height:90px}.customize-option.hair_mustache_2_rainbow{background-image:url(spritesmith0.png);background-position:-753px -1426px;width:60px;height:60px}.hair_mustache_2_red{background-image:url(spritesmith0.png);background-position:-1524px -455px;width:90px;height:90px}.customize-option.hair_mustache_2_red{background-image:url(spritesmith0.png);background-position:-1549px -470px;width:60px;height:60px}.hair_mustache_2_snowy{background-image:url(spritesmith0.png);background-position:-1416px -728px;width:90px;height:90px}.customize-option.hair_mustache_2_snowy{background-image:url(spritesmith0.png);background-position:-1441px -743px;width:60px;height:60px}.hair_mustache_2_white{background-image:url(spritesmith0.png);background-position:-546px -1502px;width:90px;height:90px}.customize-option.hair_mustache_2_white{background-image:url(spritesmith0.png);background-position:-571px -1517px;width:60px;height:60px}.hair_mustache_2_winternight{background-image:url(spritesmith0.png);background-position:-364px -1559px;width:90px;height:90px}.customize-option.hair_mustache_2_winternight{background-image:url(spritesmith0.png);background-position:-389px -1574px;width:60px;height:60px}.hair_mustache_2_winterstar{background-image:url(spritesmith0.png);background-position:-1476px -637px;width:90px;height:90px}.customize-option.hair_mustache_2_winterstar{background-image:url(spritesmith0.png);background-position:-1501px -652px;width:60px;height:60px}.hair_mustache_2_yellow{background-image:url(spritesmith0.png);background-position:-1092px -1183px;width:90px;height:90px}.customize-option.hair_mustache_2_yellow{background-image:url(spritesmith0.png);background-position:-1117px -1198px;width:60px;height:60px}.hair_mustache_2_zombie{background-image:url(spritesmith0.png);background-position:-1183px -1092px;width:90px;height:90px}.customize-option.hair_mustache_2_zombie{background-image:url(spritesmith0.png);background-position:-1208px -1107px;width:60px;height:60px}.hair_flower_1{background-image:url(spritesmith0.png);background-position:-819px -1388px;width:90px;height:90px}.customize-option.hair_flower_1{background-image:url(spritesmith0.png);background-position:-844px -1403px;width:60px;height:60px}.hair_flower_2{background-image:url(spritesmith0.png);background-position:0 -1616px;width:90px;height:90px}.customize-option.hair_flower_2{background-image:url(spritesmith0.png);background-position:-25px -1631px;width:60px;height:60px}.hair_flower_3{background-image:url(spritesmith0.png);background-position:-1001px -1274px;width:90px;height:90px}.customize-option.hair_flower_3{background-image:url(spritesmith0.png);background-position:-1026px -1289px;width:60px;height:60px}.hair_flower_4{background-image:url(spritesmith0.png);background-position:-1274px -1001px;width:90px;height:90px}.customize-option.hair_flower_4{background-image:url(spritesmith0.png);background-position:-1299px -1016px;width:60px;height:60px}.hair_flower_5{background-image:url(spritesmith0.png);background-position:-637px -1502px;width:90px;height:90px}.customize-option.hair_flower_5{background-image:url(spritesmith0.png);background-position:-662px -1517px;width:60px;height:60px}.hair_flower_6{background-image:url(spritesmith0.png);background-position:-1416px -819px;width:90px;height:90px}.customize-option.hair_flower_6{background-image:url(spritesmith0.png);background-position:-1441px -834px;width:60px;height:60px}.hair_bangs_1_TRUred{background-image:url(spritesmith0.png);background-position:-1615px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_TRUred{background-image:url(spritesmith0.png);background-position:-1640px -288px;width:60px;height:60px}.hair_bangs_1_aurora{background-image:url(spritesmith0.png);background-position:-1365px -910px;width:90px;height:90px}.customize-option.hair_bangs_1_aurora{background-image:url(spritesmith0.png);background-position:-1390px -925px;width:60px;height:60px}.hair_bangs_1_black{background-image:url(spritesmith0.png);background-position:-91px -1650px;width:90px;height:90px}.customize-option.hair_bangs_1_black{background-image:url(spritesmith0.png);background-position:-116px -1665px;width:60px;height:60px}.hair_bangs_1_blond{background-image:url(spritesmith0.png);background-position:-1615px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_blond{background-image:url(spritesmith0.png);background-position:-1640px -379px;width:60px;height:60px}.hair_bangs_1_blue{background-image:url(spritesmith0.png);background-position:-455px -1593px;width:90px;height:90px}.customize-option.hair_bangs_1_blue{background-image:url(spritesmith0.png);background-position:-480px -1608px;width:60px;height:60px}.hair_bangs_1_brown{background-image:url(spritesmith0.png);background-position:-1567px -546px;width:90px;height:90px}.customize-option.hair_bangs_1_brown{background-image:url(spritesmith0.png);background-position:-1592px -561px;width:60px;height:60px}.hair_bangs_1_candycane{background-image:url(spritesmith0.png);background-position:-910px -1388px;width:90px;height:90px}.customize-option.hair_bangs_1_candycane{background-image:url(spritesmith0.png);background-position:-935px -1403px;width:60px;height:60px}.hair_bangs_1_candycorn{background-image:url(spritesmith0.png);background-position:-182px -1650px;width:90px;height:90px}.customize-option.hair_bangs_1_candycorn{background-image:url(spritesmith0.png);background-position:-207px -1665px;width:60px;height:60px}.hair_bangs_1_festive{background-image:url(spritesmith0.png);background-position:-1666px 0;width:90px;height:90px}.customize-option.hair_bangs_1_festive{background-image:url(spritesmith0.png);background-position:-1691px -15px;width:60px;height:60px}.hair_bangs_1_frost{background-image:url(spritesmith0.png);background-position:-728px -1502px;width:90px;height:90px}.customize-option.hair_bangs_1_frost{background-image:url(spritesmith0.png);background-position:-753px -1517px;width:60px;height:60px}.hair_bangs_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-1667px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-1692px -106px;width:60px;height:60px}.hair_bangs_1_green{background-image:url(spritesmith0.png);background-position:-273px -1650px;width:90px;height:90px}.customize-option.hair_bangs_1_green{background-image:url(spritesmith0.png);background-position:-298px -1665px;width:60px;height:60px}.hair_bangs_1_halloween{background-image:url(spritesmith0.png);background-position:-1183px -1183px;width:90px;height:90px}.customize-option.hair_bangs_1_halloween{background-image:url(spritesmith0.png);background-position:-1208px -1198px;width:60px;height:60px}.hair_bangs_1_holly{background-image:url(spritesmith0.png);background-position:-1507px -728px;width:90px;height:90px}.customize-option.hair_bangs_1_holly{background-image:url(spritesmith0.png);background-position:-1532px -743px;width:60px;height:60px}.hair_bangs_1_hollygreen{background-image:url(spritesmith0.png);background-position:-1667px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_hollygreen{background-image:url(spritesmith0.png);background-position:-1692px -197px;width:60px;height:60px}.hair_bangs_1_midnight{background-image:url(spritesmith0.png);background-position:-1615px -455px;width:90px;height:90px}.customize-option.hair_bangs_1_midnight{background-image:url(spritesmith0.png);background-position:-1640px -470px;width:60px;height:60px}.hair_bangs_1_pblue{background-image:url(spritesmith0.png);background-position:-1092px -1274px;width:90px;height:90px}.customize-option.hair_bangs_1_pblue{background-image:url(spritesmith0.png);background-position:-1117px -1289px;width:60px;height:60px}.hair_bangs_1_peppermint{background-image:url(spritesmith0.png);background-position:-1274px -1092px;width:90px;height:90px}.customize-option.hair_bangs_1_peppermint{background-image:url(spritesmith0.png);background-position:-1299px -1107px;width:60px;height:60px}.hair_bangs_1_pgreen{background-image:url(spritesmith0.png);background-position:-546px -1593px;width:90px;height:90px}.customize-option.hair_bangs_1_pgreen{background-image:url(spritesmith0.png);background-position:-571px -1608px;width:60px;height:60px}.hair_bangs_1_porange{background-image:url(spritesmith0.png);background-position:-364px -1650px;width:90px;height:90px}.customize-option.hair_bangs_1_porange{background-image:url(spritesmith0.png);background-position:-389px -1665px;width:60px;height:60px}.hair_bangs_1_ppink{background-image:url(spritesmith0.png);background-position:-819px -1479px;width:90px;height:90px}.customize-option.hair_bangs_1_ppink{background-image:url(spritesmith0.png);background-position:-844px -1494px;width:60px;height:60px}.hair_bangs_1_ppurple{background-image:url(spritesmith0.png);background-position:-1567px -637px;width:90px;height:90px}.customize-option.hair_bangs_1_ppurple{background-image:url(spritesmith0.png);background-position:-1592px -652px;width:60px;height:60px}.hair_bangs_1_pumpkin{background-image:url(spritesmith0.png);background-position:-1001px -1365px;width:90px;height:90px}.customize-option.hair_bangs_1_pumpkin{background-image:url(spritesmith0.png);background-position:-1026px -1380px;width:60px;height:60px}.hair_bangs_1_purple{background-image:url(spritesmith0.png);background-position:-1365px -1001px;width:90px;height:90px}.customize-option.hair_bangs_1_purple{background-image:url(spritesmith0.png);background-position:-1390px -1016px;width:60px;height:60px}.hair_bangs_1_pyellow{background-image:url(spritesmith0.png);background-position:0 -1707px;width:90px;height:90px}.customize-option.hair_bangs_1_pyellow{background-image:url(spritesmith0.png);background-position:-25px -1722px;width:60px;height:60px}.hair_bangs_1_rainbow{background-image:url(spritesmith0.png);background-position:-1507px -819px;width:90px;height:90px}.customize-option.hair_bangs_1_rainbow{background-image:url(spritesmith0.png);background-position:-1532px -834px;width:60px;height:60px}.hair_bangs_1_red{background-image:url(spritesmith0.png);background-position:-637px -1593px;width:90px;height:90px}.customize-option.hair_bangs_1_red{background-image:url(spritesmith0.png);background-position:-662px -1608px;width:60px;height:60px}.hair_bangs_1_snowy{background-image:url(spritesmith0.png);background-position:-1456px -910px;width:90px;height:90px}.customize-option.hair_bangs_1_snowy{background-image:url(spritesmith0.png);background-position:-1481px -925px;width:60px;height:60px}.hair_bangs_1_white{background-image:url(spritesmith0.png);background-position:-1706px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_white{background-image:url(spritesmith0.png);background-position:-1731px -288px;width:60px;height:60px}.hair_bangs_1_winternight{background-image:url(spritesmith0.png);background-position:-910px -1479px;width:90px;height:90px}.customize-option.hair_bangs_1_winternight{background-image:url(spritesmith0.png);background-position:-935px -1494px;width:60px;height:60px}.hair_bangs_1_winterstar{background-image:url(spritesmith0.png);background-position:-1274px -1183px;width:90px;height:90px}.customize-option.hair_bangs_1_winterstar{background-image:url(spritesmith0.png);background-position:-1299px -1198px;width:60px;height:60px}.hair_bangs_1_yellow{background-image:url(spritesmith0.png);background-position:-1183px -1274px;width:90px;height:90px}.customize-option.hair_bangs_1_yellow{background-image:url(spritesmith0.png);background-position:-1208px -1289px;width:60px;height:60px}.hair_bangs_1_zombie{background-image:url(spritesmith0.png);background-position:-91px -1741px;width:90px;height:90px}.customize-option.hair_bangs_1_zombie{background-image:url(spritesmith0.png);background-position:-116px -1756px;width:60px;height:60px}.hair_bangs_2_TRUred{background-image:url(spritesmith0.png);background-position:-455px -1684px;width:90px;height:90px}.customize-option.hair_bangs_2_TRUred{background-image:url(spritesmith0.png);background-position:-480px -1699px;width:60px;height:60px}.hair_bangs_2_aurora{background-image:url(spritesmith0.png);background-position:-1706px -364px;width:90px;height:90px}.customize-option.hair_bangs_2_aurora{background-image:url(spritesmith0.png);background-position:-1731px -379px;width:60px;height:60px}.hair_bangs_2_black{background-image:url(spritesmith0.png);background-position:-1658px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_black{background-image:url(spritesmith0.png);background-position:-1683px -561px;width:60px;height:60px}.hair_bangs_2_blond{background-image:url(spritesmith0.png);background-position:-1365px -1092px;width:90px;height:90px}.customize-option.hair_bangs_2_blond{background-image:url(spritesmith0.png);background-position:-1390px -1107px;width:60px;height:60px}.hair_bangs_2_blue{background-image:url(spritesmith0.png);background-position:-1092px -1365px;width:90px;height:90px}.customize-option.hair_bangs_2_blue{background-image:url(spritesmith0.png);background-position:-1117px -1380px;width:60px;height:60px}.hair_bangs_2_brown{background-image:url(spritesmith0.png);background-position:-182px -1741px;width:90px;height:90px}.customize-option.hair_bangs_2_brown{background-image:url(spritesmith0.png);background-position:-207px -1756px;width:60px;height:60px}.hair_bangs_2_candycane{background-image:url(spritesmith0.png);background-position:-728px -1593px;width:90px;height:90px}.customize-option.hair_bangs_2_candycane{background-image:url(spritesmith0.png);background-position:-753px -1608px;width:60px;height:60px}.hair_bangs_2_candycorn{background-image:url(spritesmith0.png);background-position:-1598px -728px;width:90px;height:90px}.customize-option.hair_bangs_2_candycorn{background-image:url(spritesmith0.png);background-position:-1623px -743px;width:60px;height:60px}.hair_bangs_2_festive{background-image:url(spritesmith0.png);background-position:-1757px 0;width:90px;height:90px}.customize-option.hair_bangs_2_festive{background-image:url(spritesmith0.png);background-position:-1782px -15px;width:60px;height:60px}.hair_bangs_2_frost{background-image:url(spritesmith0.png);background-position:-1758px -91px;width:90px;height:90px}.customize-option.hair_bangs_2_frost{background-image:url(spritesmith0.png);background-position:-1783px -106px;width:60px;height:60px}.hair_bangs_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-273px -1741px;width:90px;height:90px}.customize-option.hair_bangs_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-298px -1756px;width:60px;height:60px}.hair_bangs_2_green{background-image:url(spritesmith0.png);background-position:-1706px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_green{background-image:url(spritesmith0.png);background-position:-1731px -470px;width:60px;height:60px}.hair_bangs_2_halloween{background-image:url(spritesmith0.png);background-position:-1456px -1001px;width:90px;height:90px}.customize-option.hair_bangs_2_halloween{background-image:url(spritesmith0.png);background-position:-1481px -1016px;width:60px;height:60px}.hair_bangs_2_holly{background-image:url(spritesmith0.png);background-position:-1001px -1456px;width:90px;height:90px}.customize-option.hair_bangs_2_holly{background-image:url(spritesmith0.png);background-position:-1026px -1471px;width:60px;height:60px}.hair_bangs_2_hollygreen{background-image:url(spritesmith0.png);background-position:-1758px -182px;width:90px;height:90px}.customize-option.hair_bangs_2_hollygreen{background-image:url(spritesmith0.png);background-position:-1783px -197px;width:60px;height:60px}.hair_bangs_2_midnight{background-image:url(spritesmith0.png);background-position:-546px -1684px;width:90px;height:90px}.customize-option.hair_bangs_2_midnight{background-image:url(spritesmith0.png);background-position:-571px -1699px;width:60px;height:60px}.hair_bangs_2_pblue{background-image:url(spritesmith0.png);background-position:-819px -1570px;width:90px;height:90px}.customize-option.hair_bangs_2_pblue{background-image:url(spritesmith0.png);background-position:-844px -1585px;width:60px;height:60px}.hair_bangs_2_peppermint{background-image:url(spritesmith0.png);background-position:-1658px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_peppermint{background-image:url(spritesmith0.png);background-position:-1683px -652px;width:60px;height:60px}.hair_bangs_2_pgreen{background-image:url(spritesmith0.png);background-position:-364px -1741px;width:90px;height:90px}.customize-option.hair_bangs_2_pgreen{background-image:url(spritesmith0.png);background-position:-389px -1756px;width:60px;height:60px}.hair_bangs_2_porange{background-image:url(spritesmith0.png);background-position:-1547px -910px;width:90px;height:90px}.customize-option.hair_bangs_2_porange{background-image:url(spritesmith0.png);background-position:-1572px -925px;width:60px;height:60px}.hair_bangs_2_ppink{background-image:url(spritesmith0.png);background-position:-1598px -819px;width:90px;height:90px}.customize-option.hair_bangs_2_ppink{background-image:url(spritesmith0.png);background-position:-1623px -834px;width:60px;height:60px}.hair_bangs_2_ppurple{background-image:url(spritesmith0.png);background-position:0 -1798px;width:90px;height:90px}.customize-option.hair_bangs_2_ppurple{background-image:url(spritesmith0.png);background-position:-25px -1813px;width:60px;height:60px}.hair_bangs_2_pumpkin{background-image:url(spritesmith0.png);background-position:-637px -1684px;width:90px;height:90px}.customize-option.hair_bangs_2_pumpkin{background-image:url(spritesmith0.png);background-position:-662px -1699px;width:60px;height:60px}.hair_bangs_2_purple{background-image:url(spritesmith0.png);background-position:-1274px -1274px;width:90px;height:90px}.customize-option.hair_bangs_2_purple{background-image:url(spritesmith0.png);background-position:-1299px -1289px;width:60px;height:60px}.hair_bangs_2_pyellow{background-image:url(spritesmith0.png);background-position:-1183px -1365px;width:90px;height:90px}.customize-option.hair_bangs_2_pyellow{background-image:url(spritesmith0.png);background-position:-1208px -1380px;width:60px;height:60px}.hair_bangs_2_rainbow{background-image:url(spritesmith0.png);background-position:-1365px -1183px;width:90px;height:90px}.customize-option.hair_bangs_2_rainbow{background-image:url(spritesmith0.png);background-position:-1390px -1198px;width:60px;height:60px}.hair_bangs_2_red{background-image:url(spritesmith0.png);background-position:-910px -1570px;width:90px;height:90px}.customize-option.hair_bangs_2_red{background-image:url(spritesmith0.png);background-position:-935px -1585px;width:60px;height:60px}.hair_bangs_2_snowy{background-image:url(spritesmith0.png);background-position:-1797px -273px;width:90px;height:90px}.customize-option.hair_bangs_2_snowy{background-image:url(spritesmith0.png);background-position:-1822px -288px;width:60px;height:60px}.hair_bangs_2_white{background-image:url(spritesmith0.png);background-position:-1092px -1456px;width:90px;height:90px}.customize-option.hair_bangs_2_white{background-image:url(spritesmith0.png);background-position:-1117px -1471px;width:60px;height:60px}.hair_bangs_2_winternight{background-image:url(spritesmith0.png);background-position:-1456px -1092px;width:90px;height:90px}.customize-option.hair_bangs_2_winternight{background-image:url(spritesmith0.png);background-position:-1481px -1107px;width:60px;height:60px}.hair_bangs_2_winterstar{background-image:url(spritesmith0.png);background-position:-1749px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_winterstar{background-image:url(spritesmith0.png);background-position:-1774px -561px;width:60px;height:60px}.hair_bangs_2_yellow{background-image:url(spritesmith0.png);background-position:-455px -1775px;width:90px;height:90px}.customize-option.hair_bangs_2_yellow{background-image:url(spritesmith0.png);background-position:-480px -1790px;width:60px;height:60px}.hair_bangs_2_zombie{background-image:url(spritesmith0.png);background-position:-1797px -364px;width:90px;height:90px}.customize-option.hair_bangs_2_zombie{background-image:url(spritesmith0.png);background-position:-1822px -379px;width:60px;height:60px}.hair_bangs_3_TRUred{background-image:url(spritesmith0.png);background-position:-91px -1832px;width:90px;height:90px}.customize-option.hair_bangs_3_TRUred{background-image:url(spritesmith0.png);background-position:-116px -1847px;width:60px;height:60px}.hair_bangs_3_aurora{background-image:url(spritesmith0.png);background-position:-728px -1684px;width:90px;height:90px}.customize-option.hair_bangs_3_aurora{background-image:url(spritesmith0.png);background-position:-753px -1699px;width:60px;height:60px}.hair_bangs_3_black{background-image:url(spritesmith0.png);background-position:-1689px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_black{background-image:url(spritesmith0.png);background-position:-1714px -743px;width:60px;height:60px}.hair_bangs_3_blond{background-image:url(spritesmith0.png);background-position:-182px -1832px;width:90px;height:90px}.customize-option.hair_bangs_3_blond{background-image:url(spritesmith0.png);background-position:-207px -1847px;width:60px;height:60px}.hair_bangs_3_blue{background-image:url(spritesmith0.png);background-position:-1547px -1001px;width:90px;height:90px}.customize-option.hair_bangs_3_blue{background-image:url(spritesmith0.png);background-position:-1572px -1016px;width:60px;height:60px}.hair_bangs_3_brown{background-image:url(spritesmith0.png);background-position:-1001px -1547px;width:90px;height:90px}.customize-option.hair_bangs_3_brown{background-image:url(spritesmith0.png);background-position:-1026px -1562px;width:60px;height:60px}.hair_bangs_3_candycane{background-image:url(spritesmith0.png);background-position:-1848px 0;width:90px;height:90px}.customize-option.hair_bangs_3_candycane{background-image:url(spritesmith0.png);background-position:-1873px -15px;width:60px;height:60px}.hair_bangs_3_candycorn{background-image:url(spritesmith0.png);background-position:-1849px -91px;width:90px;height:90px}.customize-option.hair_bangs_3_candycorn{background-image:url(spritesmith0.png);background-position:-1874px -106px;width:60px;height:60px}.hair_bangs_3_festive{background-image:url(spritesmith0.png);background-position:-819px -1661px;width:90px;height:90px}.customize-option.hair_bangs_3_festive{background-image:url(spritesmith0.png);background-position:-844px -1676px;width:60px;height:60px}.hair_bangs_3_frost{background-image:url(spritesmith0.png);background-position:-273px -1832px;width:90px;height:90px}.customize-option.hair_bangs_3_frost{background-image:url(spritesmith0.png);background-position:-298px -1847px;width:60px;height:60px}.hair_bangs_3_ghostwhite{background-image:url(spritesmith0.png);background-position:-1797px -455px;width:90px;height:90px}.customize-option.hair_bangs_3_ghostwhite{background-image:url(spritesmith0.png);background-position:-1822px -470px;width:60px;height:60px}.hair_bangs_3_green{background-image:url(spritesmith0.png);background-position:-546px -1775px;width:90px;height:90px}.customize-option.hair_bangs_3_green{background-image:url(spritesmith0.png);background-position:-571px -1790px;width:60px;height:60px}.hair_bangs_3_halloween{background-image:url(spritesmith0.png);background-position:-1849px -182px;width:90px;height:90px}.customize-option.hair_bangs_3_halloween{background-image:url(spritesmith0.png);background-position:-1874px -197px;width:60px;height:60px}.hair_bangs_3_holly{background-image:url(spritesmith0.png);background-position:-1749px -637px;width:90px;height:90px}.customize-option.hair_bangs_3_holly{background-image:url(spritesmith0.png);background-position:-1774px -652px;width:60px;height:60px}.hair_bangs_3_hollygreen{background-image:url(spritesmith0.png);background-position:-1365px -1274px;width:90px;height:90px}.customize-option.hair_bangs_3_hollygreen{background-image:url(spritesmith0.png);background-position:-1390px -1289px;width:60px;height:60px}.hair_bangs_3_midnight{background-image:url(spritesmith0.png);background-position:-1274px -1365px;width:90px;height:90px}.customize-option.hair_bangs_3_midnight{background-image:url(spritesmith0.png);background-position:-1299px -1380px;width:60px;height:60px}.hair_bangs_3_pblue{background-image:url(spritesmith0.png);background-position:-364px -1832px;width:90px;height:90px}.customize-option.hair_bangs_3_pblue{background-image:url(spritesmith0.png);background-position:-389px -1847px;width:60px;height:60px}.hair_bangs_3_peppermint{background-image:url(spritesmith0.png);background-position:-1638px -910px;width:90px;height:90px}.customize-option.hair_bangs_3_peppermint{background-image:url(spritesmith0.png);background-position:-1663px -925px;width:60px;height:60px}.hair_bangs_3_pgreen{background-image:url(spritesmith0.png);background-position:-1456px -1183px;width:90px;height:90px}.customize-option.hair_bangs_3_pgreen{background-image:url(spritesmith0.png);background-position:-1481px -1198px;width:60px;height:60px}.hair_bangs_3_porange{background-image:url(spritesmith0.png);background-position:-1183px -1456px;width:90px;height:90px}.customize-option.hair_bangs_3_porange{background-image:url(spritesmith0.png);background-position:-1208px -1471px;width:60px;height:60px}.hair_bangs_3_ppink{background-image:url(spritesmith0.png);background-position:-1689px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_ppink{background-image:url(spritesmith0.png);background-position:-1714px -834px;width:60px;height:60px}.hair_bangs_3_ppurple{background-image:url(spritesmith0.png);background-position:-637px -1775px;width:90px;height:90px}.customize-option.hair_bangs_3_ppurple{background-image:url(spritesmith0.png);background-position:-662px -1790px;width:60px;height:60px}.hair_bangs_3_pumpkin{background-image:url(spritesmith0.png);background-position:0 -1889px;width:90px;height:90px}.customize-option.hair_bangs_3_pumpkin{background-image:url(spritesmith0.png);background-position:-25px -1904px;width:60px;height:60px}.hair_bangs_3_purple{background-image:url(spritesmith0.png);background-position:-1547px -1092px;width:90px;height:90px}.customize-option.hair_bangs_3_purple{background-image:url(spritesmith0.png);background-position:-1572px -1107px;width:60px;height:60px}.hair_bangs_3_pyellow{background-image:url(spritesmith0.png);background-position:-1092px -1547px;width:90px;height:90px}.customize-option.hair_bangs_3_pyellow{background-image:url(spritesmith0.png);background-position:-1117px -1562px;width:60px;height:60px}.hair_bangs_3_rainbow{background-image:url(spritesmith0.png);background-position:-910px -1661px;width:90px;height:90px}.customize-option.hair_bangs_3_rainbow{background-image:url(spritesmith0.png);background-position:-935px -1676px;width:60px;height:60px}.hair_bangs_3_red{background-image:url(spritesmith0.png);background-position:-1888px -273px;width:90px;height:90px}.customize-option.hair_bangs_3_red{background-image:url(spritesmith0.png);background-position:-1913px -288px;width:60px;height:60px}.hair_bangs_3_snowy{background-image:url(spritesmith0.png);background-position:-728px -1775px;width:90px;height:90px}.customize-option.hair_bangs_3_snowy{background-image:url(spritesmith0.png);background-position:-753px -1790px;width:60px;height:60px}.hair_bangs_3_white{background-image:url(spritesmith0.png);background-position:-1840px -546px;width:90px;height:90px}.customize-option.hair_bangs_3_white{background-image:url(spritesmith0.png);background-position:-1865px -561px;width:60px;height:60px}.hair_bangs_3_winternight{background-image:url(spritesmith0.png);background-position:-1001px -1638px;width:90px;height:90px}.customize-option.hair_bangs_3_winternight{background-image:url(spritesmith0.png);background-position:-1026px -1653px;width:60px;height:60px}.hair_bangs_3_winterstar{background-image:url(spritesmith0.png);background-position:-1638px -1001px;width:90px;height:90px}.customize-option.hair_bangs_3_winterstar{background-image:url(spritesmith0.png);background-position:-1663px -1016px;width:60px;height:60px}.hair_bangs_3_yellow{background-image:url(spritesmith0.png);background-position:-455px -1866px;width:90px;height:90px}.customize-option.hair_bangs_3_yellow{background-image:url(spritesmith0.png);background-position:-480px -1881px;width:60px;height:60px}.hair_bangs_3_zombie{background-image:url(spritesmith0.png);background-position:-1888px -364px;width:90px;height:90px}.customize-option.hair_bangs_3_zombie{background-image:url(spritesmith0.png);background-position:-1913px -379px;width:60px;height:60px}.hair_base_10_TRUEred{background-image:url(spritesmith0.png);background-position:-1780px -728px;width:90px;height:90px}.customize-option.hair_base_10_TRUEred{background-image:url(spritesmith0.png);background-position:-1805px -743px;width:60px;height:60px}.hair_base_10_aurora{background-image:url(spritesmith0.png);background-position:-91px -1923px;width:90px;height:90px}.customize-option.hair_base_10_aurora{background-image:url(spritesmith0.png);background-position:-116px -1938px;width:60px;height:60px}.hair_base_10_black{background-image:url(spritesmith0.png);background-position:-1365px -1365px;width:90px;height:90px}.customize-option.hair_base_10_black{background-image:url(spritesmith0.png);background-position:-1390px -1380px;width:60px;height:60px}.hair_base_10_blond{background-image:url(spritesmith0.png);background-position:-182px -1923px;width:90px;height:90px}.customize-option.hair_base_10_blond{background-image:url(spritesmith0.png);background-position:-207px -1938px;width:60px;height:60px}.hair_base_10_blue{background-image:url(spritesmith0.png);background-position:-819px -1752px;width:90px;height:90px}.customize-option.hair_base_10_blue{background-image:url(spritesmith0.png);background-position:-844px -1767px;width:60px;height:60px}.hair_base_10_brown{background-image:url(spritesmith0.png);background-position:-1274px -1456px;width:90px;height:90px}.customize-option.hair_base_10_brown{background-image:url(spritesmith0.png);background-position:-1299px -1471px;width:60px;height:60px}.hair_base_10_festive{background-image:url(spritesmith0.png);background-position:-1456px -1274px;width:90px;height:90px}.customize-option.hair_base_10_festive{background-image:url(spritesmith0.png);background-position:-1481px -1289px;width:60px;height:60px}.hair_base_10_green{background-image:url(spritesmith0.png);background-position:-1939px 0;width:90px;height:90px}.customize-option.hair_base_10_green{background-image:url(spritesmith0.png);background-position:-1964px -15px;width:60px;height:60px}.hair_base_10_hollygreen{background-image:url(spritesmith0.png);background-position:-1888px -455px;width:90px;height:90px}.customize-option.hair_base_10_hollygreen{background-image:url(spritesmith0.png);background-position:-1913px -470px;width:60px;height:60px}.hair_base_10_pblue{background-image:url(spritesmith0.png);background-position:-1940px -91px;width:90px;height:90px}.customize-option.hair_base_10_pblue{background-image:url(spritesmith0.png);background-position:-1965px -106px;width:60px;height:60px}.hair_base_10_peppermint{background-image:url(spritesmith0.png);background-position:-1485px -91px;width:90px;height:90px}.customize-option.hair_base_10_peppermint{background-image:url(spritesmith0.png);background-position:-1510px -106px;width:60px;height:60px}.hair_base_10_pgreen{background-image:url(spritesmith0.png);background-position:-705px -387px;width:90px;height:90px}.customize-option.hair_base_10_pgreen{background-image:url(spritesmith0.png);background-position:-730px -402px;width:60px;height:60px}.hair_base_10_porange{background-image:url(spritesmith0.png);background-position:-233px -740px;width:90px;height:90px}.customize-option.hair_base_10_porange{background-image:url(spritesmith0.png);background-position:-258px -755px;width:60px;height:60px}.hair_base_10_ppink{background-image:url(spritesmith0.png);background-position:-705px -296px;width:90px;height:90px}.customize-option.hair_base_10_ppink{background-image:url(spritesmith0.png);background-position:-730px -311px;width:60px;height:60px}.hair_base_10_ppurple{background-image:url(spritesmith0.png);background-position:-887px -364px;width:90px;height:90px}.customize-option.hair_base_10_ppurple{background-image:url(spritesmith0.png);background-position:-912px -379px;width:60px;height:60px}.hair_base_10_purple{background-image:url(spritesmith0.png);background-position:-939px -182px;width:90px;height:90px}.customize-option.hair_base_10_purple{background-image:url(spritesmith0.png);background-position:-964px -197px;width:60px;height:60px}.hair_base_10_pyellow{background-image:url(spritesmith0.png);background-position:-657px -683px;width:90px;height:90px}.customize-option.hair_base_10_pyellow{background-image:url(spritesmith0.png);background-position:-682px -698px;width:60px;height:60px}.hair_base_10_rainbow{background-image:url(spritesmith0.png);background-position:-939px -91px;width:90px;height:90px}.customize-option.hair_base_10_rainbow{background-image:url(spritesmith0.png);background-position:-964px -106px;width:60px;height:60px}.hair_base_10_red{background-image:url(spritesmith0.png);background-position:-748px -569px;width:90px;height:90px}.customize-option.hair_base_10_red{background-image:url(spritesmith0.png);background-position:-773px -584px;width:60px;height:60px}.hair_base_10_snowy{background-image:url(spritesmith0.png);background-position:-182px -922px;width:90px;height:90px}.customize-option.hair_base_10_snowy{background-image:url(spritesmith0.png);background-position:-207px -937px;width:60px;height:60px}.hair_base_10_white{background-image:url(spritesmith0.png);background-position:-938px 0;width:90px;height:90px}.customize-option.hair_base_10_white{background-image:url(spritesmith0.png);background-position:-963px -15px;width:60px;height:60px}.hair_base_10_winterstar{background-image:url(spritesmith0.png);background-position:-415px -831px;width:90px;height:90px}.customize-option.hair_base_10_winterstar{background-image:url(spritesmith0.png);background-position:-440px -846px;width:60px;height:60px}.hair_base_10_yellow{background-image:url(spritesmith0.png);background-position:-796px -478px;width:90px;height:90px}.customize-option.hair_base_10_yellow{background-image:url(spritesmith0.png);background-position:-821px -493px;width:60px;height:60px}.hair_base_11_TRUEred{background-image:url(spritesmith0.png);background-position:-887px -273px;width:90px;height:90px}.customize-option.hair_base_11_TRUEred{background-image:url(spritesmith0.png);background-position:-912px -288px;width:60px;height:60px}.hair_base_11_aurora{background-image:url(spritesmith0.png);background-position:-91px -922px;width:90px;height:90px}.customize-option.hair_base_11_aurora{background-image:url(spritesmith0.png);background-position:-116px -937px;width:60px;height:60px}.hair_base_11_blond{background-image:url(spritesmith0.png);background-position:-506px -774px;width:90px;height:90px}.customize-option.hair_base_11_blond{background-image:url(spritesmith0.png);background-position:-531px -789px;width:60px;height:60px}.hair_base_11_blue{background-image:url(spritesmith0.png);background-position:-324px -831px;width:90px;height:90px}.customize-option.hair_base_11_blue{background-image:url(spritesmith0.png);background-position:-349px -846px;width:60px;height:60px}.hair_base_11_brown{background-image:url(spritesmith0.png);background-position:0 -888px;width:90px;height:90px}.customize-option.hair_base_11_brown{background-image:url(spritesmith0.png);background-position:-25px -903px;width:60px;height:60px}.hair_base_11_festive{background-image:url(spritesmith0.png);background-position:-566px -683px;width:90px;height:90px}.customize-option.hair_base_11_festive{background-image:url(spritesmith0.png);background-position:-591px -698px;width:60px;height:60px}.hair_base_11_green{background-image:url(spritesmith0.png);background-position:-796px -387px;width:90px;height:90px}.customize-option.hair_base_11_green{background-image:url(spritesmith0.png);background-position:-821px -402px;width:60px;height:60px}.hair_base_11_hollygreen{background-image:url(spritesmith0.png);background-position:-657px -592px;width:90px;height:90px}.customize-option.hair_base_11_hollygreen{background-image:url(spritesmith0.png);background-position:-682px -607px;width:60px;height:60px}.hair_base_11_pblue{background-image:url(spritesmith0.png);background-position:-848px -182px;width:90px;height:90px}.customize-option.hair_base_11_pblue{background-image:url(spritesmith0.png);background-position:-873px -197px;width:60px;height:60px}.hair_base_11_peppermint{background-image:url(spritesmith0.png);background-position:-233px -831px;width:90px;height:90px}.customize-option.hair_base_11_peppermint{background-image:url(spritesmith0.png);background-position:-258px -846px;width:60px;height:60px}.hair_base_11_pgreen{background-image:url(spritesmith0.png);background-position:-848px -91px;width:90px;height:90px}.customize-option.hair_base_11_pgreen{background-image:url(spritesmith0.png);background-position:-873px -106px;width:60px;height:60px}.hair_base_11_porange{background-image:url(spritesmith0.png);background-position:-705px -478px;width:90px;height:90px}.customize-option.hair_base_11_porange{background-image:url(spritesmith0.png);background-position:-730px -493px;width:60px;height:60px}.hair_base_11_ppink{background-image:url(spritesmith0.png);background-position:-796px -296px;width:90px;height:90px}.customize-option.hair_base_11_ppink{background-image:url(spritesmith0.png);background-position:-821px -311px;width:60px;height:60px}.hair_base_11_ppurple{background-image:url(spritesmith0.png);background-position:-415px -740px;width:90px;height:90px}.customize-option.hair_base_11_ppurple{background-image:url(spritesmith0.png);background-position:-440px -755px;width:60px;height:60px}.hair_base_11_purple{background-image:url(spritesmith0.png);background-position:-847px 0;width:90px;height:90px}.customize-option.hair_base_11_purple{background-image:url(spritesmith0.png);background-position:-872px -15px;width:60px;height:60px}.hair_base_11_pyellow{background-image:url(spritesmith0.png);background-position:-142px -831px;width:90px;height:90px}.customize-option.hair_base_11_pyellow{background-image:url(spritesmith0.png);background-position:-167px -846px;width:60px;height:60px}.hair_base_11_rainbow{background-image:url(spritesmith0.png);background-position:-566px -592px;width:90px;height:90px}.customize-option.hair_base_11_rainbow{background-image:url(spritesmith0.png);background-position:-591px -607px;width:60px;height:60px}.hair_base_11_red{background-image:url(spritesmith0.png);background-position:-324px -740px;width:90px;height:90px}.customize-option.hair_base_11_red{background-image:url(spritesmith0.png);background-position:-349px -755px;width:60px;height:60px} \ No newline at end of file +.achievement-alien { + background-image: url(spritesmith0.png); + background-position: -800px -683px; + width: 24px; + height: 26px; +} +.achievement-armor { + background-image: url(spritesmith0.png); + background-position: -1783px -1638px; + width: 24px; + height: 26px; +} +.achievement-boot { + background-image: url(spritesmith0.png); + background-position: -775px -683px; + width: 24px; + height: 26px; +} +.achievement-bow { + background-image: url(spritesmith0.png); + background-position: -750px -683px; + width: 24px; + height: 26px; +} +.achievement-cactus { + background-image: url(spritesmith0.png); + background-position: -725px -683px; + width: 24px; + height: 26px; +} +.achievement-cake { + background-image: url(spritesmith0.png); + background-position: -700px -683px; + width: 24px; + height: 26px; +} +.achievement-cave { + background-image: url(spritesmith0.png); + background-position: -675px -683px; + width: 24px; + height: 26px; +} +.achievement-coffin { + background-image: url(spritesmith0.png); + background-position: -650px -683px; + width: 24px; + height: 26px; +} +.achievement-comment { + background-image: url(spritesmith0.png); + background-position: -625px -683px; + width: 24px; + height: 26px; +} +.achievement-costumeContest { + background-image: url(spritesmith0.png); + background-position: -600px -683px; + width: 24px; + height: 26px; +} +.achievement-dilatory { + background-image: url(spritesmith0.png); + background-position: -575px -683px; + width: 24px; + height: 26px; +} +.achievement-firefox { + background-image: url(spritesmith0.png); + background-position: -550px -683px; + width: 24px; + height: 26px; +} +.achievement-habitBirthday { + background-image: url(spritesmith0.png); + background-position: -525px -683px; + width: 24px; + height: 26px; +} +.achievement-heart { + background-image: url(spritesmith0.png); + background-position: -500px -683px; + width: 24px; + height: 26px; +} +.achievement-helm { + background-image: url(spritesmith0.png); + background-position: -475px -683px; + width: 24px; + height: 26px; +} +.achievement-karaoke { + background-image: url(spritesmith0.png); + background-position: -450px -683px; + width: 24px; + height: 26px; +} +.achievement-ninja { + background-image: url(spritesmith0.png); + background-position: -1758px -1638px; + width: 24px; + height: 26px; +} +.achievement-nye { + background-image: url(spritesmith0.png); + background-position: -814px -646px; + width: 24px; + height: 26px; +} +.achievement-perfect { + background-image: url(spritesmith0.png); + background-position: -789px -646px; + width: 24px; + height: 26px; +} +.achievement-rat { + background-image: url(spritesmith0.png); + background-position: -814px -619px; + width: 24px; + height: 26px; +} +.achievement-shield { + background-image: url(spritesmith0.png); + background-position: -789px -619px; + width: 24px; + height: 26px; +} +.achievement-snowball { + background-image: url(spritesmith0.png); + background-position: -814px -592px; + width: 24px; + height: 26px; +} +.achievement-spookDust { + background-image: url(spritesmith0.png); + background-position: -789px -592px; + width: 24px; + height: 26px; +} +.achievement-stoikalm { + background-image: url(spritesmith0.png); + background-position: -1808px -1692px; + width: 24px; + height: 26px; +} +.achievement-sun { + background-image: url(spritesmith0.png); + background-position: -1783px -1692px; + width: 24px; + height: 26px; +} +.achievement-sword { + background-image: url(spritesmith0.png); + background-position: -1758px -1692px; + width: 24px; + height: 26px; +} +.achievement-thermometer { + background-image: url(spritesmith0.png); + background-position: -1808px -1665px; + width: 24px; + height: 26px; +} +.achievement-tree { + background-image: url(spritesmith0.png); + background-position: -1783px -1665px; + width: 24px; + height: 26px; +} +.achievement-triadbingo { + background-image: url(spritesmith0.png); + background-position: -1758px -1665px; + width: 24px; + height: 26px; +} +.achievement-valentine { + background-image: url(spritesmith0.png); + background-position: -1808px -1638px; + width: 24px; + height: 26px; +} +.achievement-wolf { + background-image: url(spritesmith0.png); + background-position: -425px -683px; + width: 24px; + height: 26px; +} +.background_autumn_forest { + background-image: url(spritesmith0.png); + background-position: -566px -296px; + width: 140px; + height: 147px; +} +.background_beach { + background-image: url(spritesmith0.png); + background-position: -283px 0px; + width: 141px; + height: 147px; +} +.background_blacksmithy { + background-image: url(spritesmith0.png); + background-position: 0px -148px; + width: 140px; + height: 147px; +} +.background_clouds { + background-image: url(spritesmith0.png); + background-position: -141px -148px; + width: 140px; + height: 147px; +} +.background_coral_reef { + background-image: url(spritesmith0.png); + background-position: -282px -148px; + width: 140px; + height: 147px; +} +.background_crystal_cave { + background-image: url(spritesmith0.png); + background-position: -425px 0px; + width: 140px; + height: 147px; +} +.background_distant_castle { + background-image: url(spritesmith0.png); + background-position: -425px -148px; + width: 140px; + height: 147px; +} +.background_dusty_canyons { + background-image: url(spritesmith0.png); + background-position: 0px -296px; + width: 140px; + height: 147px; +} +.background_fairy_ring { + background-image: url(spritesmith0.png); + background-position: -141px -296px; + width: 140px; + height: 147px; +} +.background_forest { + background-image: url(spritesmith0.png); + background-position: -282px -296px; + width: 140px; + height: 147px; +} +.background_frigid_peak { + background-image: url(spritesmith0.png); + background-position: -423px -296px; + width: 140px; + height: 147px; +} +.background_graveyard { + background-image: url(spritesmith0.png); + background-position: -566px 0px; + width: 140px; + height: 147px; +} +.background_harvest_feast { + background-image: url(spritesmith0.png); + background-position: -566px -148px; + width: 140px; + height: 147px; +} +.background_harvest_fields { + background-image: url(spritesmith0.png); + background-position: 0px 0px; + width: 141px; + height: 147px; +} +.background_haunted_house { + background-image: url(spritesmith0.png); + background-position: 0px -444px; + width: 140px; + height: 147px; +} +.background_ice_cave { + background-image: url(spritesmith0.png); + background-position: -141px -444px; + width: 141px; + height: 147px; +} +.background_iceberg { + background-image: url(spritesmith0.png); + background-position: -283px -444px; + width: 140px; + height: 147px; +} +.background_open_waters { + background-image: url(spritesmith0.png); + background-position: -424px -444px; + width: 141px; + height: 147px; +} +.background_pumpkin_patch { + background-image: url(spritesmith0.png); + background-position: -566px -444px; + width: 140px; + height: 147px; +} +.background_seafarer_ship { + background-image: url(spritesmith0.png); + background-position: -707px 0px; + width: 140px; + height: 147px; +} +.background_snowy_pines { + background-image: url(spritesmith0.png); + background-position: -707px -148px; + width: 140px; + height: 147px; +} +.background_south_pole { + background-image: url(spritesmith0.png); + background-position: -707px -296px; + width: 140px; + height: 147px; +} +.background_starry_skies { + background-image: url(spritesmith0.png); + background-position: -707px -444px; + width: 140px; + height: 147px; +} +.background_sunset_meadow { + background-image: url(spritesmith0.png); + background-position: 0px -592px; + width: 140px; + height: 147px; +} +.background_thunderstorm { + background-image: url(spritesmith0.png); + background-position: -141px -592px; + width: 141px; + height: 147px; +} +.background_twinkly_lights { + background-image: url(spritesmith0.png); + background-position: -283px -592px; + width: 141px; + height: 147px; +} +.background_volcano { + background-image: url(spritesmith0.png); + background-position: -142px 0px; + width: 140px; + height: 147px; +} +.hair_beard_1_TRUred { + background-image: url(spritesmith0.png); + background-position: -819px -831px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_TRUred { + background-image: url(spritesmith0.png); + background-position: -844px -846px; + width: 60px; + height: 60px; +} +.hair_beard_1_aurora { + background-image: url(spritesmith0.png); + background-position: -939px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_aurora { + background-image: url(spritesmith0.png); + background-position: -964px -15px; + width: 60px; + height: 60px; +} +.hair_beard_1_black { + background-image: url(spritesmith0.png); + background-position: -939px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_black { + background-image: url(spritesmith0.png); + background-position: -964px -106px; + width: 60px; + height: 60px; +} +.hair_beard_1_blond { + background-image: url(spritesmith0.png); + background-position: -939px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_blond { + background-image: url(spritesmith0.png); + background-position: -964px -197px; + width: 60px; + height: 60px; +} +.hair_beard_1_blue { + background-image: url(spritesmith0.png); + background-position: -939px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_blue { + background-image: url(spritesmith0.png); + background-position: -964px -288px; + width: 60px; + height: 60px; +} +.hair_beard_1_brown { + background-image: url(spritesmith0.png); + background-position: -939px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_brown { + background-image: url(spritesmith0.png); + background-position: -964px -379px; + width: 60px; + height: 60px; +} +.hair_beard_1_candycane { + background-image: url(spritesmith0.png); + background-position: -939px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_candycane { + background-image: url(spritesmith0.png); + background-position: -964px -470px; + width: 60px; + height: 60px; +} +.hair_beard_1_candycorn { + background-image: url(spritesmith0.png); + background-position: -939px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_candycorn { + background-image: url(spritesmith0.png); + background-position: -964px -561px; + width: 60px; + height: 60px; +} +.hair_beard_1_festive { + background-image: url(spritesmith0.png); + background-position: -939px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_festive { + background-image: url(spritesmith0.png); + background-position: -964px -652px; + width: 60px; + height: 60px; +} +.hair_beard_1_frost { + background-image: url(spritesmith0.png); + background-position: -939px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_frost { + background-image: url(spritesmith0.png); + background-position: -964px -743px; + width: 60px; + height: 60px; +} +.hair_beard_1_ghostwhite { + background-image: url(spritesmith0.png); + background-position: -939px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_ghostwhite { + background-image: url(spritesmith0.png); + background-position: -964px -834px; + width: 60px; + height: 60px; +} +.hair_beard_1_green { + background-image: url(spritesmith0.png); + background-position: 0px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_green { + background-image: url(spritesmith0.png); + background-position: -25px -937px; + width: 60px; + height: 60px; +} +.hair_beard_1_halloween { + background-image: url(spritesmith0.png); + background-position: -91px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_halloween { + background-image: url(spritesmith0.png); + background-position: -116px -937px; + width: 60px; + height: 60px; +} +.hair_beard_1_holly { + background-image: url(spritesmith0.png); + background-position: -182px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_holly { + background-image: url(spritesmith0.png); + background-position: -207px -937px; + width: 60px; + height: 60px; +} +.hair_beard_1_hollygreen { + background-image: url(spritesmith0.png); + background-position: -273px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_hollygreen { + background-image: url(spritesmith0.png); + background-position: -298px -937px; + width: 60px; + height: 60px; +} +.hair_beard_1_midnight { + background-image: url(spritesmith0.png); + background-position: -364px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_midnight { + background-image: url(spritesmith0.png); + background-position: -389px -937px; + width: 60px; + height: 60px; +} +.hair_beard_1_pblue { + background-image: url(spritesmith0.png); + background-position: -455px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_pblue { + background-image: url(spritesmith0.png); + background-position: -480px -937px; + width: 60px; + height: 60px; +} +.hair_beard_1_peppermint { + background-image: url(spritesmith0.png); + background-position: -546px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_peppermint { + background-image: url(spritesmith0.png); + background-position: -571px -937px; + width: 60px; + height: 60px; +} +.hair_beard_1_pgreen { + background-image: url(spritesmith0.png); + background-position: -637px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_pgreen { + background-image: url(spritesmith0.png); + background-position: -662px -937px; + width: 60px; + height: 60px; +} +.hair_beard_1_porange { + background-image: url(spritesmith0.png); + background-position: -728px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_porange { + background-image: url(spritesmith0.png); + background-position: -753px -937px; + width: 60px; + height: 60px; +} +.hair_beard_1_ppink { + background-image: url(spritesmith0.png); + background-position: -819px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_ppink { + background-image: url(spritesmith0.png); + background-position: -844px -937px; + width: 60px; + height: 60px; +} +.hair_beard_1_ppurple { + background-image: url(spritesmith0.png); + background-position: -910px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_ppurple { + background-image: url(spritesmith0.png); + background-position: -935px -937px; + width: 60px; + height: 60px; +} +.hair_beard_1_pumpkin { + background-image: url(spritesmith0.png); + background-position: -1030px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_pumpkin { + background-image: url(spritesmith0.png); + background-position: -1055px -15px; + width: 60px; + height: 60px; +} +.hair_beard_1_purple { + background-image: url(spritesmith0.png); + background-position: -1030px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_purple { + background-image: url(spritesmith0.png); + background-position: -1055px -106px; + width: 60px; + height: 60px; +} +.hair_beard_1_pyellow { + background-image: url(spritesmith0.png); + background-position: -1030px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_pyellow { + background-image: url(spritesmith0.png); + background-position: -1055px -197px; + width: 60px; + height: 60px; +} +.hair_beard_1_rainbow { + background-image: url(spritesmith0.png); + background-position: -1030px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_rainbow { + background-image: url(spritesmith0.png); + background-position: -1055px -288px; + width: 60px; + height: 60px; +} +.hair_beard_1_red { + background-image: url(spritesmith0.png); + background-position: -1030px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_red { + background-image: url(spritesmith0.png); + background-position: -1055px -379px; + width: 60px; + height: 60px; +} +.hair_beard_1_snowy { + background-image: url(spritesmith0.png); + background-position: -1030px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_snowy { + background-image: url(spritesmith0.png); + background-position: -1055px -470px; + width: 60px; + height: 60px; +} +.hair_beard_1_white { + background-image: url(spritesmith0.png); + background-position: -1030px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_white { + background-image: url(spritesmith0.png); + background-position: -1055px -561px; + width: 60px; + height: 60px; +} +.hair_beard_1_winternight { + background-image: url(spritesmith0.png); + background-position: -1030px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_winternight { + background-image: url(spritesmith0.png); + background-position: -1055px -652px; + width: 60px; + height: 60px; +} +.hair_beard_1_winterstar { + background-image: url(spritesmith0.png); + background-position: -1030px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_winterstar { + background-image: url(spritesmith0.png); + background-position: -1055px -743px; + width: 60px; + height: 60px; +} +.hair_beard_1_yellow { + background-image: url(spritesmith0.png); + background-position: -1030px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_yellow { + background-image: url(spritesmith0.png); + background-position: -1055px -834px; + width: 60px; + height: 60px; +} +.hair_beard_1_zombie { + background-image: url(spritesmith0.png); + background-position: -1030px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_zombie { + background-image: url(spritesmith0.png); + background-position: -1055px -925px; + width: 60px; + height: 60px; +} +.hair_beard_2_TRUred { + background-image: url(spritesmith0.png); + background-position: 0px -1013px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_TRUred { + background-image: url(spritesmith0.png); + background-position: -25px -1028px; + width: 60px; + height: 60px; +} +.hair_beard_2_aurora { + background-image: url(spritesmith0.png); + background-position: -91px -1013px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_aurora { + background-image: url(spritesmith0.png); + background-position: -116px -1028px; + width: 60px; + height: 60px; +} +.hair_beard_2_black { + background-image: url(spritesmith0.png); + background-position: -182px -1013px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_black { + background-image: url(spritesmith0.png); + background-position: -207px -1028px; + width: 60px; + height: 60px; +} +.hair_beard_2_blond { + background-image: url(spritesmith0.png); + background-position: -273px -1013px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_blond { + background-image: url(spritesmith0.png); + background-position: -298px -1028px; + width: 60px; + height: 60px; +} +.hair_beard_2_blue { + background-image: url(spritesmith0.png); + background-position: -364px -1013px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_blue { + background-image: url(spritesmith0.png); + background-position: -389px -1028px; + width: 60px; + height: 60px; +} +.hair_beard_2_brown { + background-image: url(spritesmith0.png); + background-position: -455px -1013px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_brown { + background-image: url(spritesmith0.png); + background-position: -480px -1028px; + width: 60px; + height: 60px; +} +.hair_beard_2_candycane { + background-image: url(spritesmith0.png); + background-position: -546px -1013px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_candycane { + background-image: url(spritesmith0.png); + background-position: -571px -1028px; + width: 60px; + height: 60px; +} +.hair_beard_2_candycorn { + background-image: url(spritesmith0.png); + background-position: -637px -1013px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_candycorn { + background-image: url(spritesmith0.png); + background-position: -662px -1028px; + width: 60px; + height: 60px; +} +.hair_beard_2_festive { + background-image: url(spritesmith0.png); + background-position: -728px -1013px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_festive { + background-image: url(spritesmith0.png); + background-position: -753px -1028px; + width: 60px; + height: 60px; +} +.hair_beard_2_frost { + background-image: url(spritesmith0.png); + background-position: -819px -1013px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_frost { + background-image: url(spritesmith0.png); + background-position: -844px -1028px; + width: 60px; + height: 60px; +} +.hair_beard_2_ghostwhite { + background-image: url(spritesmith0.png); + background-position: -910px -1013px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_ghostwhite { + background-image: url(spritesmith0.png); + background-position: -935px -1028px; + width: 60px; + height: 60px; +} +.hair_beard_2_green { + background-image: url(spritesmith0.png); + background-position: -1001px -1013px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_green { + background-image: url(spritesmith0.png); + background-position: -1026px -1028px; + width: 60px; + height: 60px; +} +.hair_beard_2_halloween { + background-image: url(spritesmith0.png); + background-position: -1121px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_halloween { + background-image: url(spritesmith0.png); + background-position: -1146px -15px; + width: 60px; + height: 60px; +} +.hair_beard_2_holly { + background-image: url(spritesmith0.png); + background-position: -1121px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_holly { + background-image: url(spritesmith0.png); + background-position: -1146px -106px; + width: 60px; + height: 60px; +} +.hair_beard_2_hollygreen { + background-image: url(spritesmith0.png); + background-position: -1121px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_hollygreen { + background-image: url(spritesmith0.png); + background-position: -1146px -197px; + width: 60px; + height: 60px; +} +.hair_beard_2_midnight { + background-image: url(spritesmith0.png); + background-position: -1121px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_midnight { + background-image: url(spritesmith0.png); + background-position: -1146px -288px; + width: 60px; + height: 60px; +} +.hair_beard_2_pblue { + background-image: url(spritesmith0.png); + background-position: -1121px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_pblue { + background-image: url(spritesmith0.png); + background-position: -1146px -379px; + width: 60px; + height: 60px; +} +.hair_beard_2_peppermint { + background-image: url(spritesmith0.png); + background-position: -1121px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_peppermint { + background-image: url(spritesmith0.png); + background-position: -1146px -470px; + width: 60px; + height: 60px; +} +.hair_beard_2_pgreen { + background-image: url(spritesmith0.png); + background-position: -1121px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_pgreen { + background-image: url(spritesmith0.png); + background-position: -1146px -561px; + width: 60px; + height: 60px; +} +.hair_beard_2_porange { + background-image: url(spritesmith0.png); + background-position: -1121px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_porange { + background-image: url(spritesmith0.png); + background-position: -1146px -652px; + width: 60px; + height: 60px; +} +.hair_beard_2_ppink { + background-image: url(spritesmith0.png); + background-position: -1121px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_ppink { + background-image: url(spritesmith0.png); + background-position: -1146px -743px; + width: 60px; + height: 60px; +} +.hair_beard_2_ppurple { + background-image: url(spritesmith0.png); + background-position: -1121px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_ppurple { + background-image: url(spritesmith0.png); + background-position: -1146px -834px; + width: 60px; + height: 60px; +} +.hair_beard_2_pumpkin { + background-image: url(spritesmith0.png); + background-position: -1121px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_pumpkin { + background-image: url(spritesmith0.png); + background-position: -1146px -925px; + width: 60px; + height: 60px; +} +.hair_beard_2_purple { + background-image: url(spritesmith0.png); + background-position: -1121px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_purple { + background-image: url(spritesmith0.png); + background-position: -1146px -1016px; + width: 60px; + height: 60px; +} +.hair_beard_2_pyellow { + background-image: url(spritesmith0.png); + background-position: 0px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_pyellow { + background-image: url(spritesmith0.png); + background-position: -25px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_2_rainbow { + background-image: url(spritesmith0.png); + background-position: -91px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_rainbow { + background-image: url(spritesmith0.png); + background-position: -116px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_2_red { + background-image: url(spritesmith0.png); + background-position: -182px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_red { + background-image: url(spritesmith0.png); + background-position: -207px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_2_snowy { + background-image: url(spritesmith0.png); + background-position: -273px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_snowy { + background-image: url(spritesmith0.png); + background-position: -298px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_2_white { + background-image: url(spritesmith0.png); + background-position: -364px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_white { + background-image: url(spritesmith0.png); + background-position: -389px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_2_winternight { + background-image: url(spritesmith0.png); + background-position: -455px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_winternight { + background-image: url(spritesmith0.png); + background-position: -480px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_2_winterstar { + background-image: url(spritesmith0.png); + background-position: -546px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_winterstar { + background-image: url(spritesmith0.png); + background-position: -571px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_2_yellow { + background-image: url(spritesmith0.png); + background-position: -637px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_yellow { + background-image: url(spritesmith0.png); + background-position: -662px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_2_zombie { + background-image: url(spritesmith0.png); + background-position: -728px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_zombie { + background-image: url(spritesmith0.png); + background-position: -753px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_3_TRUred { + background-image: url(spritesmith0.png); + background-position: -819px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_TRUred { + background-image: url(spritesmith0.png); + background-position: -844px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_3_aurora { + background-image: url(spritesmith0.png); + background-position: -910px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_aurora { + background-image: url(spritesmith0.png); + background-position: -935px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_3_black { + background-image: url(spritesmith0.png); + background-position: -1001px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_black { + background-image: url(spritesmith0.png); + background-position: -1026px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_3_blond { + background-image: url(spritesmith0.png); + background-position: -1092px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_blond { + background-image: url(spritesmith0.png); + background-position: -1117px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_3_blue { + background-image: url(spritesmith0.png); + background-position: -1212px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_blue { + background-image: url(spritesmith0.png); + background-position: -1237px -15px; + width: 60px; + height: 60px; +} +.hair_beard_3_brown { + background-image: url(spritesmith0.png); + background-position: -1212px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_brown { + background-image: url(spritesmith0.png); + background-position: -1237px -106px; + width: 60px; + height: 60px; +} +.hair_beard_3_candycane { + background-image: url(spritesmith0.png); + background-position: -1212px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_candycane { + background-image: url(spritesmith0.png); + background-position: -1237px -197px; + width: 60px; + height: 60px; +} +.hair_beard_3_candycorn { + background-image: url(spritesmith0.png); + background-position: -1212px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_candycorn { + background-image: url(spritesmith0.png); + background-position: -1237px -288px; + width: 60px; + height: 60px; +} +.hair_beard_3_festive { + background-image: url(spritesmith0.png); + background-position: -1212px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_festive { + background-image: url(spritesmith0.png); + background-position: -1237px -379px; + width: 60px; + height: 60px; +} +.hair_beard_3_frost { + background-image: url(spritesmith0.png); + background-position: -1212px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_frost { + background-image: url(spritesmith0.png); + background-position: -1237px -470px; + width: 60px; + height: 60px; +} +.hair_beard_3_ghostwhite { + background-image: url(spritesmith0.png); + background-position: -1212px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_ghostwhite { + background-image: url(spritesmith0.png); + background-position: -1237px -561px; + width: 60px; + height: 60px; +} +.hair_beard_3_green { + background-image: url(spritesmith0.png); + background-position: -1212px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_green { + background-image: url(spritesmith0.png); + background-position: -1237px -652px; + width: 60px; + height: 60px; +} +.hair_beard_3_halloween { + background-image: url(spritesmith0.png); + background-position: -1212px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_halloween { + background-image: url(spritesmith0.png); + background-position: -1237px -743px; + width: 60px; + height: 60px; +} +.hair_beard_3_holly { + background-image: url(spritesmith0.png); + background-position: -1212px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_holly { + background-image: url(spritesmith0.png); + background-position: -1237px -834px; + width: 60px; + height: 60px; +} +.hair_beard_3_hollygreen { + background-image: url(spritesmith0.png); + background-position: -1212px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_hollygreen { + background-image: url(spritesmith0.png); + background-position: -1237px -925px; + width: 60px; + height: 60px; +} +.hair_beard_3_midnight { + background-image: url(spritesmith0.png); + background-position: -1212px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_midnight { + background-image: url(spritesmith0.png); + background-position: -1237px -1016px; + width: 60px; + height: 60px; +} +.hair_beard_3_pblue { + background-image: url(spritesmith0.png); + background-position: -1212px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_pblue { + background-image: url(spritesmith0.png); + background-position: -1237px -1107px; + width: 60px; + height: 60px; +} +.hair_beard_3_peppermint { + background-image: url(spritesmith0.png); + background-position: 0px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_peppermint { + background-image: url(spritesmith0.png); + background-position: -25px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_3_pgreen { + background-image: url(spritesmith0.png); + background-position: -91px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_pgreen { + background-image: url(spritesmith0.png); + background-position: -116px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_3_porange { + background-image: url(spritesmith0.png); + background-position: -182px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_porange { + background-image: url(spritesmith0.png); + background-position: -207px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_3_ppink { + background-image: url(spritesmith0.png); + background-position: -273px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_ppink { + background-image: url(spritesmith0.png); + background-position: -298px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_3_ppurple { + background-image: url(spritesmith0.png); + background-position: -364px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_ppurple { + background-image: url(spritesmith0.png); + background-position: -389px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_3_pumpkin { + background-image: url(spritesmith0.png); + background-position: -455px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_pumpkin { + background-image: url(spritesmith0.png); + background-position: -480px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_3_purple { + background-image: url(spritesmith0.png); + background-position: -546px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_purple { + background-image: url(spritesmith0.png); + background-position: -571px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_3_pyellow { + background-image: url(spritesmith0.png); + background-position: -637px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_pyellow { + background-image: url(spritesmith0.png); + background-position: -662px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_3_rainbow { + background-image: url(spritesmith0.png); + background-position: -728px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_rainbow { + background-image: url(spritesmith0.png); + background-position: -753px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_3_red { + background-image: url(spritesmith0.png); + background-position: -819px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_red { + background-image: url(spritesmith0.png); + background-position: -844px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_3_snowy { + background-image: url(spritesmith0.png); + background-position: -910px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_snowy { + background-image: url(spritesmith0.png); + background-position: -935px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_3_white { + background-image: url(spritesmith0.png); + background-position: -1001px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_white { + background-image: url(spritesmith0.png); + background-position: -1026px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_3_winternight { + background-image: url(spritesmith0.png); + background-position: -1092px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_winternight { + background-image: url(spritesmith0.png); + background-position: -1117px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_3_winterstar { + background-image: url(spritesmith0.png); + background-position: -1183px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_winterstar { + background-image: url(spritesmith0.png); + background-position: -1208px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_3_yellow { + background-image: url(spritesmith0.png); + background-position: -1303px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_yellow { + background-image: url(spritesmith0.png); + background-position: -1328px -15px; + width: 60px; + height: 60px; +} +.hair_beard_3_zombie { + background-image: url(spritesmith0.png); + background-position: -1303px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_zombie { + background-image: url(spritesmith0.png); + background-position: -1328px -106px; + width: 60px; + height: 60px; +} +.hair_mustache_1_TRUred { + background-image: url(spritesmith0.png); + background-position: -1303px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_TRUred { + background-image: url(spritesmith0.png); + background-position: -1328px -197px; + width: 60px; + height: 60px; +} +.hair_mustache_1_aurora { + background-image: url(spritesmith0.png); + background-position: -1303px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_aurora { + background-image: url(spritesmith0.png); + background-position: -1328px -288px; + width: 60px; + height: 60px; +} +.hair_mustache_1_black { + background-image: url(spritesmith0.png); + background-position: -1303px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_black { + background-image: url(spritesmith0.png); + background-position: -1328px -379px; + width: 60px; + height: 60px; +} +.hair_mustache_1_blond { + background-image: url(spritesmith0.png); + background-position: -1303px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_blond { + background-image: url(spritesmith0.png); + background-position: -1328px -470px; + width: 60px; + height: 60px; +} +.hair_mustache_1_blue { + background-image: url(spritesmith0.png); + background-position: -1303px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_blue { + background-image: url(spritesmith0.png); + background-position: -1328px -561px; + width: 60px; + height: 60px; +} +.hair_mustache_1_brown { + background-image: url(spritesmith0.png); + background-position: -1303px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_brown { + background-image: url(spritesmith0.png); + background-position: -1328px -652px; + width: 60px; + height: 60px; +} +.hair_mustache_1_candycane { + background-image: url(spritesmith0.png); + background-position: -1303px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_candycane { + background-image: url(spritesmith0.png); + background-position: -1328px -743px; + width: 60px; + height: 60px; +} +.hair_mustache_1_candycorn { + background-image: url(spritesmith0.png); + background-position: -1303px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_candycorn { + background-image: url(spritesmith0.png); + background-position: -1328px -834px; + width: 60px; + height: 60px; +} +.hair_mustache_1_festive { + background-image: url(spritesmith0.png); + background-position: -1303px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_festive { + background-image: url(spritesmith0.png); + background-position: -1328px -925px; + width: 60px; + height: 60px; +} +.hair_mustache_1_frost { + background-image: url(spritesmith0.png); + background-position: -1303px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_frost { + background-image: url(spritesmith0.png); + background-position: -1328px -1016px; + width: 60px; + height: 60px; +} +.hair_mustache_1_ghostwhite { + background-image: url(spritesmith0.png); + background-position: -1303px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_ghostwhite { + background-image: url(spritesmith0.png); + background-position: -1328px -1107px; + width: 60px; + height: 60px; +} +.hair_mustache_1_green { + background-image: url(spritesmith0.png); + background-position: -1303px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_green { + background-image: url(spritesmith0.png); + background-position: -1328px -1198px; + width: 60px; + height: 60px; +} +.hair_mustache_1_halloween { + background-image: url(spritesmith0.png); + background-position: 0px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_halloween { + background-image: url(spritesmith0.png); + background-position: -25px -1301px; + width: 60px; + height: 60px; +} +.hair_mustache_1_holly { + background-image: url(spritesmith0.png); + background-position: -91px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_holly { + background-image: url(spritesmith0.png); + background-position: -116px -1301px; + width: 60px; + height: 60px; +} +.hair_mustache_1_hollygreen { + background-image: url(spritesmith0.png); + background-position: -182px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_hollygreen { + background-image: url(spritesmith0.png); + background-position: -207px -1301px; + width: 60px; + height: 60px; +} +.hair_mustache_1_midnight { + background-image: url(spritesmith0.png); + background-position: -273px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_midnight { + background-image: url(spritesmith0.png); + background-position: -298px -1301px; + width: 60px; + height: 60px; +} +.hair_mustache_1_pblue { + background-image: url(spritesmith0.png); + background-position: -364px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_pblue { + background-image: url(spritesmith0.png); + background-position: -389px -1301px; + width: 60px; + height: 60px; +} +.hair_mustache_1_peppermint { + background-image: url(spritesmith0.png); + background-position: -455px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_peppermint { + background-image: url(spritesmith0.png); + background-position: -480px -1301px; + width: 60px; + height: 60px; +} +.hair_mustache_1_pgreen { + background-image: url(spritesmith0.png); + background-position: -546px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_pgreen { + background-image: url(spritesmith0.png); + background-position: -571px -1301px; + width: 60px; + height: 60px; +} +.hair_mustache_1_porange { + background-image: url(spritesmith0.png); + background-position: -637px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_porange { + background-image: url(spritesmith0.png); + background-position: -662px -1301px; + width: 60px; + height: 60px; +} +.hair_mustache_1_ppink { + background-image: url(spritesmith0.png); + background-position: -728px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_ppink { + background-image: url(spritesmith0.png); + background-position: -753px -1301px; + width: 60px; + height: 60px; +} +.hair_mustache_1_ppurple { + background-image: url(spritesmith0.png); + background-position: -819px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_ppurple { + background-image: url(spritesmith0.png); + background-position: -844px -1301px; + width: 60px; + height: 60px; +} +.hair_mustache_1_pumpkin { + background-image: url(spritesmith0.png); + background-position: -910px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_pumpkin { + background-image: url(spritesmith0.png); + background-position: -935px -1301px; + width: 60px; + height: 60px; +} +.hair_mustache_1_purple { + background-image: url(spritesmith0.png); + background-position: -1001px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_purple { + background-image: url(spritesmith0.png); + background-position: -1026px -1301px; + width: 60px; + height: 60px; +} +.hair_mustache_1_pyellow { + background-image: url(spritesmith0.png); + background-position: -1092px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_pyellow { + background-image: url(spritesmith0.png); + background-position: -1117px -1301px; + width: 60px; + height: 60px; +} +.hair_mustache_1_rainbow { + background-image: url(spritesmith0.png); + background-position: -1183px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_rainbow { + background-image: url(spritesmith0.png); + background-position: -1208px -1301px; + width: 60px; + height: 60px; +} +.hair_mustache_1_red { + background-image: url(spritesmith0.png); + background-position: -1274px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_red { + background-image: url(spritesmith0.png); + background-position: -1299px -1301px; + width: 60px; + height: 60px; +} +.hair_mustache_1_snowy { + background-image: url(spritesmith0.png); + background-position: -425px -592px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_snowy { + background-image: url(spritesmith0.png); + background-position: -450px -607px; + width: 60px; + height: 60px; +} +.hair_mustache_1_white { + background-image: url(spritesmith0.png); + background-position: -1394px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_white { + background-image: url(spritesmith0.png); + background-position: -1419px -106px; + width: 60px; + height: 60px; +} +.hair_mustache_1_winternight { + background-image: url(spritesmith0.png); + background-position: -1394px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_winternight { + background-image: url(spritesmith0.png); + background-position: -1419px -197px; + width: 60px; + height: 60px; +} +.hair_mustache_1_winterstar { + background-image: url(spritesmith0.png); + background-position: -1394px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_winterstar { + background-image: url(spritesmith0.png); + background-position: -1419px -288px; + width: 60px; + height: 60px; +} +.hair_mustache_1_yellow { + background-image: url(spritesmith0.png); + background-position: -1394px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_yellow { + background-image: url(spritesmith0.png); + background-position: -1419px -379px; + width: 60px; + height: 60px; +} +.hair_mustache_1_zombie { + background-image: url(spritesmith0.png); + background-position: -1394px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_zombie { + background-image: url(spritesmith0.png); + background-position: -1419px -470px; + width: 60px; + height: 60px; +} +.hair_mustache_2_TRUred { + background-image: url(spritesmith0.png); + background-position: -1394px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_TRUred { + background-image: url(spritesmith0.png); + background-position: -1419px -561px; + width: 60px; + height: 60px; +} +.hair_mustache_2_aurora { + background-image: url(spritesmith0.png); + background-position: -1394px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_aurora { + background-image: url(spritesmith0.png); + background-position: -1419px -652px; + width: 60px; + height: 60px; +} +.hair_mustache_2_black { + background-image: url(spritesmith0.png); + background-position: -1394px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_black { + background-image: url(spritesmith0.png); + background-position: -1419px -743px; + width: 60px; + height: 60px; +} +.hair_mustache_2_blond { + background-image: url(spritesmith0.png); + background-position: -1394px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_blond { + background-image: url(spritesmith0.png); + background-position: -1419px -834px; + width: 60px; + height: 60px; +} +.hair_mustache_2_blue { + background-image: url(spritesmith0.png); + background-position: -1394px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_blue { + background-image: url(spritesmith0.png); + background-position: -1419px -925px; + width: 60px; + height: 60px; +} +.hair_mustache_2_brown { + background-image: url(spritesmith0.png); + background-position: -1394px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_brown { + background-image: url(spritesmith0.png); + background-position: -1419px -1016px; + width: 60px; + height: 60px; +} +.hair_mustache_2_candycane { + background-image: url(spritesmith0.png); + background-position: -1394px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_candycane { + background-image: url(spritesmith0.png); + background-position: -1419px -1107px; + width: 60px; + height: 60px; +} +.hair_mustache_2_candycorn { + background-image: url(spritesmith0.png); + background-position: -1394px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_candycorn { + background-image: url(spritesmith0.png); + background-position: -1419px -1198px; + width: 60px; + height: 60px; +} +.hair_mustache_2_festive { + background-image: url(spritesmith0.png); + background-position: -1394px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_festive { + background-image: url(spritesmith0.png); + background-position: -1419px -1289px; + width: 60px; + height: 60px; +} +.hair_mustache_2_frost { + background-image: url(spritesmith0.png); + background-position: 0px -1377px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_frost { + background-image: url(spritesmith0.png); + background-position: -25px -1392px; + width: 60px; + height: 60px; +} +.hair_mustache_2_ghostwhite { + background-image: url(spritesmith0.png); + background-position: -91px -1377px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_ghostwhite { + background-image: url(spritesmith0.png); + background-position: -116px -1392px; + width: 60px; + height: 60px; +} +.hair_mustache_2_green { + background-image: url(spritesmith0.png); + background-position: -182px -1377px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_green { + background-image: url(spritesmith0.png); + background-position: -207px -1392px; + width: 60px; + height: 60px; +} +.hair_mustache_2_halloween { + background-image: url(spritesmith0.png); + background-position: -273px -1377px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_halloween { + background-image: url(spritesmith0.png); + background-position: -298px -1392px; + width: 60px; + height: 60px; +} +.hair_mustache_2_holly { + background-image: url(spritesmith0.png); + background-position: -364px -1377px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_holly { + background-image: url(spritesmith0.png); + background-position: -389px -1392px; + width: 60px; + height: 60px; +} +.hair_mustache_2_hollygreen { + background-image: url(spritesmith0.png); + background-position: -455px -1377px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_hollygreen { + background-image: url(spritesmith0.png); + background-position: -480px -1392px; + width: 60px; + height: 60px; +} +.hair_mustache_2_midnight { + background-image: url(spritesmith0.png); + background-position: -546px -1377px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_midnight { + background-image: url(spritesmith0.png); + background-position: -571px -1392px; + width: 60px; + height: 60px; +} +.hair_mustache_2_pblue { + background-image: url(spritesmith0.png); + background-position: -637px -1377px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_pblue { + background-image: url(spritesmith0.png); + background-position: -662px -1392px; + width: 60px; + height: 60px; +} +.hair_mustache_2_peppermint { + background-image: url(spritesmith0.png); + background-position: -728px -1377px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_peppermint { + background-image: url(spritesmith0.png); + background-position: -753px -1392px; + width: 60px; + height: 60px; +} +.hair_mustache_2_pgreen { + background-image: url(spritesmith0.png); + background-position: -819px -1377px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_pgreen { + background-image: url(spritesmith0.png); + background-position: -844px -1392px; + width: 60px; + height: 60px; +} +.hair_mustache_2_porange { + background-image: url(spritesmith0.png); + background-position: -910px -1377px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_porange { + background-image: url(spritesmith0.png); + background-position: -935px -1392px; + width: 60px; + height: 60px; +} +.hair_mustache_2_ppink { + background-image: url(spritesmith0.png); + background-position: -1001px -1377px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_ppink { + background-image: url(spritesmith0.png); + background-position: -1026px -1392px; + width: 60px; + height: 60px; +} +.hair_mustache_2_ppurple { + background-image: url(spritesmith0.png); + background-position: -1092px -1377px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_ppurple { + background-image: url(spritesmith0.png); + background-position: -1117px -1392px; + width: 60px; + height: 60px; +} +.hair_mustache_2_pumpkin { + background-image: url(spritesmith0.png); + background-position: -1183px -1377px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_pumpkin { + background-image: url(spritesmith0.png); + background-position: -1208px -1392px; + width: 60px; + height: 60px; +} +.hair_mustache_2_purple { + background-image: url(spritesmith0.png); + background-position: -1274px -1377px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_purple { + background-image: url(spritesmith0.png); + background-position: -1299px -1392px; + width: 60px; + height: 60px; +} +.hair_mustache_2_pyellow { + background-image: url(spritesmith0.png); + background-position: -1365px -1377px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_pyellow { + background-image: url(spritesmith0.png); + background-position: -1390px -1392px; + width: 60px; + height: 60px; +} +.hair_mustache_2_rainbow { + background-image: url(spritesmith0.png); + background-position: -1485px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_rainbow { + background-image: url(spritesmith0.png); + background-position: -1510px -15px; + width: 60px; + height: 60px; +} +.hair_mustache_2_red { + background-image: url(spritesmith0.png); + background-position: -1485px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_red { + background-image: url(spritesmith0.png); + background-position: -1510px -106px; + width: 60px; + height: 60px; +} +.hair_mustache_2_snowy { + background-image: url(spritesmith0.png); + background-position: -1485px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_snowy { + background-image: url(spritesmith0.png); + background-position: -1510px -197px; + width: 60px; + height: 60px; +} +.hair_mustache_2_white { + background-image: url(spritesmith0.png); + background-position: -1485px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_white { + background-image: url(spritesmith0.png); + background-position: -1510px -288px; + width: 60px; + height: 60px; +} +.hair_mustache_2_winternight { + background-image: url(spritesmith0.png); + background-position: -1485px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_winternight { + background-image: url(spritesmith0.png); + background-position: -1510px -379px; + width: 60px; + height: 60px; +} +.hair_mustache_2_winterstar { + background-image: url(spritesmith0.png); + background-position: -1485px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_winterstar { + background-image: url(spritesmith0.png); + background-position: -1510px -470px; + width: 60px; + height: 60px; +} +.hair_mustache_2_yellow { + background-image: url(spritesmith0.png); + background-position: -1485px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_yellow { + background-image: url(spritesmith0.png); + background-position: -1510px -561px; + width: 60px; + height: 60px; +} +.hair_mustache_2_zombie { + background-image: url(spritesmith0.png); + background-position: -1485px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_zombie { + background-image: url(spritesmith0.png); + background-position: -1510px -652px; + width: 60px; + height: 60px; +} +.hair_flower_1 { + background-image: url(spritesmith0.png); + background-position: -1485px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_flower_1 { + background-image: url(spritesmith0.png); + background-position: -1510px -743px; + width: 60px; + height: 60px; +} +.hair_flower_2 { + background-image: url(spritesmith0.png); + background-position: -1485px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_flower_2 { + background-image: url(spritesmith0.png); + background-position: -1510px -834px; + width: 60px; + height: 60px; +} +.hair_flower_3 { + background-image: url(spritesmith0.png); + background-position: -1485px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_flower_3 { + background-image: url(spritesmith0.png); + background-position: -1510px -925px; + width: 60px; + height: 60px; +} +.hair_flower_4 { + background-image: url(spritesmith0.png); + background-position: -1485px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_flower_4 { + background-image: url(spritesmith0.png); + background-position: -1510px -1016px; + width: 60px; + height: 60px; +} +.hair_flower_5 { + background-image: url(spritesmith0.png); + background-position: -1485px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_flower_5 { + background-image: url(spritesmith0.png); + background-position: -1510px -1107px; + width: 60px; + height: 60px; +} +.hair_flower_6 { + background-image: url(spritesmith0.png); + background-position: -1485px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_flower_6 { + background-image: url(spritesmith0.png); + background-position: -1510px -1198px; + width: 60px; + height: 60px; +} +.hair_bangs_1_TRUred { + background-image: url(spritesmith0.png); + background-position: -1485px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_TRUred { + background-image: url(spritesmith0.png); + background-position: -1510px -1289px; + width: 60px; + height: 60px; +} +.hair_bangs_1_aurora { + background-image: url(spritesmith0.png); + background-position: -1485px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_aurora { + background-image: url(spritesmith0.png); + background-position: -1510px -1380px; + width: 60px; + height: 60px; +} +.hair_bangs_1_black { + background-image: url(spritesmith0.png); + background-position: 0px -1468px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_black { + background-image: url(spritesmith0.png); + background-position: -25px -1483px; + width: 60px; + height: 60px; +} +.hair_bangs_1_blond { + background-image: url(spritesmith0.png); + background-position: -91px -1468px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_blond { + background-image: url(spritesmith0.png); + background-position: -116px -1483px; + width: 60px; + height: 60px; +} +.hair_bangs_1_blue { + background-image: url(spritesmith0.png); + background-position: -182px -1468px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_blue { + background-image: url(spritesmith0.png); + background-position: -207px -1483px; + width: 60px; + height: 60px; +} +.hair_bangs_1_brown { + background-image: url(spritesmith0.png); + background-position: -273px -1468px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_brown { + background-image: url(spritesmith0.png); + background-position: -298px -1483px; + width: 60px; + height: 60px; +} +.hair_bangs_1_candycane { + background-image: url(spritesmith0.png); + background-position: -364px -1468px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_candycane { + background-image: url(spritesmith0.png); + background-position: -389px -1483px; + width: 60px; + height: 60px; +} +.hair_bangs_1_candycorn { + background-image: url(spritesmith0.png); + background-position: -455px -1468px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_candycorn { + background-image: url(spritesmith0.png); + background-position: -480px -1483px; + width: 60px; + height: 60px; +} +.hair_bangs_1_festive { + background-image: url(spritesmith0.png); + background-position: -546px -1468px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_festive { + background-image: url(spritesmith0.png); + background-position: -571px -1483px; + width: 60px; + height: 60px; +} +.hair_bangs_1_frost { + background-image: url(spritesmith0.png); + background-position: -637px -1468px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_frost { + background-image: url(spritesmith0.png); + background-position: -662px -1483px; + width: 60px; + height: 60px; +} +.hair_bangs_1_ghostwhite { + background-image: url(spritesmith0.png); + background-position: -728px -1468px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_ghostwhite { + background-image: url(spritesmith0.png); + background-position: -753px -1483px; + width: 60px; + height: 60px; +} +.hair_bangs_1_green { + background-image: url(spritesmith0.png); + background-position: -819px -1468px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_green { + background-image: url(spritesmith0.png); + background-position: -844px -1483px; + width: 60px; + height: 60px; +} +.hair_bangs_1_halloween { + background-image: url(spritesmith0.png); + background-position: -910px -1468px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_halloween { + background-image: url(spritesmith0.png); + background-position: -935px -1483px; + width: 60px; + height: 60px; +} +.hair_bangs_1_holly { + background-image: url(spritesmith0.png); + background-position: -1001px -1468px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_holly { + background-image: url(spritesmith0.png); + background-position: -1026px -1483px; + width: 60px; + height: 60px; +} +.hair_bangs_1_hollygreen { + background-image: url(spritesmith0.png); + background-position: -1092px -1468px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_hollygreen { + background-image: url(spritesmith0.png); + background-position: -1117px -1483px; + width: 60px; + height: 60px; +} +.hair_bangs_1_midnight { + background-image: url(spritesmith0.png); + background-position: -1183px -1468px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_midnight { + background-image: url(spritesmith0.png); + background-position: -1208px -1483px; + width: 60px; + height: 60px; +} +.hair_bangs_1_pblue { + background-image: url(spritesmith0.png); + background-position: -1274px -1468px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_pblue { + background-image: url(spritesmith0.png); + background-position: -1299px -1483px; + width: 60px; + height: 60px; +} +.hair_bangs_1_peppermint { + background-image: url(spritesmith0.png); + background-position: -1365px -1468px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_peppermint { + background-image: url(spritesmith0.png); + background-position: -1390px -1483px; + width: 60px; + height: 60px; +} +.hair_bangs_1_pgreen { + background-image: url(spritesmith0.png); + background-position: -1456px -1468px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_pgreen { + background-image: url(spritesmith0.png); + background-position: -1481px -1483px; + width: 60px; + height: 60px; +} +.hair_bangs_1_porange { + background-image: url(spritesmith0.png); + background-position: -1576px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_porange { + background-image: url(spritesmith0.png); + background-position: -1601px -15px; + width: 60px; + height: 60px; +} +.hair_bangs_1_ppink { + background-image: url(spritesmith0.png); + background-position: -1576px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_ppink { + background-image: url(spritesmith0.png); + background-position: -1601px -106px; + width: 60px; + height: 60px; +} +.hair_bangs_1_ppurple { + background-image: url(spritesmith0.png); + background-position: -1576px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_ppurple { + background-image: url(spritesmith0.png); + background-position: -1601px -197px; + width: 60px; + height: 60px; +} +.hair_bangs_1_pumpkin { + background-image: url(spritesmith0.png); + background-position: -1576px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_pumpkin { + background-image: url(spritesmith0.png); + background-position: -1601px -288px; + width: 60px; + height: 60px; +} +.hair_bangs_1_purple { + background-image: url(spritesmith0.png); + background-position: -1576px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_purple { + background-image: url(spritesmith0.png); + background-position: -1601px -379px; + width: 60px; + height: 60px; +} +.hair_bangs_1_pyellow { + background-image: url(spritesmith0.png); + background-position: -1576px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_pyellow { + background-image: url(spritesmith0.png); + background-position: -1601px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_1_rainbow { + background-image: url(spritesmith0.png); + background-position: -1576px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_rainbow { + background-image: url(spritesmith0.png); + background-position: -1601px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_1_red { + background-image: url(spritesmith0.png); + background-position: -1576px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_red { + background-image: url(spritesmith0.png); + background-position: -1601px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_1_snowy { + background-image: url(spritesmith0.png); + background-position: -1576px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_snowy { + background-image: url(spritesmith0.png); + background-position: -1601px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_1_white { + background-image: url(spritesmith0.png); + background-position: -1576px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_white { + background-image: url(spritesmith0.png); + background-position: -1601px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_1_winternight { + background-image: url(spritesmith0.png); + background-position: -1576px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_winternight { + background-image: url(spritesmith0.png); + background-position: -1601px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_1_winterstar { + background-image: url(spritesmith0.png); + background-position: -1576px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_winterstar { + background-image: url(spritesmith0.png); + background-position: -1601px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_1_yellow { + background-image: url(spritesmith0.png); + background-position: -1576px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_yellow { + background-image: url(spritesmith0.png); + background-position: -1601px -1107px; + width: 60px; + height: 60px; +} +.hair_bangs_1_zombie { + background-image: url(spritesmith0.png); + background-position: -1576px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_zombie { + background-image: url(spritesmith0.png); + background-position: -1601px -1198px; + width: 60px; + height: 60px; +} +.hair_bangs_2_TRUred { + background-image: url(spritesmith0.png); + background-position: -1576px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_TRUred { + background-image: url(spritesmith0.png); + background-position: -1601px -1289px; + width: 60px; + height: 60px; +} +.hair_bangs_2_aurora { + background-image: url(spritesmith0.png); + background-position: -1576px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_aurora { + background-image: url(spritesmith0.png); + background-position: -1601px -1380px; + width: 60px; + height: 60px; +} +.hair_bangs_2_black { + background-image: url(spritesmith0.png); + background-position: -1576px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_black { + background-image: url(spritesmith0.png); + background-position: -1601px -1471px; + width: 60px; + height: 60px; +} +.hair_bangs_2_blond { + background-image: url(spritesmith0.png); + background-position: 0px -1559px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_blond { + background-image: url(spritesmith0.png); + background-position: -25px -1574px; + width: 60px; + height: 60px; +} +.hair_bangs_2_blue { + background-image: url(spritesmith0.png); + background-position: -91px -1559px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_blue { + background-image: url(spritesmith0.png); + background-position: -116px -1574px; + width: 60px; + height: 60px; +} +.hair_bangs_2_brown { + background-image: url(spritesmith0.png); + background-position: -182px -1559px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_brown { + background-image: url(spritesmith0.png); + background-position: -207px -1574px; + width: 60px; + height: 60px; +} +.hair_bangs_2_candycane { + background-image: url(spritesmith0.png); + background-position: -273px -1559px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_candycane { + background-image: url(spritesmith0.png); + background-position: -298px -1574px; + width: 60px; + height: 60px; +} +.hair_bangs_2_candycorn { + background-image: url(spritesmith0.png); + background-position: -364px -1559px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_candycorn { + background-image: url(spritesmith0.png); + background-position: -389px -1574px; + width: 60px; + height: 60px; +} +.hair_bangs_2_festive { + background-image: url(spritesmith0.png); + background-position: -455px -1559px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_festive { + background-image: url(spritesmith0.png); + background-position: -480px -1574px; + width: 60px; + height: 60px; +} +.hair_bangs_2_frost { + background-image: url(spritesmith0.png); + background-position: -546px -1559px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_frost { + background-image: url(spritesmith0.png); + background-position: -571px -1574px; + width: 60px; + height: 60px; +} +.hair_bangs_2_ghostwhite { + background-image: url(spritesmith0.png); + background-position: -637px -1559px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_ghostwhite { + background-image: url(spritesmith0.png); + background-position: -662px -1574px; + width: 60px; + height: 60px; +} +.hair_bangs_2_green { + background-image: url(spritesmith0.png); + background-position: -728px -1559px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_green { + background-image: url(spritesmith0.png); + background-position: -753px -1574px; + width: 60px; + height: 60px; +} +.hair_bangs_2_halloween { + background-image: url(spritesmith0.png); + background-position: -819px -1559px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_halloween { + background-image: url(spritesmith0.png); + background-position: -844px -1574px; + width: 60px; + height: 60px; +} +.hair_bangs_2_holly { + background-image: url(spritesmith0.png); + background-position: -910px -1559px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_holly { + background-image: url(spritesmith0.png); + background-position: -935px -1574px; + width: 60px; + height: 60px; +} +.hair_bangs_2_hollygreen { + background-image: url(spritesmith0.png); + background-position: -1001px -1559px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_hollygreen { + background-image: url(spritesmith0.png); + background-position: -1026px -1574px; + width: 60px; + height: 60px; +} +.hair_bangs_2_midnight { + background-image: url(spritesmith0.png); + background-position: -1092px -1559px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_midnight { + background-image: url(spritesmith0.png); + background-position: -1117px -1574px; + width: 60px; + height: 60px; +} +.hair_bangs_2_pblue { + background-image: url(spritesmith0.png); + background-position: -1183px -1559px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_pblue { + background-image: url(spritesmith0.png); + background-position: -1208px -1574px; + width: 60px; + height: 60px; +} +.hair_bangs_2_peppermint { + background-image: url(spritesmith0.png); + background-position: -1274px -1559px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_peppermint { + background-image: url(spritesmith0.png); + background-position: -1299px -1574px; + width: 60px; + height: 60px; +} +.hair_bangs_2_pgreen { + background-image: url(spritesmith0.png); + background-position: -1365px -1559px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_pgreen { + background-image: url(spritesmith0.png); + background-position: -1390px -1574px; + width: 60px; + height: 60px; +} +.hair_bangs_2_porange { + background-image: url(spritesmith0.png); + background-position: -1456px -1559px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_porange { + background-image: url(spritesmith0.png); + background-position: -1481px -1574px; + width: 60px; + height: 60px; +} +.hair_bangs_2_ppink { + background-image: url(spritesmith0.png); + background-position: -1547px -1559px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_ppink { + background-image: url(spritesmith0.png); + background-position: -1572px -1574px; + width: 60px; + height: 60px; +} +.hair_bangs_2_ppurple { + background-image: url(spritesmith0.png); + background-position: -1667px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_ppurple { + background-image: url(spritesmith0.png); + background-position: -1692px -15px; + width: 60px; + height: 60px; +} +.hair_bangs_2_pumpkin { + background-image: url(spritesmith0.png); + background-position: -1667px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_pumpkin { + background-image: url(spritesmith0.png); + background-position: -1692px -106px; + width: 60px; + height: 60px; +} +.hair_bangs_2_purple { + background-image: url(spritesmith0.png); + background-position: -1667px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_purple { + background-image: url(spritesmith0.png); + background-position: -1692px -197px; + width: 60px; + height: 60px; +} +.hair_bangs_2_pyellow { + background-image: url(spritesmith0.png); + background-position: -1667px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_pyellow { + background-image: url(spritesmith0.png); + background-position: -1692px -288px; + width: 60px; + height: 60px; +} +.hair_bangs_2_rainbow { + background-image: url(spritesmith0.png); + background-position: -1667px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_rainbow { + background-image: url(spritesmith0.png); + background-position: -1692px -379px; + width: 60px; + height: 60px; +} +.hair_bangs_2_red { + background-image: url(spritesmith0.png); + background-position: -1667px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_red { + background-image: url(spritesmith0.png); + background-position: -1692px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_2_snowy { + background-image: url(spritesmith0.png); + background-position: -1667px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_snowy { + background-image: url(spritesmith0.png); + background-position: -1692px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_2_white { + background-image: url(spritesmith0.png); + background-position: -1667px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_white { + background-image: url(spritesmith0.png); + background-position: -1692px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_2_winternight { + background-image: url(spritesmith0.png); + background-position: -1667px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_winternight { + background-image: url(spritesmith0.png); + background-position: -1692px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_winterstar { + background-image: url(spritesmith0.png); + background-position: -1667px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_winterstar { + background-image: url(spritesmith0.png); + background-position: -1692px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_yellow { + background-image: url(spritesmith0.png); + background-position: -1667px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_yellow { + background-image: url(spritesmith0.png); + background-position: -1692px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_2_zombie { + background-image: url(spritesmith0.png); + background-position: -1667px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_zombie { + background-image: url(spritesmith0.png); + background-position: -1692px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_3_TRUred { + background-image: url(spritesmith0.png); + background-position: -1667px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_TRUred { + background-image: url(spritesmith0.png); + background-position: -1692px -1107px; + width: 60px; + height: 60px; +} +.hair_bangs_3_aurora { + background-image: url(spritesmith0.png); + background-position: -1667px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_aurora { + background-image: url(spritesmith0.png); + background-position: -1692px -1198px; + width: 60px; + height: 60px; +} +.hair_bangs_3_black { + background-image: url(spritesmith0.png); + background-position: -1667px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_black { + background-image: url(spritesmith0.png); + background-position: -1692px -1289px; + width: 60px; + height: 60px; +} +.hair_bangs_3_blond { + background-image: url(spritesmith0.png); + background-position: -1667px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_blond { + background-image: url(spritesmith0.png); + background-position: -1692px -1380px; + width: 60px; + height: 60px; +} +.hair_bangs_3_blue { + background-image: url(spritesmith0.png); + background-position: -1667px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_blue { + background-image: url(spritesmith0.png); + background-position: -1692px -1471px; + width: 60px; + height: 60px; +} +.hair_bangs_3_brown { + background-image: url(spritesmith0.png); + background-position: -1667px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_brown { + background-image: url(spritesmith0.png); + background-position: -1692px -1562px; + width: 60px; + height: 60px; +} +.hair_bangs_3_candycane { + background-image: url(spritesmith0.png); + background-position: 0px -1650px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_candycane { + background-image: url(spritesmith0.png); + background-position: -25px -1665px; + width: 60px; + height: 60px; +} +.hair_bangs_3_candycorn { + background-image: url(spritesmith0.png); + background-position: -91px -1650px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_candycorn { + background-image: url(spritesmith0.png); + background-position: -116px -1665px; + width: 60px; + height: 60px; +} +.hair_bangs_3_festive { + background-image: url(spritesmith0.png); + background-position: -182px -1650px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_festive { + background-image: url(spritesmith0.png); + background-position: -207px -1665px; + width: 60px; + height: 60px; +} +.hair_bangs_3_frost { + background-image: url(spritesmith0.png); + background-position: -273px -1650px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_frost { + background-image: url(spritesmith0.png); + background-position: -298px -1665px; + width: 60px; + height: 60px; +} +.hair_bangs_3_ghostwhite { + background-image: url(spritesmith0.png); + background-position: -364px -1650px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_ghostwhite { + background-image: url(spritesmith0.png); + background-position: -389px -1665px; + width: 60px; + height: 60px; +} +.hair_bangs_3_green { + background-image: url(spritesmith0.png); + background-position: -455px -1650px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_green { + background-image: url(spritesmith0.png); + background-position: -480px -1665px; + width: 60px; + height: 60px; +} +.hair_bangs_3_halloween { + background-image: url(spritesmith0.png); + background-position: -546px -1650px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_halloween { + background-image: url(spritesmith0.png); + background-position: -571px -1665px; + width: 60px; + height: 60px; +} +.hair_bangs_3_holly { + background-image: url(spritesmith0.png); + background-position: -637px -1650px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_holly { + background-image: url(spritesmith0.png); + background-position: -662px -1665px; + width: 60px; + height: 60px; +} +.hair_bangs_3_hollygreen { + background-image: url(spritesmith0.png); + background-position: -728px -1650px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_hollygreen { + background-image: url(spritesmith0.png); + background-position: -753px -1665px; + width: 60px; + height: 60px; +} +.hair_bangs_3_midnight { + background-image: url(spritesmith0.png); + background-position: -819px -1650px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_midnight { + background-image: url(spritesmith0.png); + background-position: -844px -1665px; + width: 60px; + height: 60px; +} +.hair_bangs_3_pblue { + background-image: url(spritesmith0.png); + background-position: -910px -1650px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_pblue { + background-image: url(spritesmith0.png); + background-position: -935px -1665px; + width: 60px; + height: 60px; +} +.hair_bangs_3_peppermint { + background-image: url(spritesmith0.png); + background-position: -1001px -1650px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_peppermint { + background-image: url(spritesmith0.png); + background-position: -1026px -1665px; + width: 60px; + height: 60px; +} +.hair_bangs_3_pgreen { + background-image: url(spritesmith0.png); + background-position: -1092px -1650px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_pgreen { + background-image: url(spritesmith0.png); + background-position: -1117px -1665px; + width: 60px; + height: 60px; +} +.hair_bangs_3_porange { + background-image: url(spritesmith0.png); + background-position: -1183px -1650px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_porange { + background-image: url(spritesmith0.png); + background-position: -1208px -1665px; + width: 60px; + height: 60px; +} +.hair_bangs_3_ppink { + background-image: url(spritesmith0.png); + background-position: -1274px -1650px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_ppink { + background-image: url(spritesmith0.png); + background-position: -1299px -1665px; + width: 60px; + height: 60px; +} +.hair_bangs_3_ppurple { + background-image: url(spritesmith0.png); + background-position: -1365px -1650px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_ppurple { + background-image: url(spritesmith0.png); + background-position: -1390px -1665px; + width: 60px; + height: 60px; +} +.hair_bangs_3_pumpkin { + background-image: url(spritesmith0.png); + background-position: -1456px -1650px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_pumpkin { + background-image: url(spritesmith0.png); + background-position: -1481px -1665px; + width: 60px; + height: 60px; +} +.hair_bangs_3_purple { + background-image: url(spritesmith0.png); + background-position: -1547px -1650px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_purple { + background-image: url(spritesmith0.png); + background-position: -1572px -1665px; + width: 60px; + height: 60px; +} +.hair_bangs_3_pyellow { + background-image: url(spritesmith0.png); + background-position: -1638px -1650px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_pyellow { + background-image: url(spritesmith0.png); + background-position: -1663px -1665px; + width: 60px; + height: 60px; +} +.hair_bangs_3_rainbow { + background-image: url(spritesmith0.png); + background-position: -1758px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_rainbow { + background-image: url(spritesmith0.png); + background-position: -1783px -15px; + width: 60px; + height: 60px; +} +.hair_bangs_3_red { + background-image: url(spritesmith0.png); + background-position: -1758px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_red { + background-image: url(spritesmith0.png); + background-position: -1783px -106px; + width: 60px; + height: 60px; +} +.hair_bangs_3_snowy { + background-image: url(spritesmith0.png); + background-position: -1758px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_snowy { + background-image: url(spritesmith0.png); + background-position: -1783px -197px; + width: 60px; + height: 60px; +} +.hair_bangs_3_white { + background-image: url(spritesmith0.png); + background-position: -1758px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_white { + background-image: url(spritesmith0.png); + background-position: -1783px -288px; + width: 60px; + height: 60px; +} +.hair_bangs_3_winternight { + background-image: url(spritesmith0.png); + background-position: -1758px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_winternight { + background-image: url(spritesmith0.png); + background-position: -1783px -379px; + width: 60px; + height: 60px; +} +.hair_bangs_3_winterstar { + background-image: url(spritesmith0.png); + background-position: -1758px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_winterstar { + background-image: url(spritesmith0.png); + background-position: -1783px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_3_yellow { + background-image: url(spritesmith0.png); + background-position: -1758px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_yellow { + background-image: url(spritesmith0.png); + background-position: -1783px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_3_zombie { + background-image: url(spritesmith0.png); + background-position: -1758px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_zombie { + background-image: url(spritesmith0.png); + background-position: -1783px -652px; + width: 60px; + height: 60px; +} +.hair_base_10_TRUEred { + background-image: url(spritesmith0.png); + background-position: -1758px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_TRUEred { + background-image: url(spritesmith0.png); + background-position: -1783px -743px; + width: 60px; + height: 60px; +} +.hair_base_10_aurora { + background-image: url(spritesmith0.png); + background-position: -1758px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_aurora { + background-image: url(spritesmith0.png); + background-position: -1783px -834px; + width: 60px; + height: 60px; +} +.hair_base_10_black { + background-image: url(spritesmith0.png); + background-position: -1758px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_black { + background-image: url(spritesmith0.png); + background-position: -1783px -925px; + width: 60px; + height: 60px; +} +.hair_base_10_blond { + background-image: url(spritesmith0.png); + background-position: -1758px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_blond { + background-image: url(spritesmith0.png); + background-position: -1783px -1016px; + width: 60px; + height: 60px; +} +.hair_base_10_blue { + background-image: url(spritesmith0.png); + background-position: -1758px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_blue { + background-image: url(spritesmith0.png); + background-position: -1783px -1107px; + width: 60px; + height: 60px; +} +.hair_base_10_brown { + background-image: url(spritesmith0.png); + background-position: -1758px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_brown { + background-image: url(spritesmith0.png); + background-position: -1783px -1198px; + width: 60px; + height: 60px; +} +.hair_base_10_festive { + background-image: url(spritesmith0.png); + background-position: -1758px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_festive { + background-image: url(spritesmith0.png); + background-position: -1783px -1289px; + width: 60px; + height: 60px; +} +.hair_base_10_green { + background-image: url(spritesmith0.png); + background-position: -1758px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_green { + background-image: url(spritesmith0.png); + background-position: -1783px -1380px; + width: 60px; + height: 60px; +} +.hair_base_10_hollygreen { + background-image: url(spritesmith0.png); + background-position: -1758px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_hollygreen { + background-image: url(spritesmith0.png); + background-position: -1783px -1471px; + width: 60px; + height: 60px; +} +.hair_base_10_pblue { + background-image: url(spritesmith0.png); + background-position: -1758px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_pblue { + background-image: url(spritesmith0.png); + background-position: -1783px -1562px; + width: 60px; + height: 60px; +} +.hair_base_10_peppermint { + background-image: url(spritesmith0.png); + background-position: -1394px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_peppermint { + background-image: url(spritesmith0.png); + background-position: -1419px -15px; + width: 60px; + height: 60px; +} +.hair_base_10_pgreen { + background-image: url(spritesmith0.png); + background-position: -698px -592px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_pgreen { + background-image: url(spritesmith0.png); + background-position: -723px -607px; + width: 60px; + height: 60px; +} +.hair_base_10_porange { + background-image: url(spritesmith0.png); + background-position: -607px -592px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_porange { + background-image: url(spritesmith0.png); + background-position: -632px -607px; + width: 60px; + height: 60px; +} +.hair_base_10_ppink { + background-image: url(spritesmith0.png); + background-position: -516px -592px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_ppink { + background-image: url(spritesmith0.png); + background-position: -541px -607px; + width: 60px; + height: 60px; +} +.hair_base_10_ppurple { + background-image: url(spritesmith0.png); + background-position: -728px -831px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_ppurple { + background-image: url(spritesmith0.png); + background-position: -753px -846px; + width: 60px; + height: 60px; +} +.hair_base_10_purple { + background-image: url(spritesmith0.png); + background-position: -637px -831px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_purple { + background-image: url(spritesmith0.png); + background-position: -662px -846px; + width: 60px; + height: 60px; +} +.hair_base_10_pyellow { + background-image: url(spritesmith0.png); + background-position: -546px -831px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_pyellow { + background-image: url(spritesmith0.png); + background-position: -571px -846px; + width: 60px; + height: 60px; +} +.hair_base_10_rainbow { + background-image: url(spritesmith0.png); + background-position: -455px -831px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_rainbow { + background-image: url(spritesmith0.png); + background-position: -480px -846px; + width: 60px; + height: 60px; +} +.hair_base_10_red { + background-image: url(spritesmith0.png); + background-position: -364px -831px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_red { + background-image: url(spritesmith0.png); + background-position: -389px -846px; + width: 60px; + height: 60px; +} +.hair_base_10_snowy { + background-image: url(spritesmith0.png); + background-position: -273px -831px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_snowy { + background-image: url(spritesmith0.png); + background-position: -298px -846px; + width: 60px; + height: 60px; +} +.hair_base_10_white { + background-image: url(spritesmith0.png); + background-position: -182px -831px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_white { + background-image: url(spritesmith0.png); + background-position: -207px -846px; + width: 60px; + height: 60px; +} +.hair_base_10_winterstar { + background-image: url(spritesmith0.png); + background-position: -91px -831px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_winterstar { + background-image: url(spritesmith0.png); + background-position: -116px -846px; + width: 60px; + height: 60px; +} +.hair_base_10_yellow { + background-image: url(spritesmith0.png); + background-position: 0px -831px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_yellow { + background-image: url(spritesmith0.png); + background-position: -25px -846px; + width: 60px; + height: 60px; +} +.hair_base_11_TRUEred { + background-image: url(spritesmith0.png); + background-position: -848px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_TRUEred { + background-image: url(spritesmith0.png); + background-position: -873px -743px; + width: 60px; + height: 60px; +} +.hair_base_11_aurora { + background-image: url(spritesmith0.png); + background-position: -848px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_aurora { + background-image: url(spritesmith0.png); + background-position: -873px -652px; + width: 60px; + height: 60px; +} +.hair_base_11_blond { + background-image: url(spritesmith0.png); + background-position: -848px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_blond { + background-image: url(spritesmith0.png); + background-position: -873px -561px; + width: 60px; + height: 60px; +} +.hair_base_11_blue { + background-image: url(spritesmith0.png); + background-position: -848px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_blue { + background-image: url(spritesmith0.png); + background-position: -873px -470px; + width: 60px; + height: 60px; +} +.hair_base_11_brown { + background-image: url(spritesmith0.png); + background-position: -848px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_brown { + background-image: url(spritesmith0.png); + background-position: -873px -379px; + width: 60px; + height: 60px; +} +.hair_base_11_festive { + background-image: url(spritesmith0.png); + background-position: -848px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_festive { + background-image: url(spritesmith0.png); + background-position: -873px -288px; + width: 60px; + height: 60px; +} +.hair_base_11_green { + background-image: url(spritesmith0.png); + background-position: -848px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_green { + background-image: url(spritesmith0.png); + background-position: -873px -197px; + width: 60px; + height: 60px; +} +.hair_base_11_hollygreen { + background-image: url(spritesmith0.png); + background-position: -848px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_hollygreen { + background-image: url(spritesmith0.png); + background-position: -873px -106px; + width: 60px; + height: 60px; +} +.hair_base_11_pblue { + background-image: url(spritesmith0.png); + background-position: -848px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_pblue { + background-image: url(spritesmith0.png); + background-position: -873px -15px; + width: 60px; + height: 60px; +} +.hair_base_11_peppermint { + background-image: url(spritesmith0.png); + background-position: -728px -740px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_peppermint { + background-image: url(spritesmith0.png); + background-position: -753px -755px; + width: 60px; + height: 60px; +} +.hair_base_11_pgreen { + background-image: url(spritesmith0.png); + background-position: -637px -740px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_pgreen { + background-image: url(spritesmith0.png); + background-position: -662px -755px; + width: 60px; + height: 60px; +} +.hair_base_11_porange { + background-image: url(spritesmith0.png); + background-position: -546px -740px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_porange { + background-image: url(spritesmith0.png); + background-position: -571px -755px; + width: 60px; + height: 60px; +} +.hair_base_11_ppink { + background-image: url(spritesmith0.png); + background-position: -455px -740px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_ppink { + background-image: url(spritesmith0.png); + background-position: -480px -755px; + width: 60px; + height: 60px; +} +.hair_base_11_ppurple { + background-image: url(spritesmith0.png); + background-position: -364px -740px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_ppurple { + background-image: url(spritesmith0.png); + background-position: -389px -755px; + width: 60px; + height: 60px; +} +.hair_base_11_purple { + background-image: url(spritesmith0.png); + background-position: -273px -740px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_purple { + background-image: url(spritesmith0.png); + background-position: -298px -755px; + width: 60px; + height: 60px; +} +.hair_base_11_pyellow { + background-image: url(spritesmith0.png); + background-position: -182px -740px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_pyellow { + background-image: url(spritesmith0.png); + background-position: -207px -755px; + width: 60px; + height: 60px; +} +.hair_base_11_rainbow { + background-image: url(spritesmith0.png); + background-position: -91px -740px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_rainbow { + background-image: url(spritesmith0.png); + background-position: -116px -755px; + width: 60px; + height: 60px; +} +.hair_base_11_red { + background-image: url(spritesmith0.png); + background-position: 0px -740px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_red { + background-image: url(spritesmith0.png); + background-position: -25px -755px; + width: 60px; + height: 60px; +} diff --git a/common/dist/sprites/spritesmith0.png b/common/dist/sprites/spritesmith0.png index 984d4c73ad..8a2c62d073 100644 Binary files a/common/dist/sprites/spritesmith0.png and b/common/dist/sprites/spritesmith0.png differ diff --git a/common/dist/sprites/spritesmith1.css b/common/dist/sprites/spritesmith1.css index d02a68f1b2..22fd124a05 100644 --- a/common/dist/sprites/spritesmith1.css +++ b/common/dist/sprites/spritesmith1.css @@ -1 +1,4428 @@ -.hair_base_11_snowy{background-image:url(spritesmith1.png);background-position:-91px 0;width:90px;height:90px}.customize-option.hair_base_11_snowy{background-image:url(spritesmith1.png);background-position:-116px -15px;width:60px;height:60px}.hair_base_11_white{background-image:url(spritesmith1.png);background-position:-637px -1183px;width:90px;height:90px}.customize-option.hair_base_11_white{background-image:url(spritesmith1.png);background-position:-662px -1198px;width:60px;height:60px}.hair_base_11_winterstar{background-image:url(spritesmith1.png);background-position:0 -91px;width:90px;height:90px}.customize-option.hair_base_11_winterstar{background-image:url(spritesmith1.png);background-position:-25px -106px;width:60px;height:60px}.hair_base_11_yellow{background-image:url(spritesmith1.png);background-position:-91px -91px;width:90px;height:90px}.customize-option.hair_base_11_yellow{background-image:url(spritesmith1.png);background-position:-116px -106px;width:60px;height:60px}.hair_base_12_TRUEred{background-image:url(spritesmith1.png);background-position:0 -182px;width:90px;height:90px}.customize-option.hair_base_12_TRUEred{background-image:url(spritesmith1.png);background-position:-25px -197px;width:60px;height:60px}.hair_base_12_aurora{background-image:url(spritesmith1.png);background-position:-182px 0;width:90px;height:90px}.customize-option.hair_base_12_aurora{background-image:url(spritesmith1.png);background-position:-207px -15px;width:60px;height:60px}.hair_base_12_blond{background-image:url(spritesmith1.png);background-position:-182px -91px;width:90px;height:90px}.customize-option.hair_base_12_blond{background-image:url(spritesmith1.png);background-position:-207px -106px;width:60px;height:60px}.hair_base_12_blue{background-image:url(spritesmith1.png);background-position:-91px -182px;width:90px;height:90px}.customize-option.hair_base_12_blue{background-image:url(spritesmith1.png);background-position:-116px -197px;width:60px;height:60px}.hair_base_12_brown{background-image:url(spritesmith1.png);background-position:-182px -182px;width:90px;height:90px}.customize-option.hair_base_12_brown{background-image:url(spritesmith1.png);background-position:-207px -197px;width:60px;height:60px}.hair_base_12_festive{background-image:url(spritesmith1.png);background-position:-273px 0;width:90px;height:90px}.customize-option.hair_base_12_festive{background-image:url(spritesmith1.png);background-position:-298px -15px;width:60px;height:60px}.hair_base_12_green{background-image:url(spritesmith1.png);background-position:0 -273px;width:90px;height:90px}.customize-option.hair_base_12_green{background-image:url(spritesmith1.png);background-position:-25px -288px;width:60px;height:60px}.hair_base_12_hollygreen{background-image:url(spritesmith1.png);background-position:-91px -273px;width:90px;height:90px}.customize-option.hair_base_12_hollygreen{background-image:url(spritesmith1.png);background-position:-116px -288px;width:60px;height:60px}.hair_base_12_pblue{background-image:url(spritesmith1.png);background-position:-273px -91px;width:90px;height:90px}.customize-option.hair_base_12_pblue{background-image:url(spritesmith1.png);background-position:-298px -106px;width:60px;height:60px}.hair_base_12_peppermint{background-image:url(spritesmith1.png);background-position:-273px -182px;width:90px;height:90px}.customize-option.hair_base_12_peppermint{background-image:url(spritesmith1.png);background-position:-298px -197px;width:60px;height:60px}.hair_base_12_pgreen{background-image:url(spritesmith1.png);background-position:-182px -273px;width:90px;height:90px}.customize-option.hair_base_12_pgreen{background-image:url(spritesmith1.png);background-position:-207px -288px;width:60px;height:60px}.hair_base_12_porange{background-image:url(spritesmith1.png);background-position:0 -364px;width:90px;height:90px}.customize-option.hair_base_12_porange{background-image:url(spritesmith1.png);background-position:-25px -379px;width:60px;height:60px}.hair_base_12_ppink{background-image:url(spritesmith1.png);background-position:-364px 0;width:90px;height:90px}.customize-option.hair_base_12_ppink{background-image:url(spritesmith1.png);background-position:-389px -15px;width:60px;height:60px}.hair_base_12_ppurple{background-image:url(spritesmith1.png);background-position:-364px -91px;width:90px;height:90px}.customize-option.hair_base_12_ppurple{background-image:url(spritesmith1.png);background-position:-389px -106px;width:60px;height:60px}.hair_base_12_purple{background-image:url(spritesmith1.png);background-position:-91px -364px;width:90px;height:90px}.customize-option.hair_base_12_purple{background-image:url(spritesmith1.png);background-position:-116px -379px;width:60px;height:60px}.hair_base_12_pyellow{background-image:url(spritesmith1.png);background-position:-273px -273px;width:90px;height:90px}.customize-option.hair_base_12_pyellow{background-image:url(spritesmith1.png);background-position:-298px -288px;width:60px;height:60px}.hair_base_12_rainbow{background-image:url(spritesmith1.png);background-position:-182px -364px;width:90px;height:90px}.customize-option.hair_base_12_rainbow{background-image:url(spritesmith1.png);background-position:-207px -379px;width:60px;height:60px}.hair_base_12_red{background-image:url(spritesmith1.png);background-position:-364px -182px;width:90px;height:90px}.customize-option.hair_base_12_red{background-image:url(spritesmith1.png);background-position:-389px -197px;width:60px;height:60px}.hair_base_12_snowy{background-image:url(spritesmith1.png);background-position:-364px -273px;width:90px;height:90px}.customize-option.hair_base_12_snowy{background-image:url(spritesmith1.png);background-position:-389px -288px;width:60px;height:60px}.hair_base_12_white{background-image:url(spritesmith1.png);background-position:-273px -364px;width:90px;height:90px}.customize-option.hair_base_12_white{background-image:url(spritesmith1.png);background-position:-298px -379px;width:60px;height:60px}.hair_base_12_winterstar{background-image:url(spritesmith1.png);background-position:-455px 0;width:90px;height:90px}.customize-option.hair_base_12_winterstar{background-image:url(spritesmith1.png);background-position:-480px -15px;width:60px;height:60px}.hair_base_12_yellow{background-image:url(spritesmith1.png);background-position:0 -455px;width:90px;height:90px}.customize-option.hair_base_12_yellow{background-image:url(spritesmith1.png);background-position:-25px -470px;width:60px;height:60px}.hair_base_13_TRUEred{background-image:url(spritesmith1.png);background-position:-91px -455px;width:90px;height:90px}.customize-option.hair_base_13_TRUEred{background-image:url(spritesmith1.png);background-position:-116px -470px;width:60px;height:60px}.hair_base_13_aurora{background-image:url(spritesmith1.png);background-position:-455px -91px;width:90px;height:90px}.customize-option.hair_base_13_aurora{background-image:url(spritesmith1.png);background-position:-480px -106px;width:60px;height:60px}.hair_base_13_black{background-image:url(spritesmith1.png);background-position:-455px -182px;width:90px;height:90px}.customize-option.hair_base_13_black{background-image:url(spritesmith1.png);background-position:-480px -197px;width:60px;height:60px}.hair_base_13_blond{background-image:url(spritesmith1.png);background-position:-182px -455px;width:90px;height:90px}.customize-option.hair_base_13_blond{background-image:url(spritesmith1.png);background-position:-207px -470px;width:60px;height:60px}.hair_base_13_blue{background-image:url(spritesmith1.png);background-position:-364px -364px;width:90px;height:90px}.customize-option.hair_base_13_blue{background-image:url(spritesmith1.png);background-position:-389px -379px;width:60px;height:60px}.hair_base_13_brown{background-image:url(spritesmith1.png);background-position:-273px -455px;width:90px;height:90px}.customize-option.hair_base_13_brown{background-image:url(spritesmith1.png);background-position:-298px -470px;width:60px;height:60px}.hair_base_13_festive{background-image:url(spritesmith1.png);background-position:-455px -273px;width:90px;height:90px}.customize-option.hair_base_13_festive{background-image:url(spritesmith1.png);background-position:-480px -288px;width:60px;height:60px}.hair_base_13_green{background-image:url(spritesmith1.png);background-position:0 -546px;width:90px;height:90px}.customize-option.hair_base_13_green{background-image:url(spritesmith1.png);background-position:-25px -561px;width:60px;height:60px}.hair_base_13_hollygreen{background-image:url(spritesmith1.png);background-position:-546px 0;width:90px;height:90px}.customize-option.hair_base_13_hollygreen{background-image:url(spritesmith1.png);background-position:-571px -15px;width:60px;height:60px}.hair_base_13_pblue{background-image:url(spritesmith1.png);background-position:-546px -91px;width:90px;height:90px}.customize-option.hair_base_13_pblue{background-image:url(spritesmith1.png);background-position:-571px -106px;width:60px;height:60px}.hair_base_13_peppermint{background-image:url(spritesmith1.png);background-position:-91px -546px;width:90px;height:90px}.customize-option.hair_base_13_peppermint{background-image:url(spritesmith1.png);background-position:-116px -561px;width:60px;height:60px}.hair_base_13_pgreen{background-image:url(spritesmith1.png);background-position:-182px -546px;width:90px;height:90px}.customize-option.hair_base_13_pgreen{background-image:url(spritesmith1.png);background-position:-207px -561px;width:60px;height:60px}.hair_base_13_porange{background-image:url(spritesmith1.png);background-position:-546px -182px;width:90px;height:90px}.customize-option.hair_base_13_porange{background-image:url(spritesmith1.png);background-position:-571px -197px;width:60px;height:60px}.hair_base_13_ppink{background-image:url(spritesmith1.png);background-position:-455px -364px;width:90px;height:90px}.customize-option.hair_base_13_ppink{background-image:url(spritesmith1.png);background-position:-480px -379px;width:60px;height:60px}.hair_base_13_ppurple{background-image:url(spritesmith1.png);background-position:-364px -455px;width:90px;height:90px}.customize-option.hair_base_13_ppurple{background-image:url(spritesmith1.png);background-position:-389px -470px;width:60px;height:60px}.hair_base_13_purple{background-image:url(spritesmith1.png);background-position:-546px -273px;width:90px;height:90px}.customize-option.hair_base_13_purple{background-image:url(spritesmith1.png);background-position:-571px -288px;width:60px;height:60px}.hair_base_13_pyellow{background-image:url(spritesmith1.png);background-position:-273px -546px;width:90px;height:90px}.customize-option.hair_base_13_pyellow{background-image:url(spritesmith1.png);background-position:-298px -561px;width:60px;height:60px}.hair_base_13_rainbow{background-image:url(spritesmith1.png);background-position:-637px 0;width:90px;height:90px}.customize-option.hair_base_13_rainbow{background-image:url(spritesmith1.png);background-position:-662px -15px;width:60px;height:60px}.hair_base_13_red{background-image:url(spritesmith1.png);background-position:0 -637px;width:90px;height:90px}.customize-option.hair_base_13_red{background-image:url(spritesmith1.png);background-position:-25px -652px;width:60px;height:60px}.hair_base_13_snowy{background-image:url(spritesmith1.png);background-position:-91px -637px;width:90px;height:90px}.customize-option.hair_base_13_snowy{background-image:url(spritesmith1.png);background-position:-116px -652px;width:60px;height:60px}.hair_base_13_white{background-image:url(spritesmith1.png);background-position:-637px -91px;width:90px;height:90px}.customize-option.hair_base_13_white{background-image:url(spritesmith1.png);background-position:-662px -106px;width:60px;height:60px}.hair_base_13_winterstar{background-image:url(spritesmith1.png);background-position:-455px -455px;width:90px;height:90px}.customize-option.hair_base_13_winterstar{background-image:url(spritesmith1.png);background-position:-480px -470px;width:60px;height:60px}.hair_base_13_yellow{background-image:url(spritesmith1.png);background-position:-364px -546px;width:90px;height:90px}.customize-option.hair_base_13_yellow{background-image:url(spritesmith1.png);background-position:-389px -561px;width:60px;height:60px}.hair_base_14_TRUEred{background-image:url(spritesmith1.png);background-position:-546px -364px;width:90px;height:90px}.customize-option.hair_base_14_TRUEred{background-image:url(spritesmith1.png);background-position:-571px -379px;width:60px;height:60px}.hair_base_14_aurora{background-image:url(spritesmith1.png);background-position:-637px -182px;width:90px;height:90px}.customize-option.hair_base_14_aurora{background-image:url(spritesmith1.png);background-position:-662px -197px;width:60px;height:60px}.hair_base_14_black{background-image:url(spritesmith1.png);background-position:-182px -637px;width:90px;height:90px}.customize-option.hair_base_14_black{background-image:url(spritesmith1.png);background-position:-207px -652px;width:60px;height:60px}.hair_base_14_blond{background-image:url(spritesmith1.png);background-position:-273px -637px;width:90px;height:90px}.customize-option.hair_base_14_blond{background-image:url(spritesmith1.png);background-position:-298px -652px;width:60px;height:60px}.hair_base_14_blue{background-image:url(spritesmith1.png);background-position:-637px -273px;width:90px;height:90px}.customize-option.hair_base_14_blue{background-image:url(spritesmith1.png);background-position:-662px -288px;width:60px;height:60px}.hair_base_14_brown{background-image:url(spritesmith1.png);background-position:-546px -455px;width:90px;height:90px}.customize-option.hair_base_14_brown{background-image:url(spritesmith1.png);background-position:-571px -470px;width:60px;height:60px}.hair_base_14_festive{background-image:url(spritesmith1.png);background-position:-455px -546px;width:90px;height:90px}.customize-option.hair_base_14_festive{background-image:url(spritesmith1.png);background-position:-480px -561px;width:60px;height:60px}.hair_base_14_green{background-image:url(spritesmith1.png);background-position:0 -728px;width:90px;height:90px}.customize-option.hair_base_14_green{background-image:url(spritesmith1.png);background-position:-25px -743px;width:60px;height:60px}.hair_base_14_hollygreen{background-image:url(spritesmith1.png);background-position:-728px 0;width:90px;height:90px}.customize-option.hair_base_14_hollygreen{background-image:url(spritesmith1.png);background-position:-753px -15px;width:60px;height:60px}.hair_base_14_pblue{background-image:url(spritesmith1.png);background-position:-728px -91px;width:90px;height:90px}.customize-option.hair_base_14_pblue{background-image:url(spritesmith1.png);background-position:-753px -106px;width:60px;height:60px}.hair_base_14_peppermint{background-image:url(spritesmith1.png);background-position:-91px -728px;width:90px;height:90px}.customize-option.hair_base_14_peppermint{background-image:url(spritesmith1.png);background-position:-116px -743px;width:60px;height:60px}.hair_base_14_pgreen{background-image:url(spritesmith1.png);background-position:-637px -364px;width:90px;height:90px}.customize-option.hair_base_14_pgreen{background-image:url(spritesmith1.png);background-position:-662px -379px;width:60px;height:60px}.hair_base_14_porange{background-image:url(spritesmith1.png);background-position:-364px -637px;width:90px;height:90px}.customize-option.hair_base_14_porange{background-image:url(spritesmith1.png);background-position:-389px -652px;width:60px;height:60px}.hair_base_14_ppink{background-image:url(spritesmith1.png);background-position:-182px -728px;width:90px;height:90px}.customize-option.hair_base_14_ppink{background-image:url(spritesmith1.png);background-position:-207px -743px;width:60px;height:60px}.hair_base_14_ppurple{background-image:url(spritesmith1.png);background-position:-728px -182px;width:90px;height:90px}.customize-option.hair_base_14_ppurple{background-image:url(spritesmith1.png);background-position:-753px -197px;width:60px;height:60px}.hair_base_14_purple{background-image:url(spritesmith1.png);background-position:-546px -546px;width:90px;height:90px}.customize-option.hair_base_14_purple{background-image:url(spritesmith1.png);background-position:-571px -561px;width:60px;height:60px}.hair_base_14_pyellow{background-image:url(spritesmith1.png);background-position:-728px -273px;width:90px;height:90px}.customize-option.hair_base_14_pyellow{background-image:url(spritesmith1.png);background-position:-753px -288px;width:60px;height:60px}.hair_base_14_rainbow{background-image:url(spritesmith1.png);background-position:-273px -728px;width:90px;height:90px}.customize-option.hair_base_14_rainbow{background-image:url(spritesmith1.png);background-position:-298px -743px;width:60px;height:60px}.hair_base_14_red{background-image:url(spritesmith1.png);background-position:-455px -637px;width:90px;height:90px}.customize-option.hair_base_14_red{background-image:url(spritesmith1.png);background-position:-480px -652px;width:60px;height:60px}.hair_base_14_snowy{background-image:url(spritesmith1.png);background-position:-637px -455px;width:90px;height:90px}.customize-option.hair_base_14_snowy{background-image:url(spritesmith1.png);background-position:-662px -470px;width:60px;height:60px}.hair_base_14_white{background-image:url(spritesmith1.png);background-position:-364px -728px;width:90px;height:90px}.customize-option.hair_base_14_white{background-image:url(spritesmith1.png);background-position:-389px -743px;width:60px;height:60px}.hair_base_14_winterstar{background-image:url(spritesmith1.png);background-position:-728px -364px;width:90px;height:90px}.customize-option.hair_base_14_winterstar{background-image:url(spritesmith1.png);background-position:-753px -379px;width:60px;height:60px}.hair_base_14_yellow{background-image:url(spritesmith1.png);background-position:-819px 0;width:90px;height:90px}.customize-option.hair_base_14_yellow{background-image:url(spritesmith1.png);background-position:-844px -15px;width:60px;height:60px}.hair_base_1_TRUred{background-image:url(spritesmith1.png);background-position:0 -819px;width:90px;height:90px}.customize-option.hair_base_1_TRUred{background-image:url(spritesmith1.png);background-position:-25px -834px;width:60px;height:60px}.hair_base_1_aurora{background-image:url(spritesmith1.png);background-position:-91px -819px;width:90px;height:90px}.customize-option.hair_base_1_aurora{background-image:url(spritesmith1.png);background-position:-116px -834px;width:60px;height:60px}.hair_base_1_black{background-image:url(spritesmith1.png);background-position:-819px -91px;width:90px;height:90px}.customize-option.hair_base_1_black{background-image:url(spritesmith1.png);background-position:-844px -106px;width:60px;height:60px}.hair_base_1_blond{background-image:url(spritesmith1.png);background-position:-819px -182px;width:90px;height:90px}.customize-option.hair_base_1_blond{background-image:url(spritesmith1.png);background-position:-844px -197px;width:60px;height:60px}.hair_base_1_blue{background-image:url(spritesmith1.png);background-position:-182px -819px;width:90px;height:90px}.customize-option.hair_base_1_blue{background-image:url(spritesmith1.png);background-position:-207px -834px;width:60px;height:60px}.hair_base_1_brown{background-image:url(spritesmith1.png);background-position:-637px -546px;width:90px;height:90px}.customize-option.hair_base_1_brown{background-image:url(spritesmith1.png);background-position:-662px -561px;width:60px;height:60px}.hair_base_1_candycane{background-image:url(spritesmith1.png);background-position:-546px -637px;width:90px;height:90px}.customize-option.hair_base_1_candycane{background-image:url(spritesmith1.png);background-position:-571px -652px;width:60px;height:60px}.hair_base_1_candycorn{background-image:url(spritesmith1.png);background-position:-728px -455px;width:90px;height:90px}.customize-option.hair_base_1_candycorn{background-image:url(spritesmith1.png);background-position:-753px -470px;width:60px;height:60px}.hair_base_1_festive{background-image:url(spritesmith1.png);background-position:-455px -728px;width:90px;height:90px}.customize-option.hair_base_1_festive{background-image:url(spritesmith1.png);background-position:-480px -743px;width:60px;height:60px}.hair_base_1_frost{background-image:url(spritesmith1.png);background-position:-273px -819px;width:90px;height:90px}.customize-option.hair_base_1_frost{background-image:url(spritesmith1.png);background-position:-298px -834px;width:60px;height:60px}.hair_base_1_ghostwhite{background-image:url(spritesmith1.png);background-position:-819px -273px;width:90px;height:90px}.customize-option.hair_base_1_ghostwhite{background-image:url(spritesmith1.png);background-position:-844px -288px;width:60px;height:60px}.hair_base_1_green{background-image:url(spritesmith1.png);background-position:-819px -364px;width:90px;height:90px}.customize-option.hair_base_1_green{background-image:url(spritesmith1.png);background-position:-844px -379px;width:60px;height:60px}.hair_base_1_halloween{background-image:url(spritesmith1.png);background-position:-364px -819px;width:90px;height:90px}.customize-option.hair_base_1_halloween{background-image:url(spritesmith1.png);background-position:-389px -834px;width:60px;height:60px}.hair_base_1_holly{background-image:url(spritesmith1.png);background-position:-637px -637px;width:90px;height:90px}.customize-option.hair_base_1_holly{background-image:url(spritesmith1.png);background-position:-662px -652px;width:60px;height:60px}.hair_base_1_hollygreen{background-image:url(spritesmith1.png);background-position:-546px -728px;width:90px;height:90px}.customize-option.hair_base_1_hollygreen{background-image:url(spritesmith1.png);background-position:-571px -743px;width:60px;height:60px}.hair_base_1_midnight{background-image:url(spritesmith1.png);background-position:-728px -546px;width:90px;height:90px}.customize-option.hair_base_1_midnight{background-image:url(spritesmith1.png);background-position:-753px -561px;width:60px;height:60px}.hair_base_1_pblue{background-image:url(spritesmith1.png);background-position:0 -910px;width:90px;height:90px}.customize-option.hair_base_1_pblue{background-image:url(spritesmith1.png);background-position:-25px -925px;width:60px;height:60px}.hair_base_1_peppermint{background-image:url(spritesmith1.png);background-position:-910px 0;width:90px;height:90px}.customize-option.hair_base_1_peppermint{background-image:url(spritesmith1.png);background-position:-935px -15px;width:60px;height:60px}.hair_base_1_pgreen{background-image:url(spritesmith1.png);background-position:-910px -91px;width:90px;height:90px}.customize-option.hair_base_1_pgreen{background-image:url(spritesmith1.png);background-position:-935px -106px;width:60px;height:60px}.hair_base_1_porange{background-image:url(spritesmith1.png);background-position:-91px -910px;width:90px;height:90px}.customize-option.hair_base_1_porange{background-image:url(spritesmith1.png);background-position:-116px -925px;width:60px;height:60px}.hair_base_1_ppink{background-image:url(spritesmith1.png);background-position:-182px -910px;width:90px;height:90px}.customize-option.hair_base_1_ppink{background-image:url(spritesmith1.png);background-position:-207px -925px;width:60px;height:60px}.hair_base_1_ppurple{background-image:url(spritesmith1.png);background-position:-910px -182px;width:90px;height:90px}.customize-option.hair_base_1_ppurple{background-image:url(spritesmith1.png);background-position:-935px -197px;width:60px;height:60px}.hair_base_1_pumpkin{background-image:url(spritesmith1.png);background-position:-455px -819px;width:90px;height:90px}.customize-option.hair_base_1_pumpkin{background-image:url(spritesmith1.png);background-position:-480px -834px;width:60px;height:60px}.hair_base_1_purple{background-image:url(spritesmith1.png);background-position:-819px -455px;width:90px;height:90px}.customize-option.hair_base_1_purple{background-image:url(spritesmith1.png);background-position:-844px -470px;width:60px;height:60px}.hair_base_1_pyellow{background-image:url(spritesmith1.png);background-position:-910px -273px;width:90px;height:90px}.customize-option.hair_base_1_pyellow{background-image:url(spritesmith1.png);background-position:-935px -288px;width:60px;height:60px}.hair_base_1_rainbow{background-image:url(spritesmith1.png);background-position:-273px -910px;width:90px;height:90px}.customize-option.hair_base_1_rainbow{background-image:url(spritesmith1.png);background-position:-298px -925px;width:60px;height:60px}.hair_base_1_red{background-image:url(spritesmith1.png);background-position:-728px -637px;width:90px;height:90px}.customize-option.hair_base_1_red{background-image:url(spritesmith1.png);background-position:-753px -652px;width:60px;height:60px}.hair_base_1_snowy{background-image:url(spritesmith1.png);background-position:-637px -728px;width:90px;height:90px}.customize-option.hair_base_1_snowy{background-image:url(spritesmith1.png);background-position:-662px -743px;width:60px;height:60px}.hair_base_1_white{background-image:url(spritesmith1.png);background-position:-364px -910px;width:90px;height:90px}.customize-option.hair_base_1_white{background-image:url(spritesmith1.png);background-position:-389px -925px;width:60px;height:60px}.hair_base_1_winternight{background-image:url(spritesmith1.png);background-position:-910px -364px;width:90px;height:90px}.customize-option.hair_base_1_winternight{background-image:url(spritesmith1.png);background-position:-935px -379px;width:60px;height:60px}.hair_base_1_winterstar{background-image:url(spritesmith1.png);background-position:-819px -546px;width:90px;height:90px}.customize-option.hair_base_1_winterstar{background-image:url(spritesmith1.png);background-position:-844px -561px;width:60px;height:60px}.hair_base_1_yellow{background-image:url(spritesmith1.png);background-position:-546px -819px;width:90px;height:90px}.customize-option.hair_base_1_yellow{background-image:url(spritesmith1.png);background-position:-571px -834px;width:60px;height:60px}.hair_base_1_zombie{background-image:url(spritesmith1.png);background-position:-1001px 0;width:90px;height:90px}.customize-option.hair_base_1_zombie{background-image:url(spritesmith1.png);background-position:-1026px -15px;width:60px;height:60px}.hair_base_2_TRUred{background-image:url(spritesmith1.png);background-position:0 -1001px;width:90px;height:90px}.customize-option.hair_base_2_TRUred{background-image:url(spritesmith1.png);background-position:-25px -1016px;width:60px;height:60px}.hair_base_2_aurora{background-image:url(spritesmith1.png);background-position:-91px -1001px;width:90px;height:90px}.customize-option.hair_base_2_aurora{background-image:url(spritesmith1.png);background-position:-116px -1016px;width:60px;height:60px}.hair_base_2_black{background-image:url(spritesmith1.png);background-position:-1001px -91px;width:90px;height:90px}.customize-option.hair_base_2_black{background-image:url(spritesmith1.png);background-position:-1026px -106px;width:60px;height:60px}.hair_base_2_blond{background-image:url(spritesmith1.png);background-position:-1001px -182px;width:90px;height:90px}.customize-option.hair_base_2_blond{background-image:url(spritesmith1.png);background-position:-1026px -197px;width:60px;height:60px}.hair_base_2_blue{background-image:url(spritesmith1.png);background-position:-182px -1001px;width:90px;height:90px}.customize-option.hair_base_2_blue{background-image:url(spritesmith1.png);background-position:-207px -1016px;width:60px;height:60px}.hair_base_2_brown{background-image:url(spritesmith1.png);background-position:-910px -455px;width:90px;height:90px}.customize-option.hair_base_2_brown{background-image:url(spritesmith1.png);background-position:-935px -470px;width:60px;height:60px}.hair_base_2_candycane{background-image:url(spritesmith1.png);background-position:-455px -910px;width:90px;height:90px}.customize-option.hair_base_2_candycane{background-image:url(spritesmith1.png);background-position:-480px -925px;width:60px;height:60px}.hair_base_2_candycorn{background-image:url(spritesmith1.png);background-position:-728px -728px;width:90px;height:90px}.customize-option.hair_base_2_candycorn{background-image:url(spritesmith1.png);background-position:-753px -743px;width:60px;height:60px}.hair_base_2_festive{background-image:url(spritesmith1.png);background-position:-273px -1001px;width:90px;height:90px}.customize-option.hair_base_2_festive{background-image:url(spritesmith1.png);background-position:-298px -1016px;width:60px;height:60px}.hair_base_2_frost{background-image:url(spritesmith1.png);background-position:-1001px -273px;width:90px;height:90px}.customize-option.hair_base_2_frost{background-image:url(spritesmith1.png);background-position:-1026px -288px;width:60px;height:60px}.hair_base_2_ghostwhite{background-image:url(spritesmith1.png);background-position:-637px -819px;width:90px;height:90px}.customize-option.hair_base_2_ghostwhite{background-image:url(spritesmith1.png);background-position:-662px -834px;width:60px;height:60px}.hair_base_2_green{background-image:url(spritesmith1.png);background-position:-819px -637px;width:90px;height:90px}.customize-option.hair_base_2_green{background-image:url(spritesmith1.png);background-position:-844px -652px;width:60px;height:60px}.hair_base_2_halloween{background-image:url(spritesmith1.png);background-position:-546px -910px;width:90px;height:90px}.customize-option.hair_base_2_halloween{background-image:url(spritesmith1.png);background-position:-571px -925px;width:60px;height:60px}.hair_base_2_holly{background-image:url(spritesmith1.png);background-position:-910px -546px;width:90px;height:90px}.customize-option.hair_base_2_holly{background-image:url(spritesmith1.png);background-position:-935px -561px;width:60px;height:60px}.hair_base_2_hollygreen{background-image:url(spritesmith1.png);background-position:-1001px -364px;width:90px;height:90px}.customize-option.hair_base_2_hollygreen{background-image:url(spritesmith1.png);background-position:-1026px -379px;width:60px;height:60px}.hair_base_2_midnight{background-image:url(spritesmith1.png);background-position:-364px -1001px;width:90px;height:90px}.customize-option.hair_base_2_midnight{background-image:url(spritesmith1.png);background-position:-389px -1016px;width:60px;height:60px}.hair_base_2_pblue{background-image:url(spritesmith1.png);background-position:0 -1092px;width:90px;height:90px}.customize-option.hair_base_2_pblue{background-image:url(spritesmith1.png);background-position:-25px -1107px;width:60px;height:60px}.hair_base_2_peppermint{background-image:url(spritesmith1.png);background-position:-1092px 0;width:90px;height:90px}.customize-option.hair_base_2_peppermint{background-image:url(spritesmith1.png);background-position:-1117px -15px;width:60px;height:60px}.hair_base_2_pgreen{background-image:url(spritesmith1.png);background-position:-1092px -91px;width:90px;height:90px}.customize-option.hair_base_2_pgreen{background-image:url(spritesmith1.png);background-position:-1117px -106px;width:60px;height:60px}.hair_base_2_porange{background-image:url(spritesmith1.png);background-position:-91px -1092px;width:90px;height:90px}.customize-option.hair_base_2_porange{background-image:url(spritesmith1.png);background-position:-116px -1107px;width:60px;height:60px}.hair_base_2_ppink{background-image:url(spritesmith1.png);background-position:-819px -728px;width:90px;height:90px}.customize-option.hair_base_2_ppink{background-image:url(spritesmith1.png);background-position:-844px -743px;width:60px;height:60px}.hair_base_2_ppurple{background-image:url(spritesmith1.png);background-position:-728px -819px;width:90px;height:90px}.customize-option.hair_base_2_ppurple{background-image:url(spritesmith1.png);background-position:-753px -834px;width:60px;height:60px}.hair_base_2_pumpkin{background-image:url(spritesmith1.png);background-position:-1001px -455px;width:90px;height:90px}.customize-option.hair_base_2_pumpkin{background-image:url(spritesmith1.png);background-position:-1026px -470px;width:60px;height:60px}.hair_base_2_purple{background-image:url(spritesmith1.png);background-position:-455px -1001px;width:90px;height:90px}.customize-option.hair_base_2_purple{background-image:url(spritesmith1.png);background-position:-480px -1016px;width:60px;height:60px}.hair_base_2_pyellow{background-image:url(spritesmith1.png);background-position:-182px -1092px;width:90px;height:90px}.customize-option.hair_base_2_pyellow{background-image:url(spritesmith1.png);background-position:-207px -1107px;width:60px;height:60px}.hair_base_2_rainbow{background-image:url(spritesmith1.png);background-position:-1092px -182px;width:90px;height:90px}.customize-option.hair_base_2_rainbow{background-image:url(spritesmith1.png);background-position:-1117px -197px;width:60px;height:60px}.hair_base_2_red{background-image:url(spritesmith1.png);background-position:-910px -637px;width:90px;height:90px}.customize-option.hair_base_2_red{background-image:url(spritesmith1.png);background-position:-935px -652px;width:60px;height:60px}.hair_base_2_snowy{background-image:url(spritesmith1.png);background-position:-637px -910px;width:90px;height:90px}.customize-option.hair_base_2_snowy{background-image:url(spritesmith1.png);background-position:-662px -925px;width:60px;height:60px}.hair_base_2_white{background-image:url(spritesmith1.png);background-position:-1092px -273px;width:90px;height:90px}.customize-option.hair_base_2_white{background-image:url(spritesmith1.png);background-position:-1117px -288px;width:60px;height:60px}.hair_base_2_winternight{background-image:url(spritesmith1.png);background-position:-273px -1092px;width:90px;height:90px}.customize-option.hair_base_2_winternight{background-image:url(spritesmith1.png);background-position:-298px -1107px;width:60px;height:60px}.hair_base_2_winterstar{background-image:url(spritesmith1.png);background-position:-546px -1001px;width:90px;height:90px}.customize-option.hair_base_2_winterstar{background-image:url(spritesmith1.png);background-position:-571px -1016px;width:60px;height:60px}.hair_base_2_yellow{background-image:url(spritesmith1.png);background-position:-1001px -546px;width:90px;height:90px}.customize-option.hair_base_2_yellow{background-image:url(spritesmith1.png);background-position:-1026px -561px;width:60px;height:60px}.hair_base_2_zombie{background-image:url(spritesmith1.png);background-position:-364px -1092px;width:90px;height:90px}.customize-option.hair_base_2_zombie{background-image:url(spritesmith1.png);background-position:-389px -1107px;width:60px;height:60px}.hair_base_3_TRUred{background-image:url(spritesmith1.png);background-position:-1092px -364px;width:90px;height:90px}.customize-option.hair_base_3_TRUred{background-image:url(spritesmith1.png);background-position:-1117px -379px;width:60px;height:60px}.hair_base_3_aurora{background-image:url(spritesmith1.png);background-position:-819px -819px;width:90px;height:90px}.customize-option.hair_base_3_aurora{background-image:url(spritesmith1.png);background-position:-844px -834px;width:60px;height:60px}.hair_base_3_black{background-image:url(spritesmith1.png);background-position:-728px -910px;width:90px;height:90px}.customize-option.hair_base_3_black{background-image:url(spritesmith1.png);background-position:-753px -925px;width:60px;height:60px}.hair_base_3_blond{background-image:url(spritesmith1.png);background-position:-910px -728px;width:90px;height:90px}.customize-option.hair_base_3_blond{background-image:url(spritesmith1.png);background-position:-935px -743px;width:60px;height:60px}.hair_base_3_blue{background-image:url(spritesmith1.png);background-position:-1092px -455px;width:90px;height:90px}.customize-option.hair_base_3_blue{background-image:url(spritesmith1.png);background-position:-1117px -470px;width:60px;height:60px}.hair_base_3_brown{background-image:url(spritesmith1.png);background-position:-455px -1092px;width:90px;height:90px}.customize-option.hair_base_3_brown{background-image:url(spritesmith1.png);background-position:-480px -1107px;width:60px;height:60px}.hair_base_3_candycane{background-image:url(spritesmith1.png);background-position:0 -1183px;width:90px;height:90px}.customize-option.hair_base_3_candycane{background-image:url(spritesmith1.png);background-position:-25px -1198px;width:60px;height:60px}.hair_base_3_candycorn{background-image:url(spritesmith1.png);background-position:-1183px 0;width:90px;height:90px}.customize-option.hair_base_3_candycorn{background-image:url(spritesmith1.png);background-position:-1208px -15px;width:60px;height:60px}.hair_base_3_festive{background-image:url(spritesmith1.png);background-position:-1183px -91px;width:90px;height:90px}.customize-option.hair_base_3_festive{background-image:url(spritesmith1.png);background-position:-1208px -106px;width:60px;height:60px}.hair_base_3_frost{background-image:url(spritesmith1.png);background-position:-91px -1183px;width:90px;height:90px}.customize-option.hair_base_3_frost{background-image:url(spritesmith1.png);background-position:-116px -1198px;width:60px;height:60px}.hair_base_3_ghostwhite{background-image:url(spritesmith1.png);background-position:-1001px -637px;width:90px;height:90px}.customize-option.hair_base_3_ghostwhite{background-image:url(spritesmith1.png);background-position:-1026px -652px;width:60px;height:60px}.hair_base_3_green{background-image:url(spritesmith1.png);background-position:-637px -1001px;width:90px;height:90px}.customize-option.hair_base_3_green{background-image:url(spritesmith1.png);background-position:-662px -1016px;width:60px;height:60px}.hair_base_3_halloween{background-image:url(spritesmith1.png);background-position:-182px -1183px;width:90px;height:90px}.customize-option.hair_base_3_halloween{background-image:url(spritesmith1.png);background-position:-207px -1198px;width:60px;height:60px}.hair_base_3_holly{background-image:url(spritesmith1.png);background-position:-1183px -182px;width:90px;height:90px}.customize-option.hair_base_3_holly{background-image:url(spritesmith1.png);background-position:-1208px -197px;width:60px;height:60px}.hair_base_3_hollygreen{background-image:url(spritesmith1.png);background-position:-273px -1183px;width:90px;height:90px}.customize-option.hair_base_3_hollygreen{background-image:url(spritesmith1.png);background-position:-298px -1198px;width:60px;height:60px}.hair_base_3_midnight{background-image:url(spritesmith1.png);background-position:-1183px -273px;width:90px;height:90px}.customize-option.hair_base_3_midnight{background-image:url(spritesmith1.png);background-position:-1208px -288px;width:60px;height:60px}.hair_base_3_pblue{background-image:url(spritesmith1.png);background-position:-1092px -546px;width:90px;height:90px}.customize-option.hair_base_3_pblue{background-image:url(spritesmith1.png);background-position:-1117px -561px;width:60px;height:60px}.hair_base_3_peppermint{background-image:url(spritesmith1.png);background-position:-546px -1092px;width:90px;height:90px}.customize-option.hair_base_3_peppermint{background-image:url(spritesmith1.png);background-position:-571px -1107px;width:60px;height:60px}.hair_base_3_pgreen{background-image:url(spritesmith1.png);background-position:-819px -910px;width:90px;height:90px}.customize-option.hair_base_3_pgreen{background-image:url(spritesmith1.png);background-position:-844px -925px;width:60px;height:60px}.hair_base_3_porange{background-image:url(spritesmith1.png);background-position:-910px -819px;width:90px;height:90px}.customize-option.hair_base_3_porange{background-image:url(spritesmith1.png);background-position:-935px -834px;width:60px;height:60px}.hair_base_3_ppink{background-image:url(spritesmith1.png);background-position:-364px -1183px;width:90px;height:90px}.customize-option.hair_base_3_ppink{background-image:url(spritesmith1.png);background-position:-389px -1198px;width:60px;height:60px}.hair_base_3_ppurple{background-image:url(spritesmith1.png);background-position:-1001px -728px;width:90px;height:90px}.customize-option.hair_base_3_ppurple{background-image:url(spritesmith1.png);background-position:-1026px -743px;width:60px;height:60px}.hair_base_3_pumpkin{background-image:url(spritesmith1.png);background-position:-1183px -364px;width:90px;height:90px}.customize-option.hair_base_3_pumpkin{background-image:url(spritesmith1.png);background-position:-1208px -379px;width:60px;height:60px}.hair_base_3_purple{background-image:url(spritesmith1.png);background-position:-728px -1001px;width:90px;height:90px}.customize-option.hair_base_3_purple{background-image:url(spritesmith1.png);background-position:-753px -1016px;width:60px;height:60px}.hair_base_3_pyellow{background-image:url(spritesmith1.png);background-position:-637px -1092px;width:90px;height:90px}.customize-option.hair_base_3_pyellow{background-image:url(spritesmith1.png);background-position:-662px -1107px;width:60px;height:60px}.hair_base_3_rainbow{background-image:url(spritesmith1.png);background-position:-1092px -637px;width:90px;height:90px}.customize-option.hair_base_3_rainbow{background-image:url(spritesmith1.png);background-position:-1117px -652px;width:60px;height:60px}.hair_base_3_red{background-image:url(spritesmith1.png);background-position:-1183px -455px;width:90px;height:90px}.customize-option.hair_base_3_red{background-image:url(spritesmith1.png);background-position:-1208px -470px;width:60px;height:60px}.hair_base_3_snowy{background-image:url(spritesmith1.png);background-position:-455px -1183px;width:90px;height:90px}.customize-option.hair_base_3_snowy{background-image:url(spritesmith1.png);background-position:-480px -1198px;width:60px;height:60px}.hair_base_3_white{background-image:url(spritesmith1.png);background-position:-1274px 0;width:90px;height:90px}.customize-option.hair_base_3_white{background-image:url(spritesmith1.png);background-position:-1299px -15px;width:60px;height:60px}.hair_base_3_winternight{background-image:url(spritesmith1.png);background-position:0 -1274px;width:90px;height:90px}.customize-option.hair_base_3_winternight{background-image:url(spritesmith1.png);background-position:-25px -1289px;width:60px;height:60px}.hair_base_3_winterstar{background-image:url(spritesmith1.png);background-position:-91px -1274px;width:90px;height:90px}.customize-option.hair_base_3_winterstar{background-image:url(spritesmith1.png);background-position:-116px -1289px;width:60px;height:60px}.hair_base_3_yellow{background-image:url(spritesmith1.png);background-position:-1274px -91px;width:90px;height:90px}.customize-option.hair_base_3_yellow{background-image:url(spritesmith1.png);background-position:-1299px -106px;width:60px;height:60px}.hair_base_3_zombie{background-image:url(spritesmith1.png);background-position:-182px -1274px;width:90px;height:90px}.customize-option.hair_base_3_zombie{background-image:url(spritesmith1.png);background-position:-207px -1289px;width:60px;height:60px}.hair_base_4_TRUred{background-image:url(spritesmith1.png);background-position:-910px -910px;width:90px;height:90px}.customize-option.hair_base_4_TRUred{background-image:url(spritesmith1.png);background-position:-935px -925px;width:60px;height:60px}.hair_base_4_aurora{background-image:url(spritesmith1.png);background-position:-1274px -182px;width:90px;height:90px}.customize-option.hair_base_4_aurora{background-image:url(spritesmith1.png);background-position:-1299px -197px;width:60px;height:60px}.hair_base_4_black{background-image:url(spritesmith1.png);background-position:-1001px -819px;width:90px;height:90px}.customize-option.hair_base_4_black{background-image:url(spritesmith1.png);background-position:-1026px -834px;width:60px;height:60px}.hair_base_4_blond{background-image:url(spritesmith1.png);background-position:-819px -1001px;width:90px;height:90px}.customize-option.hair_base_4_blond{background-image:url(spritesmith1.png);background-position:-844px -1016px;width:60px;height:60px}.hair_base_4_blue{background-image:url(spritesmith1.png);background-position:-1183px -546px;width:90px;height:90px}.customize-option.hair_base_4_blue{background-image:url(spritesmith1.png);background-position:-1208px -561px;width:60px;height:60px}.hair_base_4_brown{background-image:url(spritesmith1.png);background-position:-1274px -273px;width:90px;height:90px}.customize-option.hair_base_4_brown{background-image:url(spritesmith1.png);background-position:-1299px -288px;width:60px;height:60px}.hair_base_4_candycane{background-image:url(spritesmith1.png);background-position:-546px -1183px;width:90px;height:90px}.customize-option.hair_base_4_candycane{background-image:url(spritesmith1.png);background-position:-571px -1198px;width:60px;height:60px}.hair_base_4_candycorn{background-image:url(spritesmith1.png);background-position:-273px -1274px;width:90px;height:90px}.customize-option.hair_base_4_candycorn{background-image:url(spritesmith1.png);background-position:-298px -1289px;width:60px;height:60px}.hair_base_4_festive{background-image:url(spritesmith1.png);background-position:-728px -1092px;width:90px;height:90px}.customize-option.hair_base_4_festive{background-image:url(spritesmith1.png);background-position:-753px -1107px;width:60px;height:60px}.hair_base_4_frost{background-image:url(spritesmith1.png);background-position:-1092px -728px;width:90px;height:90px}.customize-option.hair_base_4_frost{background-image:url(spritesmith1.png);background-position:-1117px -743px;width:60px;height:60px}.hair_base_4_ghostwhite{background-image:url(spritesmith1.png);background-position:-364px -1274px;width:90px;height:90px}.customize-option.hair_base_4_ghostwhite{background-image:url(spritesmith1.png);background-position:-389px -1289px;width:60px;height:60px}.hair_base_4_green{background-image:url(spritesmith1.png);background-position:-1274px -364px;width:90px;height:90px}.customize-option.hair_base_4_green{background-image:url(spritesmith1.png);background-position:-1299px -379px;width:60px;height:60px}.hair_base_4_halloween{background-image:url(spritesmith1.png);background-position:-1183px -637px;width:90px;height:90px}.customize-option.hair_base_4_halloween{background-image:url(spritesmith1.png);background-position:-1208px -652px;width:60px;height:60px}.hair_base_4_holly{background-image:url(spritesmith1.png);background-position:0 0;width:90px;height:90px}.customize-option.hair_base_4_holly{background-image:url(spritesmith1.png);background-position:-25px -15px;width:60px;height:60px}.hair_base_4_hollygreen{background-image:url(spritesmith1.png);background-position:-1001px -910px;width:90px;height:90px}.customize-option.hair_base_4_hollygreen{background-image:url(spritesmith1.png);background-position:-1026px -925px;width:60px;height:60px}.hair_base_4_midnight{background-image:url(spritesmith1.png);background-position:-1274px -455px;width:90px;height:90px}.customize-option.hair_base_4_midnight{background-image:url(spritesmith1.png);background-position:-1299px -470px;width:60px;height:60px}.hair_base_4_pblue{background-image:url(spritesmith1.png);background-position:-455px -1274px;width:90px;height:90px}.customize-option.hair_base_4_pblue{background-image:url(spritesmith1.png);background-position:-480px -1289px;width:60px;height:60px}.hair_base_4_peppermint{background-image:url(spritesmith1.png);background-position:-910px -1001px;width:90px;height:90px}.customize-option.hair_base_4_peppermint{background-image:url(spritesmith1.png);background-position:-935px -1016px;width:60px;height:60px}.hair_base_4_pgreen{background-image:url(spritesmith1.png);background-position:-1365px 0;width:90px;height:90px}.customize-option.hair_base_4_pgreen{background-image:url(spritesmith1.png);background-position:-1390px -15px;width:60px;height:60px}.hair_base_4_porange{background-image:url(spritesmith1.png);background-position:-1092px -819px;width:90px;height:90px}.customize-option.hair_base_4_porange{background-image:url(spritesmith1.png);background-position:-1117px -834px;width:60px;height:60px}.hair_base_4_ppink{background-image:url(spritesmith1.png);background-position:0 -1365px;width:90px;height:90px}.customize-option.hair_base_4_ppink{background-image:url(spritesmith1.png);background-position:-25px -1380px;width:60px;height:60px}.hair_base_4_ppurple{background-image:url(spritesmith1.png);background-position:-819px -1092px;width:90px;height:90px}.customize-option.hair_base_4_ppurple{background-image:url(spritesmith1.png);background-position:-844px -1107px;width:60px;height:60px}.hair_base_4_pumpkin{background-image:url(spritesmith1.png);background-position:-91px -1365px;width:90px;height:90px}.customize-option.hair_base_4_pumpkin{background-image:url(spritesmith1.png);background-position:-116px -1380px;width:60px;height:60px}.hair_base_4_purple{background-image:url(spritesmith1.png);background-position:-1365px -91px;width:90px;height:90px}.customize-option.hair_base_4_purple{background-image:url(spritesmith1.png);background-position:-1390px -106px;width:60px;height:60px}.hair_base_4_pyellow{background-image:url(spritesmith1.png);background-position:-182px -1365px;width:90px;height:90px}.customize-option.hair_base_4_pyellow{background-image:url(spritesmith1.png);background-position:-207px -1380px;width:60px;height:60px}.hair_base_4_rainbow{background-image:url(spritesmith1.png);background-position:-1365px -182px;width:90px;height:90px}.customize-option.hair_base_4_rainbow{background-image:url(spritesmith1.png);background-position:-1390px -197px;width:60px;height:60px}.hair_base_4_red{background-image:url(spritesmith1.png);background-position:-1274px -546px;width:90px;height:90px}.customize-option.hair_base_4_red{background-image:url(spritesmith1.png);background-position:-1299px -561px;width:60px;height:60px}.hair_base_4_snowy{background-image:url(spritesmith1.png);background-position:-546px -1274px;width:90px;height:90px}.customize-option.hair_base_4_snowy{background-image:url(spritesmith1.png);background-position:-571px -1289px;width:60px;height:60px}.hair_base_4_white{background-image:url(spritesmith1.png);background-position:-1183px -728px;width:90px;height:90px}.customize-option.hair_base_4_white{background-image:url(spritesmith1.png);background-position:-1208px -743px;width:60px;height:60px}.hair_base_4_winternight{background-image:url(spritesmith1.png);background-position:-728px -1183px;width:90px;height:90px}.customize-option.hair_base_4_winternight{background-image:url(spritesmith1.png);background-position:-753px -1198px;width:60px;height:60px}.hair_base_4_winterstar{background-image:url(spritesmith1.png);background-position:-1365px -273px;width:90px;height:90px}.customize-option.hair_base_4_winterstar{background-image:url(spritesmith1.png);background-position:-1390px -288px;width:60px;height:60px}.hair_base_4_yellow{background-image:url(spritesmith1.png);background-position:-273px -1365px;width:90px;height:90px}.customize-option.hair_base_4_yellow{background-image:url(spritesmith1.png);background-position:-298px -1380px;width:60px;height:60px}.hair_base_4_zombie{background-image:url(spritesmith1.png);background-position:-364px -1365px;width:90px;height:90px}.customize-option.hair_base_4_zombie{background-image:url(spritesmith1.png);background-position:-389px -1380px;width:60px;height:60px}.hair_base_5_TRUred{background-image:url(spritesmith1.png);background-position:-1365px -364px;width:90px;height:90px}.customize-option.hair_base_5_TRUred{background-image:url(spritesmith1.png);background-position:-1390px -379px;width:60px;height:60px}.hair_base_5_aurora{background-image:url(spritesmith1.png);background-position:-1001px -1001px;width:90px;height:90px}.customize-option.hair_base_5_aurora{background-image:url(spritesmith1.png);background-position:-1026px -1016px;width:60px;height:60px}.hair_base_5_black{background-image:url(spritesmith1.png);background-position:-1092px -910px;width:90px;height:90px}.customize-option.hair_base_5_black{background-image:url(spritesmith1.png);background-position:-1117px -925px;width:60px;height:60px}.hair_base_5_blond{background-image:url(spritesmith1.png);background-position:-910px -1092px;width:90px;height:90px}.customize-option.hair_base_5_blond{background-image:url(spritesmith1.png);background-position:-935px -1107px;width:60px;height:60px}.hair_base_5_blue{background-image:url(spritesmith1.png);background-position:-1274px -637px;width:90px;height:90px}.customize-option.hair_base_5_blue{background-image:url(spritesmith1.png);background-position:-1299px -652px;width:60px;height:60px}.hair_base_5_brown{background-image:url(spritesmith1.png);background-position:-637px -1274px;width:90px;height:90px}.customize-option.hair_base_5_brown{background-image:url(spritesmith1.png);background-position:-662px -1289px;width:60px;height:60px}.hair_base_5_candycane{background-image:url(spritesmith1.png);background-position:-819px -1183px;width:90px;height:90px}.customize-option.hair_base_5_candycane{background-image:url(spritesmith1.png);background-position:-844px -1198px;width:60px;height:60px}.hair_base_5_candycorn{background-image:url(spritesmith1.png);background-position:-455px -1365px;width:90px;height:90px}.customize-option.hair_base_5_candycorn{background-image:url(spritesmith1.png);background-position:-480px -1380px;width:60px;height:60px}.hair_base_5_festive{background-image:url(spritesmith1.png);background-position:-1183px -819px;width:90px;height:90px}.customize-option.hair_base_5_festive{background-image:url(spritesmith1.png);background-position:-1208px -834px;width:60px;height:60px}.hair_base_5_frost{background-image:url(spritesmith1.png);background-position:-1365px -455px;width:90px;height:90px}.customize-option.hair_base_5_frost{background-image:url(spritesmith1.png);background-position:-1390px -470px;width:60px;height:60px}.hair_base_5_ghostwhite{background-image:url(spritesmith1.png);background-position:0 -1456px;width:90px;height:90px}.customize-option.hair_base_5_ghostwhite{background-image:url(spritesmith1.png);background-position:-25px -1471px;width:60px;height:60px}.hair_base_5_green{background-image:url(spritesmith1.png);background-position:-1456px 0;width:90px;height:90px}.customize-option.hair_base_5_green{background-image:url(spritesmith1.png);background-position:-1481px -15px;width:60px;height:60px}.hair_base_5_halloween{background-image:url(spritesmith1.png);background-position:-91px -1456px;width:90px;height:90px}.customize-option.hair_base_5_halloween{background-image:url(spritesmith1.png);background-position:-116px -1471px;width:60px;height:60px}.hair_base_5_holly{background-image:url(spritesmith1.png);background-position:-1456px -91px;width:90px;height:90px}.customize-option.hair_base_5_holly{background-image:url(spritesmith1.png);background-position:-1481px -106px;width:60px;height:60px}.hair_base_5_hollygreen{background-image:url(spritesmith1.png);background-position:-182px -1456px;width:90px;height:90px}.customize-option.hair_base_5_hollygreen{background-image:url(spritesmith1.png);background-position:-207px -1471px;width:60px;height:60px}.hair_base_5_midnight{background-image:url(spritesmith1.png);background-position:-728px -1274px;width:90px;height:90px}.customize-option.hair_base_5_midnight{background-image:url(spritesmith1.png);background-position:-753px -1289px;width:60px;height:60px}.hair_base_5_pblue{background-image:url(spritesmith1.png);background-position:-1274px -728px;width:90px;height:90px}.customize-option.hair_base_5_pblue{background-image:url(spritesmith1.png);background-position:-1299px -743px;width:60px;height:60px}.hair_base_5_peppermint{background-image:url(spritesmith1.png);background-position:-1456px -182px;width:90px;height:90px}.customize-option.hair_base_5_peppermint{background-image:url(spritesmith1.png);background-position:-1481px -197px;width:60px;height:60px}.hair_base_5_pgreen{background-image:url(spritesmith1.png);background-position:-1365px -546px;width:90px;height:90px}.customize-option.hair_base_5_pgreen{background-image:url(spritesmith1.png);background-position:-1390px -561px;width:60px;height:60px}.hair_base_5_porange{background-image:url(spritesmith1.png);background-position:-546px -1365px;width:90px;height:90px}.customize-option.hair_base_5_porange{background-image:url(spritesmith1.png);background-position:-571px -1380px;width:60px;height:60px}.hair_base_5_ppink{background-image:url(spritesmith1.png);background-position:-1456px -273px;width:90px;height:90px}.customize-option.hair_base_5_ppink{background-image:url(spritesmith1.png);background-position:-1481px -288px;width:60px;height:60px}.hair_base_5_ppurple{background-image:url(spritesmith1.png);background-position:-1092px -1001px;width:90px;height:90px}.customize-option.hair_base_5_ppurple{background-image:url(spritesmith1.png);background-position:-1117px -1016px;width:60px;height:60px}.hair_base_5_pumpkin{background-image:url(spritesmith1.png);background-position:-1001px -1092px;width:90px;height:90px}.customize-option.hair_base_5_pumpkin{background-image:url(spritesmith1.png);background-position:-1026px -1107px;width:60px;height:60px}.hair_base_5_purple{background-image:url(spritesmith1.png);background-position:-273px -1456px;width:90px;height:90px}.customize-option.hair_base_5_purple{background-image:url(spritesmith1.png);background-position:-298px -1471px;width:60px;height:60px}.hair_base_5_pyellow{background-image:url(spritesmith1.png);background-position:-1183px -910px;width:90px;height:90px}.customize-option.hair_base_5_pyellow{background-image:url(spritesmith1.png);background-position:-1208px -925px;width:60px;height:60px}.hair_base_5_rainbow{background-image:url(spritesmith1.png);background-position:-910px -1183px;width:90px;height:90px}.customize-option.hair_base_5_rainbow{background-image:url(spritesmith1.png);background-position:-935px -1198px;width:60px;height:60px}.hair_base_5_red{background-image:url(spritesmith1.png);background-position:-364px -1456px;width:90px;height:90px}.customize-option.hair_base_5_red{background-image:url(spritesmith1.png);background-position:-389px -1471px;width:60px;height:60px}.hair_base_5_snowy{background-image:url(spritesmith1.png);background-position:-1456px -364px;width:90px;height:90px}.customize-option.hair_base_5_snowy{background-image:url(spritesmith1.png);background-position:-1481px -379px;width:60px;height:60px}.hair_base_5_white{background-image:url(spritesmith1.png);background-position:-1365px -637px;width:90px;height:90px}.customize-option.hair_base_5_white{background-image:url(spritesmith1.png);background-position:-1390px -652px;width:60px;height:60px}.hair_base_5_winternight{background-image:url(spritesmith1.png);background-position:-637px -1365px;width:90px;height:90px}.customize-option.hair_base_5_winternight{background-image:url(spritesmith1.png);background-position:-662px -1380px;width:60px;height:60px}.hair_base_5_winterstar{background-image:url(spritesmith1.png);background-position:-1274px -819px;width:90px;height:90px}.customize-option.hair_base_5_winterstar{background-image:url(spritesmith1.png);background-position:-1299px -834px;width:60px;height:60px}.hair_base_5_yellow{background-image:url(spritesmith1.png);background-position:-819px -1274px;width:90px;height:90px}.customize-option.hair_base_5_yellow{background-image:url(spritesmith1.png);background-position:-844px -1289px;width:60px;height:60px}.hair_base_5_zombie{background-image:url(spritesmith1.png);background-position:-1456px -455px;width:90px;height:90px}.customize-option.hair_base_5_zombie{background-image:url(spritesmith1.png);background-position:-1481px -470px;width:60px;height:60px}.hair_base_6_TRUred{background-image:url(spritesmith1.png);background-position:-455px -1456px;width:90px;height:90px}.customize-option.hair_base_6_TRUred{background-image:url(spritesmith1.png);background-position:-480px -1471px;width:60px;height:60px}.hair_base_6_aurora{background-image:url(spritesmith1.png);background-position:-1092px -1092px;width:90px;height:90px}.customize-option.hair_base_6_aurora{background-image:url(spritesmith1.png);background-position:-1117px -1107px;width:60px;height:60px}.hair_base_6_black{background-image:url(spritesmith1.png);background-position:-1547px 0;width:90px;height:90px}.customize-option.hair_base_6_black{background-image:url(spritesmith1.png);background-position:-1572px -15px;width:60px;height:60px}.hair_base_6_blond{background-image:url(spritesmith1.png);background-position:-1365px -728px;width:90px;height:90px}.customize-option.hair_base_6_blond{background-image:url(spritesmith1.png);background-position:-1390px -743px;width:60px;height:60px}.hair_base_6_blue{background-image:url(spritesmith1.png);background-position:0 -1547px;width:90px;height:90px}.customize-option.hair_base_6_blue{background-image:url(spritesmith1.png);background-position:-25px -1562px;width:60px;height:60px}.hair_base_6_brown{background-image:url(spritesmith1.png);background-position:-728px -1365px;width:90px;height:90px}.customize-option.hair_base_6_brown{background-image:url(spritesmith1.png);background-position:-753px -1380px;width:60px;height:60px}.hair_base_6_candycane{background-image:url(spritesmith1.png);background-position:-91px -1547px;width:90px;height:90px}.customize-option.hair_base_6_candycane{background-image:url(spritesmith1.png);background-position:-116px -1562px;width:60px;height:60px}.hair_base_6_candycorn{background-image:url(spritesmith1.png);background-position:-1001px -1183px;width:90px;height:90px}.customize-option.hair_base_6_candycorn{background-image:url(spritesmith1.png);background-position:-1026px -1198px;width:60px;height:60px}.hair_base_6_festive{background-image:url(spritesmith1.png);background-position:-1183px -1001px;width:90px;height:90px}.customize-option.hair_base_6_festive{background-image:url(spritesmith1.png);background-position:-1208px -1016px;width:60px;height:60px}.hair_base_6_frost{background-image:url(spritesmith1.png);background-position:-1547px -91px;width:90px;height:90px}.customize-option.hair_base_6_frost{background-image:url(spritesmith1.png);background-position:-1572px -106px;width:60px;height:60px}.hair_base_6_ghostwhite{background-image:url(spritesmith1.png);background-position:-1456px -546px;width:90px;height:90px}.customize-option.hair_base_6_ghostwhite{background-image:url(spritesmith1.png);background-position:-1481px -561px;width:60px;height:60px}.hair_base_6_green{background-image:url(spritesmith1.png);background-position:-546px -1456px;width:90px;height:90px}.customize-option.hair_base_6_green{background-image:url(spritesmith1.png);background-position:-571px -1471px;width:60px;height:60px}.hair_base_6_halloween{background-image:url(spritesmith1.png);background-position:-182px -1547px;width:90px;height:90px}.customize-option.hair_base_6_halloween{background-image:url(spritesmith1.png);background-position:-207px -1562px;width:60px;height:60px}.hair_base_6_holly{background-image:url(spritesmith1.png);background-position:-1547px -182px;width:90px;height:90px}.customize-option.hair_base_6_holly{background-image:url(spritesmith1.png);background-position:-1572px -197px;width:60px;height:60px}.hair_base_6_hollygreen{background-image:url(spritesmith1.png);background-position:-910px -1274px;width:90px;height:90px}.customize-option.hair_base_6_hollygreen{background-image:url(spritesmith1.png);background-position:-935px -1289px;width:60px;height:60px}.hair_base_6_midnight{background-image:url(spritesmith1.png);background-position:-1274px -910px;width:90px;height:90px}.customize-option.hair_base_6_midnight{background-image:url(spritesmith1.png);background-position:-1299px -925px;width:60px;height:60px}.hair_base_6_pblue{background-image:url(spritesmith1.png);background-position:-273px -1547px;width:90px;height:90px}.customize-option.hair_base_6_pblue{background-image:url(spritesmith1.png);background-position:-298px -1562px;width:60px;height:60px}.hair_base_6_peppermint{background-image:url(spritesmith1.png);background-position:-1547px -273px;width:90px;height:90px}.customize-option.hair_base_6_peppermint{background-image:url(spritesmith1.png);background-position:-1572px -288px;width:60px;height:60px}.hair_base_6_pgreen{background-image:url(spritesmith1.png);background-position:-364px -1547px;width:90px;height:90px}.customize-option.hair_base_6_pgreen{background-image:url(spritesmith1.png);background-position:-389px -1562px;width:60px;height:60px}.hair_base_6_porange{background-image:url(spritesmith1.png);background-position:-637px -1456px;width:90px;height:90px}.customize-option.hair_base_6_porange{background-image:url(spritesmith1.png);background-position:-662px -1471px;width:60px;height:60px}.hair_base_6_ppink{background-image:url(spritesmith1.png);background-position:-1456px -637px;width:90px;height:90px}.customize-option.hair_base_6_ppink{background-image:url(spritesmith1.png);background-position:-1481px -652px;width:60px;height:60px}.hair_base_6_ppurple{background-image:url(spritesmith1.png);background-position:-1547px -364px;width:90px;height:90px}.customize-option.hair_base_6_ppurple{background-image:url(spritesmith1.png);background-position:-1572px -379px;width:60px;height:60px}.hair_base_6_pumpkin{background-image:url(spritesmith1.png);background-position:-1365px -819px;width:90px;height:90px}.customize-option.hair_base_6_pumpkin{background-image:url(spritesmith1.png);background-position:-1390px -834px;width:60px;height:60px}.hair_base_6_purple{background-image:url(spritesmith1.png);background-position:-819px -1365px;width:90px;height:90px}.customize-option.hair_base_6_purple{background-image:url(spritesmith1.png);background-position:-844px -1380px;width:60px;height:60px}.hair_base_6_pyellow{background-image:url(spritesmith1.png);background-position:-1092px -1183px;width:90px;height:90px}.customize-option.hair_base_6_pyellow{background-image:url(spritesmith1.png);background-position:-1117px -1198px;width:60px;height:60px}.hair_base_6_rainbow{background-image:url(spritesmith1.png);background-position:-1183px -1092px;width:90px;height:90px}.customize-option.hair_base_6_rainbow{background-image:url(spritesmith1.png);background-position:-1208px -1107px;width:60px;height:60px}.hair_base_6_red{background-image:url(spritesmith1.png);background-position:-1547px -455px;width:90px;height:90px}.customize-option.hair_base_6_red{background-image:url(spritesmith1.png);background-position:-1572px -470px;width:60px;height:60px}.hair_base_6_snowy{background-image:url(spritesmith1.png);background-position:-455px -1547px;width:90px;height:90px}.customize-option.hair_base_6_snowy{background-image:url(spritesmith1.png);background-position:-480px -1562px;width:60px;height:60px}.hair_base_6_white{background-image:url(spritesmith1.png);background-position:-1274px -1001px;width:90px;height:90px}.customize-option.hair_base_6_white{background-image:url(spritesmith1.png);background-position:-1299px -1016px;width:60px;height:60px}.hair_base_6_winternight{background-image:url(spritesmith1.png);background-position:-1001px -1274px;width:90px;height:90px}.customize-option.hair_base_6_winternight{background-image:url(spritesmith1.png);background-position:-1026px -1289px;width:60px;height:60px}.hair_base_6_winterstar{background-image:url(spritesmith1.png);background-position:-728px -1456px;width:90px;height:90px}.customize-option.hair_base_6_winterstar{background-image:url(spritesmith1.png);background-position:-753px -1471px;width:60px;height:60px}.hair_base_6_yellow{background-image:url(spritesmith1.png);background-position:-1456px -728px;width:90px;height:90px}.customize-option.hair_base_6_yellow{background-image:url(spritesmith1.png);background-position:-1481px -743px;width:60px;height:60px}.hair_base_6_zombie{background-image:url(spritesmith1.png);background-position:0 -1638px;width:90px;height:90px}.customize-option.hair_base_6_zombie{background-image:url(spritesmith1.png);background-position:-25px -1653px;width:60px;height:60px}.hair_base_7_TRUred{background-image:url(spritesmith1.png);background-position:-1638px 0;width:90px;height:90px}.customize-option.hair_base_7_TRUred{background-image:url(spritesmith1.png);background-position:-1663px -15px;width:60px;height:60px}.hair_base_7_aurora{background-image:url(spritesmith1.png);background-position:-1638px -91px;width:90px;height:90px}.customize-option.hair_base_7_aurora{background-image:url(spritesmith1.png);background-position:-1663px -106px;width:60px;height:60px}.hair_base_7_black{background-image:url(spritesmith1.png);background-position:-546px -1547px;width:90px;height:90px}.customize-option.hair_base_7_black{background-image:url(spritesmith1.png);background-position:-571px -1562px;width:60px;height:60px}.hair_base_7_blond{background-image:url(spritesmith1.png);background-position:-91px -1638px;width:90px;height:90px}.customize-option.hair_base_7_blond{background-image:url(spritesmith1.png);background-position:-116px -1653px;width:60px;height:60px}.hair_base_7_blue{background-image:url(spritesmith1.png);background-position:-1547px -546px;width:90px;height:90px}.customize-option.hair_base_7_blue{background-image:url(spritesmith1.png);background-position:-1572px -561px;width:60px;height:60px}.hair_base_7_brown{background-image:url(spritesmith1.png);background-position:-1365px -910px;width:90px;height:90px}.customize-option.hair_base_7_brown{background-image:url(spritesmith1.png);background-position:-1390px -925px;width:60px;height:60px}.hair_base_7_candycane{background-image:url(spritesmith1.png);background-position:-910px -1365px;width:90px;height:90px}.customize-option.hair_base_7_candycane{background-image:url(spritesmith1.png);background-position:-935px -1380px;width:60px;height:60px}.hair_base_7_candycorn{background-image:url(spritesmith1.png);background-position:-182px -1638px;width:90px;height:90px}.customize-option.hair_base_7_candycorn{background-image:url(spritesmith1.png);background-position:-207px -1653px;width:60px;height:60px}.hair_base_7_festive{background-image:url(spritesmith1.png);background-position:-1638px -182px;width:90px;height:90px}.customize-option.hair_base_7_festive{background-image:url(spritesmith1.png);background-position:-1663px -197px;width:60px;height:60px}.hair_base_7_frost{background-image:url(spritesmith1.png);background-position:-273px -1638px;width:90px;height:90px}.customize-option.hair_base_7_frost{background-image:url(spritesmith1.png);background-position:-298px -1653px;width:60px;height:60px}.hair_base_7_ghostwhite{background-image:url(spritesmith1.png);background-position:-1638px -273px;width:90px;height:90px}.customize-option.hair_base_7_ghostwhite{background-image:url(spritesmith1.png);background-position:-1663px -288px;width:60px;height:60px}.hair_base_7_green{background-image:url(spritesmith1.png);background-position:-819px -1456px;width:90px;height:90px}.customize-option.hair_base_7_green{background-image:url(spritesmith1.png);background-position:-844px -1471px;width:60px;height:60px}.hair_base_7_halloween{background-image:url(spritesmith1.png);background-position:-1456px -819px;width:90px;height:90px}.customize-option.hair_base_7_halloween{background-image:url(spritesmith1.png);background-position:-1481px -834px;width:60px;height:60px}.hair_base_7_holly{background-image:url(spritesmith1.png);background-position:-1183px -1183px;width:90px;height:90px}.customize-option.hair_base_7_holly{background-image:url(spritesmith1.png);background-position:-1208px -1198px;width:60px;height:60px}.hair_base_7_hollygreen{background-image:url(spritesmith1.png);background-position:-637px -1547px;width:90px;height:90px}.customize-option.hair_base_7_hollygreen{background-image:url(spritesmith1.png);background-position:-662px -1562px;width:60px;height:60px}.hair_base_7_midnight{background-image:url(spritesmith1.png);background-position:-1547px -637px;width:90px;height:90px}.customize-option.hair_base_7_midnight{background-image:url(spritesmith1.png);background-position:-1572px -652px;width:60px;height:60px}.hair_base_7_pblue{background-image:url(spritesmith1.png);background-position:-1092px -1274px;width:90px;height:90px}.customize-option.hair_base_7_pblue{background-image:url(spritesmith1.png);background-position:-1117px -1289px;width:60px;height:60px}.hair_base_7_peppermint{background-image:url(spritesmith1.png);background-position:-1274px -1092px;width:90px;height:90px}.customize-option.hair_base_7_peppermint{background-image:url(spritesmith1.png);background-position:-1299px -1107px;width:60px;height:60px}.hair_base_7_pgreen{background-image:url(spritesmith1.png);background-position:-364px -1638px;width:90px;height:90px}.customize-option.hair_base_7_pgreen{background-image:url(spritesmith1.png);background-position:-389px -1653px;width:60px;height:60px}.hair_base_7_porange{background-image:url(spritesmith1.png);background-position:-1638px -364px;width:90px;height:90px}.customize-option.hair_base_7_porange{background-image:url(spritesmith1.png);background-position:-1663px -379px;width:60px;height:60px}.hair_base_7_ppink{background-image:url(spritesmith1.png);background-position:-1001px -1365px;width:90px;height:90px}.customize-option.hair_base_7_ppink{background-image:url(spritesmith1.png);background-position:-1026px -1380px;width:60px;height:60px}.hair_base_7_ppurple{background-image:url(spritesmith1.png);background-position:-1365px -1001px;width:90px;height:90px}.customize-option.hair_base_7_ppurple{background-image:url(spritesmith1.png);background-position:-1390px -1016px;width:60px;height:60px}.hair_base_7_pumpkin{background-image:url(spritesmith1.png);background-position:-455px -1638px;width:90px;height:90px}.customize-option.hair_base_7_pumpkin{background-image:url(spritesmith1.png);background-position:-480px -1653px;width:60px;height:60px}.hair_base_7_purple{background-image:url(spritesmith1.png);background-position:-1638px -455px;width:90px;height:90px}.customize-option.hair_base_7_purple{background-image:url(spritesmith1.png);background-position:-1663px -470px;width:60px;height:60px}.hair_base_7_pyellow{background-image:url(spritesmith1.png);background-position:-728px -1547px;width:90px;height:90px}.customize-option.hair_base_7_pyellow{background-image:url(spritesmith1.png);background-position:-753px -1562px;width:60px;height:60px}.hair_base_7_rainbow{background-image:url(spritesmith1.png);background-position:-1547px -728px;width:90px;height:90px}.customize-option.hair_base_7_rainbow{background-image:url(spritesmith1.png);background-position:-1572px -743px;width:60px;height:60px}.hair_base_7_red{background-image:url(spritesmith1.png);background-position:-910px -1456px;width:90px;height:90px}.customize-option.hair_base_7_red{background-image:url(spritesmith1.png);background-position:-935px -1471px;width:60px;height:60px}.hair_base_7_snowy{background-image:url(spritesmith1.png);background-position:-1456px -910px;width:90px;height:90px}.customize-option.hair_base_7_snowy{background-image:url(spritesmith1.png);background-position:-1481px -925px;width:60px;height:60px}.hair_base_7_white{background-image:url(spritesmith1.png);background-position:-1638px -546px;width:90px;height:90px}.customize-option.hair_base_7_white{background-image:url(spritesmith1.png);background-position:-1663px -561px;width:60px;height:60px}.hair_base_7_winternight{background-image:url(spritesmith1.png);background-position:-546px -1638px;width:90px;height:90px}.customize-option.hair_base_7_winternight{background-image:url(spritesmith1.png);background-position:-571px -1653px;width:60px;height:60px}.hair_base_7_winterstar{background-image:url(spritesmith1.png);background-position:-1729px 0;width:90px;height:90px}.customize-option.hair_base_7_winterstar{background-image:url(spritesmith1.png);background-position:-1754px -15px;width:60px;height:60px}.hair_base_7_yellow{background-image:url(spritesmith1.png);background-position:0 -1729px;width:90px;height:90px}.customize-option.hair_base_7_yellow{background-image:url(spritesmith1.png);background-position:-25px -1744px;width:60px;height:60px}.hair_base_7_zombie{background-image:url(spritesmith1.png);background-position:-91px -1729px;width:90px;height:90px}.customize-option.hair_base_7_zombie{background-image:url(spritesmith1.png);background-position:-116px -1744px;width:60px;height:60px}.hair_base_8_TRUred{background-image:url(spritesmith1.png);background-position:-1729px -91px;width:90px;height:90px}.customize-option.hair_base_8_TRUred{background-image:url(spritesmith1.png);background-position:-1754px -106px;width:60px;height:60px}.hair_base_8_aurora{background-image:url(spritesmith1.png);background-position:-1729px -182px;width:90px;height:90px}.customize-option.hair_base_8_aurora{background-image:url(spritesmith1.png);background-position:-1754px -197px;width:60px;height:60px}.hair_base_8_black{background-image:url(spritesmith1.png);background-position:-1274px -1183px;width:90px;height:90px}.customize-option.hair_base_8_black{background-image:url(spritesmith1.png);background-position:-1299px -1198px;width:60px;height:60px}.hair_base_8_blond{background-image:url(spritesmith1.png);background-position:-1183px -1274px;width:90px;height:90px}.customize-option.hair_base_8_blond{background-image:url(spritesmith1.png);background-position:-1208px -1289px;width:60px;height:60px}.hair_base_8_blue{background-image:url(spritesmith1.png);background-position:-182px -1729px;width:90px;height:90px}.customize-option.hair_base_8_blue{background-image:url(spritesmith1.png);background-position:-207px -1744px;width:60px;height:60px}.hair_base_8_brown{background-image:url(spritesmith1.png);background-position:-1092px -1365px;width:90px;height:90px}.customize-option.hair_base_8_brown{background-image:url(spritesmith1.png);background-position:-1117px -1380px;width:60px;height:60px}.hair_base_8_candycane{background-image:url(spritesmith1.png);background-position:-1365px -1092px;width:90px;height:90px}.customize-option.hair_base_8_candycane{background-image:url(spritesmith1.png);background-position:-1390px -1107px;width:60px;height:60px}.hair_base_8_candycorn{background-image:url(spritesmith1.png);background-position:-1547px -819px;width:90px;height:90px}.customize-option.hair_base_8_candycorn{background-image:url(spritesmith1.png);background-position:-1572px -834px;width:60px;height:60px}.hair_base_8_festive{background-image:url(spritesmith1.png);background-position:-1729px -273px;width:90px;height:90px}.customize-option.hair_base_8_festive{background-image:url(spritesmith1.png);background-position:-1754px -288px;width:60px;height:60px}.hair_base_8_frost{background-image:url(spritesmith1.png);background-position:-819px -1547px;width:90px;height:90px}.customize-option.hair_base_8_frost{background-image:url(spritesmith1.png);background-position:-844px -1562px;width:60px;height:60px}.hair_base_8_ghostwhite{background-image:url(spritesmith1.png);background-position:-273px -1729px;width:90px;height:90px}.customize-option.hair_base_8_ghostwhite{background-image:url(spritesmith1.png);background-position:-298px -1744px;width:60px;height:60px}.hair_base_8_green{background-image:url(spritesmith1.png);background-position:-637px -1638px;width:90px;height:90px}.customize-option.hair_base_8_green{background-image:url(spritesmith1.png);background-position:-662px -1653px;width:60px;height:60px}.hair_base_8_halloween{background-image:url(spritesmith1.png);background-position:-1638px -637px;width:90px;height:90px}.customize-option.hair_base_8_halloween{background-image:url(spritesmith1.png);background-position:-1663px -652px;width:60px;height:60px}.hair_base_8_holly{background-image:url(spritesmith1.png);background-position:-1729px -364px;width:90px;height:90px}.customize-option.hair_base_8_holly{background-image:url(spritesmith1.png);background-position:-1754px -379px;width:60px;height:60px}.hair_base_8_hollygreen{background-image:url(spritesmith1.png);background-position:-1001px -1456px;width:90px;height:90px}.customize-option.hair_base_8_hollygreen{background-image:url(spritesmith1.png);background-position:-1026px -1471px;width:60px;height:60px}.hair_base_8_midnight{background-image:url(spritesmith1.png);background-position:-364px -1729px;width:90px;height:90px}.customize-option.hair_base_8_midnight{background-image:url(spritesmith1.png);background-position:-389px -1744px;width:60px;height:60px}.hair_base_8_pblue{background-image:url(spritesmith1.png);background-position:-1456px -1001px;width:90px;height:90px}.customize-option.hair_base_8_pblue{background-image:url(spritesmith1.png);background-position:-1481px -1016px;width:60px;height:60px}.hair_base_8_peppermint{background-image:url(spritesmith1.png);background-position:-455px -1729px;width:90px;height:90px}.customize-option.hair_base_8_peppermint{background-image:url(spritesmith1.png);background-position:-480px -1744px;width:60px;height:60px}.hair_base_8_pgreen{background-image:url(spritesmith1.png);background-position:-1729px -455px;width:90px;height:90px}.customize-option.hair_base_8_pgreen{background-image:url(spritesmith1.png);background-position:-1754px -470px;width:60px;height:60px}.hair_base_8_porange{background-image:url(spritesmith1.png);background-position:-1638px -728px;width:90px;height:90px}.customize-option.hair_base_8_porange{background-image:url(spritesmith1.png);background-position:-1663px -743px;width:60px;height:60px}.hair_base_8_ppink{background-image:url(spritesmith1.png);background-position:-728px -1638px;width:90px;height:90px}.customize-option.hair_base_8_ppink{background-image:url(spritesmith1.png);background-position:-753px -1653px;width:60px;height:60px}.hair_base_8_ppurple{background-image:url(spritesmith1.png);background-position:-1547px -910px;width:90px;height:90px}.customize-option.hair_base_8_ppurple{background-image:url(spritesmith1.png);background-position:-1572px -925px;width:60px;height:60px}.hair_base_8_pumpkin{background-image:url(spritesmith1.png);background-position:-910px -1547px;width:90px;height:90px}.customize-option.hair_base_8_pumpkin{background-image:url(spritesmith1.png);background-position:-935px -1562px;width:60px;height:60px}.hair_base_8_purple{background-image:url(spritesmith1.png);background-position:-1274px -1274px;width:90px;height:90px}.customize-option.hair_base_8_purple{background-image:url(spritesmith1.png);background-position:-1299px -1289px;width:60px;height:60px}.hair_base_8_pyellow{background-image:url(spritesmith1.png);background-position:-1183px -1365px;width:90px;height:90px}.customize-option.hair_base_8_pyellow{background-image:url(spritesmith1.png);background-position:-1208px -1380px;width:60px;height:60px}.hair_base_8_rainbow{background-image:url(spritesmith1.png);background-position:-1365px -1183px;width:90px;height:90px}.customize-option.hair_base_8_rainbow{background-image:url(spritesmith1.png);background-position:-1390px -1198px;width:60px;height:60px}.hair_base_8_red{background-image:url(spritesmith1.png);background-position:-1729px -546px;width:90px;height:90px}.customize-option.hair_base_8_red{background-image:url(spritesmith1.png);background-position:-1754px -561px;width:60px;height:60px}.hair_base_8_snowy{background-image:url(spritesmith1.png);background-position:-546px -1729px;width:90px;height:90px}.customize-option.hair_base_8_snowy{background-image:url(spritesmith1.png);background-position:-571px -1744px;width:60px;height:60px}.hair_base_8_white{background-image:url(spritesmith1.png);background-position:-1820px 0;width:90px;height:90px}.customize-option.hair_base_8_white{background-image:url(spritesmith1.png);background-position:-1845px -15px;width:60px;height:60px}.hair_base_8_winternight{background-image:url(spritesmith1.png);background-position:-1092px -1456px;width:90px;height:90px}.customize-option.hair_base_8_winternight{background-image:url(spritesmith1.png);background-position:-1117px -1471px;width:60px;height:60px}.hair_base_8_winterstar{background-image:url(spritesmith1.png);background-position:0 -1820px;width:90px;height:90px}.customize-option.hair_base_8_winterstar{background-image:url(spritesmith1.png);background-position:-25px -1835px;width:60px;height:60px}.hair_base_8_yellow{background-image:url(spritesmith1.png);background-position:-1456px -1092px;width:90px;height:90px}.customize-option.hair_base_8_yellow{background-image:url(spritesmith1.png);background-position:-1481px -1107px;width:60px;height:60px}.hair_base_8_zombie{background-image:url(spritesmith1.png);background-position:-1820px -91px;width:90px;height:90px}.customize-option.hair_base_8_zombie{background-image:url(spritesmith1.png);background-position:-1845px -106px;width:60px;height:60px}.hair_base_9_TRUEred{background-image:url(spritesmith1.png);background-position:-91px -1820px;width:90px;height:90px}.customize-option.hair_base_9_TRUEred{background-image:url(spritesmith1.png);background-position:-116px -1835px;width:60px;height:60px}.hair_base_9_aurora{background-image:url(spritesmith1.png);background-position:-182px -1820px;width:90px;height:90px}.customize-option.hair_base_9_aurora{background-image:url(spritesmith1.png);background-position:-207px -1835px;width:60px;height:60px}.hair_base_9_black{background-image:url(spritesmith1.png);background-position:-1820px -182px;width:90px;height:90px}.customize-option.hair_base_9_black{background-image:url(spritesmith1.png);background-position:-1845px -197px;width:60px;height:60px}.hair_base_9_blond{background-image:url(spritesmith1.png);background-position:-1638px -819px;width:90px;height:90px}.customize-option.hair_base_9_blond{background-image:url(spritesmith1.png);background-position:-1663px -834px;width:60px;height:60px}.hair_base_9_blue{background-image:url(spritesmith1.png);background-position:-819px -1638px;width:90px;height:90px}.customize-option.hair_base_9_blue{background-image:url(spritesmith1.png);background-position:-844px -1653px;width:60px;height:60px}.hair_base_9_brown{background-image:url(spritesmith1.png);background-position:-1820px -273px;width:90px;height:90px}.customize-option.hair_base_9_brown{background-image:url(spritesmith1.png);background-position:-1845px -288px;width:60px;height:60px}.hair_base_9_festive{background-image:url(spritesmith1.png);background-position:-273px -1820px;width:90px;height:90px}.customize-option.hair_base_9_festive{background-image:url(spritesmith1.png);background-position:-298px -1835px;width:60px;height:60px}.hair_base_9_green{background-image:url(spritesmith1.png);background-position:-637px -1729px;width:90px;height:90px}.customize-option.hair_base_9_green{background-image:url(spritesmith1.png);background-position:-662px -1744px;width:60px;height:60px}.hair_base_9_hollygreen{background-image:url(spritesmith1.png);background-position:-1547px -1001px;width:90px;height:90px}.customize-option.hair_base_9_hollygreen{background-image:url(spritesmith1.png);background-position:-1572px -1016px;width:60px;height:60px}.hair_base_9_pblue{background-image:url(spritesmith1.png);background-position:-1729px -637px;width:90px;height:90px}.customize-option.hair_base_9_pblue{background-image:url(spritesmith1.png);background-position:-1754px -652px;width:60px;height:60px}.hair_base_9_peppermint{background-image:url(spritesmith1.png);background-position:-1001px -1547px;width:90px;height:90px}.customize-option.hair_base_9_peppermint{background-image:url(spritesmith1.png);background-position:-1026px -1562px;width:60px;height:60px}.hair_base_9_pgreen{background-image:url(spritesmith1.png);background-position:-364px -1820px;width:90px;height:90px}.customize-option.hair_base_9_pgreen{background-image:url(spritesmith1.png);background-position:-389px -1835px;width:60px;height:60px}.hair_base_9_porange{background-image:url(spritesmith1.png);background-position:-1820px -364px;width:90px;height:90px}.customize-option.hair_base_9_porange{background-image:url(spritesmith1.png);background-position:-1845px -379px;width:60px;height:60px}.hair_base_9_ppink{background-image:url(spritesmith1.png);background-position:-1274px -1365px;width:90px;height:90px}.customize-option.hair_base_9_ppink{background-image:url(spritesmith1.png);background-position:-1299px -1380px;width:60px;height:60px}.hair_base_9_ppurple{background-image:url(spritesmith1.png);background-position:-1365px -1274px;width:90px;height:90px}.customize-option.hair_base_9_ppurple{background-image:url(spritesmith1.png);background-position:-1390px -1289px;width:60px;height:60px}.hair_base_9_purple{background-image:url(spritesmith1.png);background-position:-1638px -910px;width:90px;height:90px}.customize-option.hair_base_9_purple{background-image:url(spritesmith1.png);background-position:-1663px -925px;width:60px;height:60px}.hair_base_9_pyellow{background-image:url(spritesmith1.png);background-position:-910px -1638px;width:90px;height:90px}.customize-option.hair_base_9_pyellow{background-image:url(spritesmith1.png);background-position:-935px -1653px;width:60px;height:60px}.hair_base_9_rainbow{background-image:url(spritesmith1.png);background-position:-1456px -1183px;width:90px;height:90px}.customize-option.hair_base_9_rainbow{background-image:url(spritesmith1.png);background-position:-1481px -1198px;width:60px;height:60px}.hair_base_9_red{background-image:url(spritesmith1.png);background-position:-455px -1820px;width:90px;height:90px}.customize-option.hair_base_9_red{background-image:url(spritesmith1.png);background-position:-480px -1835px;width:60px;height:60px}.hair_base_9_snowy{background-image:url(spritesmith1.png);background-position:-728px -1729px;width:90px;height:90px}.customize-option.hair_base_9_snowy{background-image:url(spritesmith1.png);background-position:-753px -1744px;width:60px;height:60px}.hair_base_9_white{background-image:url(spritesmith1.png);background-position:-1729px -728px;width:90px;height:90px}.customize-option.hair_base_9_white{background-image:url(spritesmith1.png);background-position:-1754px -743px;width:60px;height:60px}.hair_base_9_winterstar{background-image:url(spritesmith1.png);background-position:-1183px -1456px;width:90px;height:90px}.customize-option.hair_base_9_winterstar{background-image:url(spritesmith1.png);background-position:-1208px -1471px;width:60px;height:60px}.hair_base_9_yellow{background-image:url(spritesmith1.png);background-position:-1820px -455px;width:90px;height:90px}.customize-option.hair_base_9_yellow{background-image:url(spritesmith1.png);background-position:-1845px -470px;width:60px;height:60px}.broad_shirt_black{background-image:url(spritesmith1.png);background-position:-1092px -1547px;width:90px;height:90px}.customize-option.broad_shirt_black{background-image:url(spritesmith1.png);background-position:-1117px -1577px;width:60px;height:60px}.broad_shirt_blue{background-image:url(spritesmith1.png);background-position:-1547px -1092px;width:90px;height:90px}.customize-option.broad_shirt_blue{background-image:url(spritesmith1.png);background-position:-1572px -1122px;width:60px;height:60px}.broad_shirt_convict{background-image:url(spritesmith1.png);background-position:-1820px -546px;width:90px;height:90px}.customize-option.broad_shirt_convict{background-image:url(spritesmith1.png);background-position:-1845px -576px;width:60px;height:60px}.broad_shirt_cross{background-image:url(spritesmith1.png);background-position:-546px -1820px;width:90px;height:90px}.customize-option.broad_shirt_cross{background-image:url(spritesmith1.png);background-position:-571px -1850px;width:60px;height:60px}.broad_shirt_fire{background-image:url(spritesmith1.png);background-position:-1911px 0;width:90px;height:90px}.customize-option.broad_shirt_fire{background-image:url(spritesmith1.png);background-position:-1936px -30px;width:60px;height:60px}.broad_shirt_green{background-image:url(spritesmith1.png);background-position:0 -1911px;width:90px;height:90px}.customize-option.broad_shirt_green{background-image:url(spritesmith1.png);background-position:-25px -1941px;width:60px;height:60px}.broad_shirt_horizon{background-image:url(spritesmith1.png);background-position:-91px -1911px;width:90px;height:90px}.customize-option.broad_shirt_horizon{background-image:url(spritesmith1.png);background-position:-116px -1941px;width:60px;height:60px}.broad_shirt_ocean{background-image:url(spritesmith1.png);background-position:-819px -1729px;width:90px;height:90px}.customize-option.broad_shirt_ocean{background-image:url(spritesmith1.png);background-position:-844px -1759px;width:60px;height:60px}.broad_shirt_pink{background-image:url(spritesmith1.png);background-position:-1911px -91px;width:90px;height:90px}.customize-option.broad_shirt_pink{background-image:url(spritesmith1.png);background-position:-1936px -121px;width:60px;height:60px}.broad_shirt_purple{background-image:url(spritesmith1.png);background-position:-1729px -819px;width:90px;height:90px}.customize-option.broad_shirt_purple{background-image:url(spritesmith1.png);background-position:-1754px -849px;width:60px;height:60px} \ No newline at end of file +.hair_base_11_snowy { + background-image: url(spritesmith1.png); + background-position: -91px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_snowy { + background-image: url(spritesmith1.png); + background-position: -116px -15px; + width: 60px; + height: 60px; +} +.hair_base_11_white { + background-image: url(spritesmith1.png); + background-position: -182px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_white { + background-image: url(spritesmith1.png); + background-position: -207px -1198px; + width: 60px; + height: 60px; +} +.hair_base_11_winterstar { + background-image: url(spritesmith1.png); + background-position: 0px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_winterstar { + background-image: url(spritesmith1.png); + background-position: -25px -106px; + width: 60px; + height: 60px; +} +.hair_base_11_yellow { + background-image: url(spritesmith1.png); + background-position: -91px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_yellow { + background-image: url(spritesmith1.png); + background-position: -116px -106px; + width: 60px; + height: 60px; +} +.hair_base_12_TRUEred { + background-image: url(spritesmith1.png); + background-position: -182px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_TRUEred { + background-image: url(spritesmith1.png); + background-position: -207px -15px; + width: 60px; + height: 60px; +} +.hair_base_12_aurora { + background-image: url(spritesmith1.png); + background-position: -182px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_aurora { + background-image: url(spritesmith1.png); + background-position: -207px -106px; + width: 60px; + height: 60px; +} +.hair_base_12_blond { + background-image: url(spritesmith1.png); + background-position: 0px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_blond { + background-image: url(spritesmith1.png); + background-position: -25px -197px; + width: 60px; + height: 60px; +} +.hair_base_12_blue { + background-image: url(spritesmith1.png); + background-position: -91px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_blue { + background-image: url(spritesmith1.png); + background-position: -116px -197px; + width: 60px; + height: 60px; +} +.hair_base_12_brown { + background-image: url(spritesmith1.png); + background-position: -182px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_brown { + background-image: url(spritesmith1.png); + background-position: -207px -197px; + width: 60px; + height: 60px; +} +.hair_base_12_festive { + background-image: url(spritesmith1.png); + background-position: -273px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_festive { + background-image: url(spritesmith1.png); + background-position: -298px -15px; + width: 60px; + height: 60px; +} +.hair_base_12_green { + background-image: url(spritesmith1.png); + background-position: -273px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_green { + background-image: url(spritesmith1.png); + background-position: -298px -106px; + width: 60px; + height: 60px; +} +.hair_base_12_hollygreen { + background-image: url(spritesmith1.png); + background-position: -273px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_hollygreen { + background-image: url(spritesmith1.png); + background-position: -298px -197px; + width: 60px; + height: 60px; +} +.hair_base_12_pblue { + background-image: url(spritesmith1.png); + background-position: 0px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_pblue { + background-image: url(spritesmith1.png); + background-position: -25px -288px; + width: 60px; + height: 60px; +} +.hair_base_12_peppermint { + background-image: url(spritesmith1.png); + background-position: -91px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_peppermint { + background-image: url(spritesmith1.png); + background-position: -116px -288px; + width: 60px; + height: 60px; +} +.hair_base_12_pgreen { + background-image: url(spritesmith1.png); + background-position: -182px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_pgreen { + background-image: url(spritesmith1.png); + background-position: -207px -288px; + width: 60px; + height: 60px; +} +.hair_base_12_porange { + background-image: url(spritesmith1.png); + background-position: -273px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_porange { + background-image: url(spritesmith1.png); + background-position: -298px -288px; + width: 60px; + height: 60px; +} +.hair_base_12_ppink { + background-image: url(spritesmith1.png); + background-position: -364px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_ppink { + background-image: url(spritesmith1.png); + background-position: -389px -15px; + width: 60px; + height: 60px; +} +.hair_base_12_ppurple { + background-image: url(spritesmith1.png); + background-position: -364px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_ppurple { + background-image: url(spritesmith1.png); + background-position: -389px -106px; + width: 60px; + height: 60px; +} +.hair_base_12_purple { + background-image: url(spritesmith1.png); + background-position: -364px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_purple { + background-image: url(spritesmith1.png); + background-position: -389px -197px; + width: 60px; + height: 60px; +} +.hair_base_12_pyellow { + background-image: url(spritesmith1.png); + background-position: -364px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_pyellow { + background-image: url(spritesmith1.png); + background-position: -389px -288px; + width: 60px; + height: 60px; +} +.hair_base_12_rainbow { + background-image: url(spritesmith1.png); + background-position: 0px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_rainbow { + background-image: url(spritesmith1.png); + background-position: -25px -379px; + width: 60px; + height: 60px; +} +.hair_base_12_red { + background-image: url(spritesmith1.png); + background-position: -91px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_red { + background-image: url(spritesmith1.png); + background-position: -116px -379px; + width: 60px; + height: 60px; +} +.hair_base_12_snowy { + background-image: url(spritesmith1.png); + background-position: -182px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_snowy { + background-image: url(spritesmith1.png); + background-position: -207px -379px; + width: 60px; + height: 60px; +} +.hair_base_12_white { + background-image: url(spritesmith1.png); + background-position: -273px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_white { + background-image: url(spritesmith1.png); + background-position: -298px -379px; + width: 60px; + height: 60px; +} +.hair_base_12_winterstar { + background-image: url(spritesmith1.png); + background-position: -364px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_winterstar { + background-image: url(spritesmith1.png); + background-position: -389px -379px; + width: 60px; + height: 60px; +} +.hair_base_12_yellow { + background-image: url(spritesmith1.png); + background-position: -455px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_yellow { + background-image: url(spritesmith1.png); + background-position: -480px -15px; + width: 60px; + height: 60px; +} +.hair_base_13_TRUEred { + background-image: url(spritesmith1.png); + background-position: -455px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_TRUEred { + background-image: url(spritesmith1.png); + background-position: -480px -106px; + width: 60px; + height: 60px; +} +.hair_base_13_aurora { + background-image: url(spritesmith1.png); + background-position: -455px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_aurora { + background-image: url(spritesmith1.png); + background-position: -480px -197px; + width: 60px; + height: 60px; +} +.hair_base_13_black { + background-image: url(spritesmith1.png); + background-position: -455px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_black { + background-image: url(spritesmith1.png); + background-position: -480px -288px; + width: 60px; + height: 60px; +} +.hair_base_13_blond { + background-image: url(spritesmith1.png); + background-position: -455px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_blond { + background-image: url(spritesmith1.png); + background-position: -480px -379px; + width: 60px; + height: 60px; +} +.hair_base_13_blue { + background-image: url(spritesmith1.png); + background-position: 0px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_blue { + background-image: url(spritesmith1.png); + background-position: -25px -470px; + width: 60px; + height: 60px; +} +.hair_base_13_brown { + background-image: url(spritesmith1.png); + background-position: -91px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_brown { + background-image: url(spritesmith1.png); + background-position: -116px -470px; + width: 60px; + height: 60px; +} +.hair_base_13_festive { + background-image: url(spritesmith1.png); + background-position: -182px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_festive { + background-image: url(spritesmith1.png); + background-position: -207px -470px; + width: 60px; + height: 60px; +} +.hair_base_13_green { + background-image: url(spritesmith1.png); + background-position: -273px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_green { + background-image: url(spritesmith1.png); + background-position: -298px -470px; + width: 60px; + height: 60px; +} +.hair_base_13_hollygreen { + background-image: url(spritesmith1.png); + background-position: -364px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_hollygreen { + background-image: url(spritesmith1.png); + background-position: -389px -470px; + width: 60px; + height: 60px; +} +.hair_base_13_pblue { + background-image: url(spritesmith1.png); + background-position: -455px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_pblue { + background-image: url(spritesmith1.png); + background-position: -480px -470px; + width: 60px; + height: 60px; +} +.hair_base_13_peppermint { + background-image: url(spritesmith1.png); + background-position: -546px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_peppermint { + background-image: url(spritesmith1.png); + background-position: -571px -15px; + width: 60px; + height: 60px; +} +.hair_base_13_pgreen { + background-image: url(spritesmith1.png); + background-position: -546px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_pgreen { + background-image: url(spritesmith1.png); + background-position: -571px -106px; + width: 60px; + height: 60px; +} +.hair_base_13_porange { + background-image: url(spritesmith1.png); + background-position: -546px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_porange { + background-image: url(spritesmith1.png); + background-position: -571px -197px; + width: 60px; + height: 60px; +} +.hair_base_13_ppink { + background-image: url(spritesmith1.png); + background-position: -546px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_ppink { + background-image: url(spritesmith1.png); + background-position: -571px -288px; + width: 60px; + height: 60px; +} +.hair_base_13_ppurple { + background-image: url(spritesmith1.png); + background-position: -546px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_ppurple { + background-image: url(spritesmith1.png); + background-position: -571px -379px; + width: 60px; + height: 60px; +} +.hair_base_13_purple { + background-image: url(spritesmith1.png); + background-position: -546px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_purple { + background-image: url(spritesmith1.png); + background-position: -571px -470px; + width: 60px; + height: 60px; +} +.hair_base_13_pyellow { + background-image: url(spritesmith1.png); + background-position: 0px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_pyellow { + background-image: url(spritesmith1.png); + background-position: -25px -561px; + width: 60px; + height: 60px; +} +.hair_base_13_rainbow { + background-image: url(spritesmith1.png); + background-position: -91px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_rainbow { + background-image: url(spritesmith1.png); + background-position: -116px -561px; + width: 60px; + height: 60px; +} +.hair_base_13_red { + background-image: url(spritesmith1.png); + background-position: -182px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_red { + background-image: url(spritesmith1.png); + background-position: -207px -561px; + width: 60px; + height: 60px; +} +.hair_base_13_snowy { + background-image: url(spritesmith1.png); + background-position: -273px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_snowy { + background-image: url(spritesmith1.png); + background-position: -298px -561px; + width: 60px; + height: 60px; +} +.hair_base_13_white { + background-image: url(spritesmith1.png); + background-position: -364px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_white { + background-image: url(spritesmith1.png); + background-position: -389px -561px; + width: 60px; + height: 60px; +} +.hair_base_13_winterstar { + background-image: url(spritesmith1.png); + background-position: -455px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_winterstar { + background-image: url(spritesmith1.png); + background-position: -480px -561px; + width: 60px; + height: 60px; +} +.hair_base_13_yellow { + background-image: url(spritesmith1.png); + background-position: -546px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_yellow { + background-image: url(spritesmith1.png); + background-position: -571px -561px; + width: 60px; + height: 60px; +} +.hair_base_14_TRUEred { + background-image: url(spritesmith1.png); + background-position: -637px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_TRUEred { + background-image: url(spritesmith1.png); + background-position: -662px -15px; + width: 60px; + height: 60px; +} +.hair_base_14_aurora { + background-image: url(spritesmith1.png); + background-position: -637px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_aurora { + background-image: url(spritesmith1.png); + background-position: -662px -106px; + width: 60px; + height: 60px; +} +.hair_base_14_black { + background-image: url(spritesmith1.png); + background-position: -637px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_black { + background-image: url(spritesmith1.png); + background-position: -662px -197px; + width: 60px; + height: 60px; +} +.hair_base_14_blond { + background-image: url(spritesmith1.png); + background-position: -637px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_blond { + background-image: url(spritesmith1.png); + background-position: -662px -288px; + width: 60px; + height: 60px; +} +.hair_base_14_blue { + background-image: url(spritesmith1.png); + background-position: -637px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_blue { + background-image: url(spritesmith1.png); + background-position: -662px -379px; + width: 60px; + height: 60px; +} +.hair_base_14_brown { + background-image: url(spritesmith1.png); + background-position: -637px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_brown { + background-image: url(spritesmith1.png); + background-position: -662px -470px; + width: 60px; + height: 60px; +} +.hair_base_14_festive { + background-image: url(spritesmith1.png); + background-position: -637px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_festive { + background-image: url(spritesmith1.png); + background-position: -662px -561px; + width: 60px; + height: 60px; +} +.hair_base_14_green { + background-image: url(spritesmith1.png); + background-position: 0px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_green { + background-image: url(spritesmith1.png); + background-position: -25px -652px; + width: 60px; + height: 60px; +} +.hair_base_14_hollygreen { + background-image: url(spritesmith1.png); + background-position: -91px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_hollygreen { + background-image: url(spritesmith1.png); + background-position: -116px -652px; + width: 60px; + height: 60px; +} +.hair_base_14_pblue { + background-image: url(spritesmith1.png); + background-position: -182px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_pblue { + background-image: url(spritesmith1.png); + background-position: -207px -652px; + width: 60px; + height: 60px; +} +.hair_base_14_peppermint { + background-image: url(spritesmith1.png); + background-position: -273px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_peppermint { + background-image: url(spritesmith1.png); + background-position: -298px -652px; + width: 60px; + height: 60px; +} +.hair_base_14_pgreen { + background-image: url(spritesmith1.png); + background-position: -364px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_pgreen { + background-image: url(spritesmith1.png); + background-position: -389px -652px; + width: 60px; + height: 60px; +} +.hair_base_14_porange { + background-image: url(spritesmith1.png); + background-position: -455px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_porange { + background-image: url(spritesmith1.png); + background-position: -480px -652px; + width: 60px; + height: 60px; +} +.hair_base_14_ppink { + background-image: url(spritesmith1.png); + background-position: -546px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_ppink { + background-image: url(spritesmith1.png); + background-position: -571px -652px; + width: 60px; + height: 60px; +} +.hair_base_14_ppurple { + background-image: url(spritesmith1.png); + background-position: -637px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_ppurple { + background-image: url(spritesmith1.png); + background-position: -662px -652px; + width: 60px; + height: 60px; +} +.hair_base_14_purple { + background-image: url(spritesmith1.png); + background-position: -728px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_purple { + background-image: url(spritesmith1.png); + background-position: -753px -15px; + width: 60px; + height: 60px; +} +.hair_base_14_pyellow { + background-image: url(spritesmith1.png); + background-position: -728px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_pyellow { + background-image: url(spritesmith1.png); + background-position: -753px -106px; + width: 60px; + height: 60px; +} +.hair_base_14_rainbow { + background-image: url(spritesmith1.png); + background-position: -728px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_rainbow { + background-image: url(spritesmith1.png); + background-position: -753px -197px; + width: 60px; + height: 60px; +} +.hair_base_14_red { + background-image: url(spritesmith1.png); + background-position: -728px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_red { + background-image: url(spritesmith1.png); + background-position: -753px -288px; + width: 60px; + height: 60px; +} +.hair_base_14_snowy { + background-image: url(spritesmith1.png); + background-position: -728px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_snowy { + background-image: url(spritesmith1.png); + background-position: -753px -379px; + width: 60px; + height: 60px; +} +.hair_base_14_white { + background-image: url(spritesmith1.png); + background-position: -728px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_white { + background-image: url(spritesmith1.png); + background-position: -753px -470px; + width: 60px; + height: 60px; +} +.hair_base_14_winterstar { + background-image: url(spritesmith1.png); + background-position: -728px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_winterstar { + background-image: url(spritesmith1.png); + background-position: -753px -561px; + width: 60px; + height: 60px; +} +.hair_base_14_yellow { + background-image: url(spritesmith1.png); + background-position: -728px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_yellow { + background-image: url(spritesmith1.png); + background-position: -753px -652px; + width: 60px; + height: 60px; +} +.hair_base_1_TRUred { + background-image: url(spritesmith1.png); + background-position: 0px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_TRUred { + background-image: url(spritesmith1.png); + background-position: -25px -743px; + width: 60px; + height: 60px; +} +.hair_base_1_aurora { + background-image: url(spritesmith1.png); + background-position: -91px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_aurora { + background-image: url(spritesmith1.png); + background-position: -116px -743px; + width: 60px; + height: 60px; +} +.hair_base_1_black { + background-image: url(spritesmith1.png); + background-position: -182px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_black { + background-image: url(spritesmith1.png); + background-position: -207px -743px; + width: 60px; + height: 60px; +} +.hair_base_1_blond { + background-image: url(spritesmith1.png); + background-position: -273px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_blond { + background-image: url(spritesmith1.png); + background-position: -298px -743px; + width: 60px; + height: 60px; +} +.hair_base_1_blue { + background-image: url(spritesmith1.png); + background-position: -364px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_blue { + background-image: url(spritesmith1.png); + background-position: -389px -743px; + width: 60px; + height: 60px; +} +.hair_base_1_brown { + background-image: url(spritesmith1.png); + background-position: -455px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_brown { + background-image: url(spritesmith1.png); + background-position: -480px -743px; + width: 60px; + height: 60px; +} +.hair_base_1_candycane { + background-image: url(spritesmith1.png); + background-position: -546px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_candycane { + background-image: url(spritesmith1.png); + background-position: -571px -743px; + width: 60px; + height: 60px; +} +.hair_base_1_candycorn { + background-image: url(spritesmith1.png); + background-position: -637px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_candycorn { + background-image: url(spritesmith1.png); + background-position: -662px -743px; + width: 60px; + height: 60px; +} +.hair_base_1_festive { + background-image: url(spritesmith1.png); + background-position: -728px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_festive { + background-image: url(spritesmith1.png); + background-position: -753px -743px; + width: 60px; + height: 60px; +} +.hair_base_1_frost { + background-image: url(spritesmith1.png); + background-position: -819px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_frost { + background-image: url(spritesmith1.png); + background-position: -844px -15px; + width: 60px; + height: 60px; +} +.hair_base_1_ghostwhite { + background-image: url(spritesmith1.png); + background-position: -819px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_ghostwhite { + background-image: url(spritesmith1.png); + background-position: -844px -106px; + width: 60px; + height: 60px; +} +.hair_base_1_green { + background-image: url(spritesmith1.png); + background-position: -819px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_green { + background-image: url(spritesmith1.png); + background-position: -844px -197px; + width: 60px; + height: 60px; +} +.hair_base_1_halloween { + background-image: url(spritesmith1.png); + background-position: -819px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_halloween { + background-image: url(spritesmith1.png); + background-position: -844px -288px; + width: 60px; + height: 60px; +} +.hair_base_1_holly { + background-image: url(spritesmith1.png); + background-position: -819px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_holly { + background-image: url(spritesmith1.png); + background-position: -844px -379px; + width: 60px; + height: 60px; +} +.hair_base_1_hollygreen { + background-image: url(spritesmith1.png); + background-position: -819px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_hollygreen { + background-image: url(spritesmith1.png); + background-position: -844px -470px; + width: 60px; + height: 60px; +} +.hair_base_1_midnight { + background-image: url(spritesmith1.png); + background-position: -819px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_midnight { + background-image: url(spritesmith1.png); + background-position: -844px -561px; + width: 60px; + height: 60px; +} +.hair_base_1_pblue { + background-image: url(spritesmith1.png); + background-position: -819px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_pblue { + background-image: url(spritesmith1.png); + background-position: -844px -652px; + width: 60px; + height: 60px; +} +.hair_base_1_peppermint { + background-image: url(spritesmith1.png); + background-position: -819px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_peppermint { + background-image: url(spritesmith1.png); + background-position: -844px -743px; + width: 60px; + height: 60px; +} +.hair_base_1_pgreen { + background-image: url(spritesmith1.png); + background-position: 0px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_pgreen { + background-image: url(spritesmith1.png); + background-position: -25px -834px; + width: 60px; + height: 60px; +} +.hair_base_1_porange { + background-image: url(spritesmith1.png); + background-position: -91px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_porange { + background-image: url(spritesmith1.png); + background-position: -116px -834px; + width: 60px; + height: 60px; +} +.hair_base_1_ppink { + background-image: url(spritesmith1.png); + background-position: -182px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_ppink { + background-image: url(spritesmith1.png); + background-position: -207px -834px; + width: 60px; + height: 60px; +} +.hair_base_1_ppurple { + background-image: url(spritesmith1.png); + background-position: -273px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_ppurple { + background-image: url(spritesmith1.png); + background-position: -298px -834px; + width: 60px; + height: 60px; +} +.hair_base_1_pumpkin { + background-image: url(spritesmith1.png); + background-position: -364px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_pumpkin { + background-image: url(spritesmith1.png); + background-position: -389px -834px; + width: 60px; + height: 60px; +} +.hair_base_1_purple { + background-image: url(spritesmith1.png); + background-position: -455px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_purple { + background-image: url(spritesmith1.png); + background-position: -480px -834px; + width: 60px; + height: 60px; +} +.hair_base_1_pyellow { + background-image: url(spritesmith1.png); + background-position: -546px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_pyellow { + background-image: url(spritesmith1.png); + background-position: -571px -834px; + width: 60px; + height: 60px; +} +.hair_base_1_rainbow { + background-image: url(spritesmith1.png); + background-position: -637px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_rainbow { + background-image: url(spritesmith1.png); + background-position: -662px -834px; + width: 60px; + height: 60px; +} +.hair_base_1_red { + background-image: url(spritesmith1.png); + background-position: -728px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_red { + background-image: url(spritesmith1.png); + background-position: -753px -834px; + width: 60px; + height: 60px; +} +.hair_base_1_snowy { + background-image: url(spritesmith1.png); + background-position: -819px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_snowy { + background-image: url(spritesmith1.png); + background-position: -844px -834px; + width: 60px; + height: 60px; +} +.hair_base_1_white { + background-image: url(spritesmith1.png); + background-position: -910px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_white { + background-image: url(spritesmith1.png); + background-position: -935px -15px; + width: 60px; + height: 60px; +} +.hair_base_1_winternight { + background-image: url(spritesmith1.png); + background-position: -910px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_winternight { + background-image: url(spritesmith1.png); + background-position: -935px -106px; + width: 60px; + height: 60px; +} +.hair_base_1_winterstar { + background-image: url(spritesmith1.png); + background-position: -910px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_winterstar { + background-image: url(spritesmith1.png); + background-position: -935px -197px; + width: 60px; + height: 60px; +} +.hair_base_1_yellow { + background-image: url(spritesmith1.png); + background-position: -910px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_yellow { + background-image: url(spritesmith1.png); + background-position: -935px -288px; + width: 60px; + height: 60px; +} +.hair_base_1_zombie { + background-image: url(spritesmith1.png); + background-position: -910px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_zombie { + background-image: url(spritesmith1.png); + background-position: -935px -379px; + width: 60px; + height: 60px; +} +.hair_base_2_TRUred { + background-image: url(spritesmith1.png); + background-position: -910px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_TRUred { + background-image: url(spritesmith1.png); + background-position: -935px -470px; + width: 60px; + height: 60px; +} +.hair_base_2_aurora { + background-image: url(spritesmith1.png); + background-position: -910px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_aurora { + background-image: url(spritesmith1.png); + background-position: -935px -561px; + width: 60px; + height: 60px; +} +.hair_base_2_black { + background-image: url(spritesmith1.png); + background-position: -910px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_black { + background-image: url(spritesmith1.png); + background-position: -935px -652px; + width: 60px; + height: 60px; +} +.hair_base_2_blond { + background-image: url(spritesmith1.png); + background-position: -910px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_blond { + background-image: url(spritesmith1.png); + background-position: -935px -743px; + width: 60px; + height: 60px; +} +.hair_base_2_blue { + background-image: url(spritesmith1.png); + background-position: -910px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_blue { + background-image: url(spritesmith1.png); + background-position: -935px -834px; + width: 60px; + height: 60px; +} +.hair_base_2_brown { + background-image: url(spritesmith1.png); + background-position: 0px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_brown { + background-image: url(spritesmith1.png); + background-position: -25px -925px; + width: 60px; + height: 60px; +} +.hair_base_2_candycane { + background-image: url(spritesmith1.png); + background-position: -91px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_candycane { + background-image: url(spritesmith1.png); + background-position: -116px -925px; + width: 60px; + height: 60px; +} +.hair_base_2_candycorn { + background-image: url(spritesmith1.png); + background-position: -182px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_candycorn { + background-image: url(spritesmith1.png); + background-position: -207px -925px; + width: 60px; + height: 60px; +} +.hair_base_2_festive { + background-image: url(spritesmith1.png); + background-position: -273px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_festive { + background-image: url(spritesmith1.png); + background-position: -298px -925px; + width: 60px; + height: 60px; +} +.hair_base_2_frost { + background-image: url(spritesmith1.png); + background-position: -364px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_frost { + background-image: url(spritesmith1.png); + background-position: -389px -925px; + width: 60px; + height: 60px; +} +.hair_base_2_ghostwhite { + background-image: url(spritesmith1.png); + background-position: -455px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_ghostwhite { + background-image: url(spritesmith1.png); + background-position: -480px -925px; + width: 60px; + height: 60px; +} +.hair_base_2_green { + background-image: url(spritesmith1.png); + background-position: -546px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_green { + background-image: url(spritesmith1.png); + background-position: -571px -925px; + width: 60px; + height: 60px; +} +.hair_base_2_halloween { + background-image: url(spritesmith1.png); + background-position: -637px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_halloween { + background-image: url(spritesmith1.png); + background-position: -662px -925px; + width: 60px; + height: 60px; +} +.hair_base_2_holly { + background-image: url(spritesmith1.png); + background-position: -728px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_holly { + background-image: url(spritesmith1.png); + background-position: -753px -925px; + width: 60px; + height: 60px; +} +.hair_base_2_hollygreen { + background-image: url(spritesmith1.png); + background-position: -819px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_hollygreen { + background-image: url(spritesmith1.png); + background-position: -844px -925px; + width: 60px; + height: 60px; +} +.hair_base_2_midnight { + background-image: url(spritesmith1.png); + background-position: -910px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_midnight { + background-image: url(spritesmith1.png); + background-position: -935px -925px; + width: 60px; + height: 60px; +} +.hair_base_2_pblue { + background-image: url(spritesmith1.png); + background-position: -1001px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_pblue { + background-image: url(spritesmith1.png); + background-position: -1026px -15px; + width: 60px; + height: 60px; +} +.hair_base_2_peppermint { + background-image: url(spritesmith1.png); + background-position: -1001px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_peppermint { + background-image: url(spritesmith1.png); + background-position: -1026px -106px; + width: 60px; + height: 60px; +} +.hair_base_2_pgreen { + background-image: url(spritesmith1.png); + background-position: -1001px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_pgreen { + background-image: url(spritesmith1.png); + background-position: -1026px -197px; + width: 60px; + height: 60px; +} +.hair_base_2_porange { + background-image: url(spritesmith1.png); + background-position: -1001px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_porange { + background-image: url(spritesmith1.png); + background-position: -1026px -288px; + width: 60px; + height: 60px; +} +.hair_base_2_ppink { + background-image: url(spritesmith1.png); + background-position: -1001px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_ppink { + background-image: url(spritesmith1.png); + background-position: -1026px -379px; + width: 60px; + height: 60px; +} +.hair_base_2_ppurple { + background-image: url(spritesmith1.png); + background-position: -1001px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_ppurple { + background-image: url(spritesmith1.png); + background-position: -1026px -470px; + width: 60px; + height: 60px; +} +.hair_base_2_pumpkin { + background-image: url(spritesmith1.png); + background-position: -1001px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_pumpkin { + background-image: url(spritesmith1.png); + background-position: -1026px -561px; + width: 60px; + height: 60px; +} +.hair_base_2_purple { + background-image: url(spritesmith1.png); + background-position: -1001px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_purple { + background-image: url(spritesmith1.png); + background-position: -1026px -652px; + width: 60px; + height: 60px; +} +.hair_base_2_pyellow { + background-image: url(spritesmith1.png); + background-position: -1001px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_pyellow { + background-image: url(spritesmith1.png); + background-position: -1026px -743px; + width: 60px; + height: 60px; +} +.hair_base_2_rainbow { + background-image: url(spritesmith1.png); + background-position: -1001px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_rainbow { + background-image: url(spritesmith1.png); + background-position: -1026px -834px; + width: 60px; + height: 60px; +} +.hair_base_2_red { + background-image: url(spritesmith1.png); + background-position: -1001px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_red { + background-image: url(spritesmith1.png); + background-position: -1026px -925px; + width: 60px; + height: 60px; +} +.hair_base_2_snowy { + background-image: url(spritesmith1.png); + background-position: 0px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_snowy { + background-image: url(spritesmith1.png); + background-position: -25px -1016px; + width: 60px; + height: 60px; +} +.hair_base_2_white { + background-image: url(spritesmith1.png); + background-position: -91px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_white { + background-image: url(spritesmith1.png); + background-position: -116px -1016px; + width: 60px; + height: 60px; +} +.hair_base_2_winternight { + background-image: url(spritesmith1.png); + background-position: -182px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_winternight { + background-image: url(spritesmith1.png); + background-position: -207px -1016px; + width: 60px; + height: 60px; +} +.hair_base_2_winterstar { + background-image: url(spritesmith1.png); + background-position: -273px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_winterstar { + background-image: url(spritesmith1.png); + background-position: -298px -1016px; + width: 60px; + height: 60px; +} +.hair_base_2_yellow { + background-image: url(spritesmith1.png); + background-position: -364px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_yellow { + background-image: url(spritesmith1.png); + background-position: -389px -1016px; + width: 60px; + height: 60px; +} +.hair_base_2_zombie { + background-image: url(spritesmith1.png); + background-position: -455px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_2_zombie { + background-image: url(spritesmith1.png); + background-position: -480px -1016px; + width: 60px; + height: 60px; +} +.hair_base_3_TRUred { + background-image: url(spritesmith1.png); + background-position: -546px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_TRUred { + background-image: url(spritesmith1.png); + background-position: -571px -1016px; + width: 60px; + height: 60px; +} +.hair_base_3_aurora { + background-image: url(spritesmith1.png); + background-position: -637px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_aurora { + background-image: url(spritesmith1.png); + background-position: -662px -1016px; + width: 60px; + height: 60px; +} +.hair_base_3_black { + background-image: url(spritesmith1.png); + background-position: -728px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_black { + background-image: url(spritesmith1.png); + background-position: -753px -1016px; + width: 60px; + height: 60px; +} +.hair_base_3_blond { + background-image: url(spritesmith1.png); + background-position: -819px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_blond { + background-image: url(spritesmith1.png); + background-position: -844px -1016px; + width: 60px; + height: 60px; +} +.hair_base_3_blue { + background-image: url(spritesmith1.png); + background-position: -910px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_blue { + background-image: url(spritesmith1.png); + background-position: -935px -1016px; + width: 60px; + height: 60px; +} +.hair_base_3_brown { + background-image: url(spritesmith1.png); + background-position: -1001px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_brown { + background-image: url(spritesmith1.png); + background-position: -1026px -1016px; + width: 60px; + height: 60px; +} +.hair_base_3_candycane { + background-image: url(spritesmith1.png); + background-position: -1092px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_candycane { + background-image: url(spritesmith1.png); + background-position: -1117px -15px; + width: 60px; + height: 60px; +} +.hair_base_3_candycorn { + background-image: url(spritesmith1.png); + background-position: -1092px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_candycorn { + background-image: url(spritesmith1.png); + background-position: -1117px -106px; + width: 60px; + height: 60px; +} +.hair_base_3_festive { + background-image: url(spritesmith1.png); + background-position: -1092px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_festive { + background-image: url(spritesmith1.png); + background-position: -1117px -197px; + width: 60px; + height: 60px; +} +.hair_base_3_frost { + background-image: url(spritesmith1.png); + background-position: -1092px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_frost { + background-image: url(spritesmith1.png); + background-position: -1117px -288px; + width: 60px; + height: 60px; +} +.hair_base_3_ghostwhite { + background-image: url(spritesmith1.png); + background-position: -1092px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_ghostwhite { + background-image: url(spritesmith1.png); + background-position: -1117px -379px; + width: 60px; + height: 60px; +} +.hair_base_3_green { + background-image: url(spritesmith1.png); + background-position: -1092px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_green { + background-image: url(spritesmith1.png); + background-position: -1117px -470px; + width: 60px; + height: 60px; +} +.hair_base_3_halloween { + background-image: url(spritesmith1.png); + background-position: -1092px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_halloween { + background-image: url(spritesmith1.png); + background-position: -1117px -561px; + width: 60px; + height: 60px; +} +.hair_base_3_holly { + background-image: url(spritesmith1.png); + background-position: -1092px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_holly { + background-image: url(spritesmith1.png); + background-position: -1117px -652px; + width: 60px; + height: 60px; +} +.hair_base_3_hollygreen { + background-image: url(spritesmith1.png); + background-position: -1092px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_hollygreen { + background-image: url(spritesmith1.png); + background-position: -1117px -743px; + width: 60px; + height: 60px; +} +.hair_base_3_midnight { + background-image: url(spritesmith1.png); + background-position: -1092px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_midnight { + background-image: url(spritesmith1.png); + background-position: -1117px -834px; + width: 60px; + height: 60px; +} +.hair_base_3_pblue { + background-image: url(spritesmith1.png); + background-position: -1092px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_pblue { + background-image: url(spritesmith1.png); + background-position: -1117px -925px; + width: 60px; + height: 60px; +} +.hair_base_3_peppermint { + background-image: url(spritesmith1.png); + background-position: -1092px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_peppermint { + background-image: url(spritesmith1.png); + background-position: -1117px -1016px; + width: 60px; + height: 60px; +} +.hair_base_3_pgreen { + background-image: url(spritesmith1.png); + background-position: 0px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_pgreen { + background-image: url(spritesmith1.png); + background-position: -25px -1107px; + width: 60px; + height: 60px; +} +.hair_base_3_porange { + background-image: url(spritesmith1.png); + background-position: -91px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_porange { + background-image: url(spritesmith1.png); + background-position: -116px -1107px; + width: 60px; + height: 60px; +} +.hair_base_3_ppink { + background-image: url(spritesmith1.png); + background-position: -182px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_ppink { + background-image: url(spritesmith1.png); + background-position: -207px -1107px; + width: 60px; + height: 60px; +} +.hair_base_3_ppurple { + background-image: url(spritesmith1.png); + background-position: -273px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_ppurple { + background-image: url(spritesmith1.png); + background-position: -298px -1107px; + width: 60px; + height: 60px; +} +.hair_base_3_pumpkin { + background-image: url(spritesmith1.png); + background-position: -364px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_pumpkin { + background-image: url(spritesmith1.png); + background-position: -389px -1107px; + width: 60px; + height: 60px; +} +.hair_base_3_purple { + background-image: url(spritesmith1.png); + background-position: -455px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_purple { + background-image: url(spritesmith1.png); + background-position: -480px -1107px; + width: 60px; + height: 60px; +} +.hair_base_3_pyellow { + background-image: url(spritesmith1.png); + background-position: -546px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_pyellow { + background-image: url(spritesmith1.png); + background-position: -571px -1107px; + width: 60px; + height: 60px; +} +.hair_base_3_rainbow { + background-image: url(spritesmith1.png); + background-position: -637px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_rainbow { + background-image: url(spritesmith1.png); + background-position: -662px -1107px; + width: 60px; + height: 60px; +} +.hair_base_3_red { + background-image: url(spritesmith1.png); + background-position: -728px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_red { + background-image: url(spritesmith1.png); + background-position: -753px -1107px; + width: 60px; + height: 60px; +} +.hair_base_3_snowy { + background-image: url(spritesmith1.png); + background-position: -819px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_snowy { + background-image: url(spritesmith1.png); + background-position: -844px -1107px; + width: 60px; + height: 60px; +} +.hair_base_3_white { + background-image: url(spritesmith1.png); + background-position: -910px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_white { + background-image: url(spritesmith1.png); + background-position: -935px -1107px; + width: 60px; + height: 60px; +} +.hair_base_3_winternight { + background-image: url(spritesmith1.png); + background-position: -1001px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_winternight { + background-image: url(spritesmith1.png); + background-position: -1026px -1107px; + width: 60px; + height: 60px; +} +.hair_base_3_winterstar { + background-image: url(spritesmith1.png); + background-position: -1092px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_winterstar { + background-image: url(spritesmith1.png); + background-position: -1117px -1107px; + width: 60px; + height: 60px; +} +.hair_base_3_yellow { + background-image: url(spritesmith1.png); + background-position: -1183px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_yellow { + background-image: url(spritesmith1.png); + background-position: -1208px -15px; + width: 60px; + height: 60px; +} +.hair_base_3_zombie { + background-image: url(spritesmith1.png); + background-position: -1183px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_zombie { + background-image: url(spritesmith1.png); + background-position: -1208px -106px; + width: 60px; + height: 60px; +} +.hair_base_4_TRUred { + background-image: url(spritesmith1.png); + background-position: -1183px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_TRUred { + background-image: url(spritesmith1.png); + background-position: -1208px -197px; + width: 60px; + height: 60px; +} +.hair_base_4_aurora { + background-image: url(spritesmith1.png); + background-position: -1183px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_aurora { + background-image: url(spritesmith1.png); + background-position: -1208px -288px; + width: 60px; + height: 60px; +} +.hair_base_4_black { + background-image: url(spritesmith1.png); + background-position: -1183px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_black { + background-image: url(spritesmith1.png); + background-position: -1208px -379px; + width: 60px; + height: 60px; +} +.hair_base_4_blond { + background-image: url(spritesmith1.png); + background-position: -1183px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_blond { + background-image: url(spritesmith1.png); + background-position: -1208px -470px; + width: 60px; + height: 60px; +} +.hair_base_4_blue { + background-image: url(spritesmith1.png); + background-position: -1183px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_blue { + background-image: url(spritesmith1.png); + background-position: -1208px -561px; + width: 60px; + height: 60px; +} +.hair_base_4_brown { + background-image: url(spritesmith1.png); + background-position: -1183px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_brown { + background-image: url(spritesmith1.png); + background-position: -1208px -652px; + width: 60px; + height: 60px; +} +.hair_base_4_candycane { + background-image: url(spritesmith1.png); + background-position: -1183px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_candycane { + background-image: url(spritesmith1.png); + background-position: -1208px -743px; + width: 60px; + height: 60px; +} +.hair_base_4_candycorn { + background-image: url(spritesmith1.png); + background-position: -1183px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_candycorn { + background-image: url(spritesmith1.png); + background-position: -1208px -834px; + width: 60px; + height: 60px; +} +.hair_base_4_festive { + background-image: url(spritesmith1.png); + background-position: -1183px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_festive { + background-image: url(spritesmith1.png); + background-position: -1208px -925px; + width: 60px; + height: 60px; +} +.hair_base_4_frost { + background-image: url(spritesmith1.png); + background-position: -1183px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_frost { + background-image: url(spritesmith1.png); + background-position: -1208px -1016px; + width: 60px; + height: 60px; +} +.hair_base_4_ghostwhite { + background-image: url(spritesmith1.png); + background-position: -1183px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_ghostwhite { + background-image: url(spritesmith1.png); + background-position: -1208px -1107px; + width: 60px; + height: 60px; +} +.hair_base_4_green { + background-image: url(spritesmith1.png); + background-position: 0px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_green { + background-image: url(spritesmith1.png); + background-position: -25px -1198px; + width: 60px; + height: 60px; +} +.hair_base_4_halloween { + background-image: url(spritesmith1.png); + background-position: -91px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_halloween { + background-image: url(spritesmith1.png); + background-position: -116px -1198px; + width: 60px; + height: 60px; +} +.hair_base_4_holly { + background-image: url(spritesmith1.png); + background-position: 0px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_holly { + background-image: url(spritesmith1.png); + background-position: -25px -15px; + width: 60px; + height: 60px; +} +.hair_base_4_hollygreen { + background-image: url(spritesmith1.png); + background-position: -273px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_hollygreen { + background-image: url(spritesmith1.png); + background-position: -298px -1198px; + width: 60px; + height: 60px; +} +.hair_base_4_midnight { + background-image: url(spritesmith1.png); + background-position: -364px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_midnight { + background-image: url(spritesmith1.png); + background-position: -389px -1198px; + width: 60px; + height: 60px; +} +.hair_base_4_pblue { + background-image: url(spritesmith1.png); + background-position: -455px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_pblue { + background-image: url(spritesmith1.png); + background-position: -480px -1198px; + width: 60px; + height: 60px; +} +.hair_base_4_peppermint { + background-image: url(spritesmith1.png); + background-position: -546px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_peppermint { + background-image: url(spritesmith1.png); + background-position: -571px -1198px; + width: 60px; + height: 60px; +} +.hair_base_4_pgreen { + background-image: url(spritesmith1.png); + background-position: -637px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_pgreen { + background-image: url(spritesmith1.png); + background-position: -662px -1198px; + width: 60px; + height: 60px; +} +.hair_base_4_porange { + background-image: url(spritesmith1.png); + background-position: -728px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_porange { + background-image: url(spritesmith1.png); + background-position: -753px -1198px; + width: 60px; + height: 60px; +} +.hair_base_4_ppink { + background-image: url(spritesmith1.png); + background-position: -819px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_ppink { + background-image: url(spritesmith1.png); + background-position: -844px -1198px; + width: 60px; + height: 60px; +} +.hair_base_4_ppurple { + background-image: url(spritesmith1.png); + background-position: -910px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_ppurple { + background-image: url(spritesmith1.png); + background-position: -935px -1198px; + width: 60px; + height: 60px; +} +.hair_base_4_pumpkin { + background-image: url(spritesmith1.png); + background-position: -1001px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_pumpkin { + background-image: url(spritesmith1.png); + background-position: -1026px -1198px; + width: 60px; + height: 60px; +} +.hair_base_4_purple { + background-image: url(spritesmith1.png); + background-position: -1092px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_purple { + background-image: url(spritesmith1.png); + background-position: -1117px -1198px; + width: 60px; + height: 60px; +} +.hair_base_4_pyellow { + background-image: url(spritesmith1.png); + background-position: -1183px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_pyellow { + background-image: url(spritesmith1.png); + background-position: -1208px -1198px; + width: 60px; + height: 60px; +} +.hair_base_4_rainbow { + background-image: url(spritesmith1.png); + background-position: -1274px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_rainbow { + background-image: url(spritesmith1.png); + background-position: -1299px -15px; + width: 60px; + height: 60px; +} +.hair_base_4_red { + background-image: url(spritesmith1.png); + background-position: -1274px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_red { + background-image: url(spritesmith1.png); + background-position: -1299px -106px; + width: 60px; + height: 60px; +} +.hair_base_4_snowy { + background-image: url(spritesmith1.png); + background-position: -1274px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_snowy { + background-image: url(spritesmith1.png); + background-position: -1299px -197px; + width: 60px; + height: 60px; +} +.hair_base_4_white { + background-image: url(spritesmith1.png); + background-position: -1274px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_white { + background-image: url(spritesmith1.png); + background-position: -1299px -288px; + width: 60px; + height: 60px; +} +.hair_base_4_winternight { + background-image: url(spritesmith1.png); + background-position: -1274px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_winternight { + background-image: url(spritesmith1.png); + background-position: -1299px -379px; + width: 60px; + height: 60px; +} +.hair_base_4_winterstar { + background-image: url(spritesmith1.png); + background-position: -1274px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_winterstar { + background-image: url(spritesmith1.png); + background-position: -1299px -470px; + width: 60px; + height: 60px; +} +.hair_base_4_yellow { + background-image: url(spritesmith1.png); + background-position: -1274px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_yellow { + background-image: url(spritesmith1.png); + background-position: -1299px -561px; + width: 60px; + height: 60px; +} +.hair_base_4_zombie { + background-image: url(spritesmith1.png); + background-position: -1274px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_zombie { + background-image: url(spritesmith1.png); + background-position: -1299px -652px; + width: 60px; + height: 60px; +} +.hair_base_5_TRUred { + background-image: url(spritesmith1.png); + background-position: -1274px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_TRUred { + background-image: url(spritesmith1.png); + background-position: -1299px -743px; + width: 60px; + height: 60px; +} +.hair_base_5_aurora { + background-image: url(spritesmith1.png); + background-position: -1274px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_aurora { + background-image: url(spritesmith1.png); + background-position: -1299px -834px; + width: 60px; + height: 60px; +} +.hair_base_5_black { + background-image: url(spritesmith1.png); + background-position: -1274px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_black { + background-image: url(spritesmith1.png); + background-position: -1299px -925px; + width: 60px; + height: 60px; +} +.hair_base_5_blond { + background-image: url(spritesmith1.png); + background-position: -1274px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_blond { + background-image: url(spritesmith1.png); + background-position: -1299px -1016px; + width: 60px; + height: 60px; +} +.hair_base_5_blue { + background-image: url(spritesmith1.png); + background-position: -1274px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_blue { + background-image: url(spritesmith1.png); + background-position: -1299px -1107px; + width: 60px; + height: 60px; +} +.hair_base_5_brown { + background-image: url(spritesmith1.png); + background-position: -1274px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_brown { + background-image: url(spritesmith1.png); + background-position: -1299px -1198px; + width: 60px; + height: 60px; +} +.hair_base_5_candycane { + background-image: url(spritesmith1.png); + background-position: 0px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_candycane { + background-image: url(spritesmith1.png); + background-position: -25px -1289px; + width: 60px; + height: 60px; +} +.hair_base_5_candycorn { + background-image: url(spritesmith1.png); + background-position: -91px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_candycorn { + background-image: url(spritesmith1.png); + background-position: -116px -1289px; + width: 60px; + height: 60px; +} +.hair_base_5_festive { + background-image: url(spritesmith1.png); + background-position: -182px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_festive { + background-image: url(spritesmith1.png); + background-position: -207px -1289px; + width: 60px; + height: 60px; +} +.hair_base_5_frost { + background-image: url(spritesmith1.png); + background-position: -273px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_frost { + background-image: url(spritesmith1.png); + background-position: -298px -1289px; + width: 60px; + height: 60px; +} +.hair_base_5_ghostwhite { + background-image: url(spritesmith1.png); + background-position: -364px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_ghostwhite { + background-image: url(spritesmith1.png); + background-position: -389px -1289px; + width: 60px; + height: 60px; +} +.hair_base_5_green { + background-image: url(spritesmith1.png); + background-position: -455px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_green { + background-image: url(spritesmith1.png); + background-position: -480px -1289px; + width: 60px; + height: 60px; +} +.hair_base_5_halloween { + background-image: url(spritesmith1.png); + background-position: -546px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_halloween { + background-image: url(spritesmith1.png); + background-position: -571px -1289px; + width: 60px; + height: 60px; +} +.hair_base_5_holly { + background-image: url(spritesmith1.png); + background-position: -637px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_holly { + background-image: url(spritesmith1.png); + background-position: -662px -1289px; + width: 60px; + height: 60px; +} +.hair_base_5_hollygreen { + background-image: url(spritesmith1.png); + background-position: -728px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_hollygreen { + background-image: url(spritesmith1.png); + background-position: -753px -1289px; + width: 60px; + height: 60px; +} +.hair_base_5_midnight { + background-image: url(spritesmith1.png); + background-position: -819px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_midnight { + background-image: url(spritesmith1.png); + background-position: -844px -1289px; + width: 60px; + height: 60px; +} +.hair_base_5_pblue { + background-image: url(spritesmith1.png); + background-position: -910px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_pblue { + background-image: url(spritesmith1.png); + background-position: -935px -1289px; + width: 60px; + height: 60px; +} +.hair_base_5_peppermint { + background-image: url(spritesmith1.png); + background-position: -1001px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_peppermint { + background-image: url(spritesmith1.png); + background-position: -1026px -1289px; + width: 60px; + height: 60px; +} +.hair_base_5_pgreen { + background-image: url(spritesmith1.png); + background-position: -1092px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_pgreen { + background-image: url(spritesmith1.png); + background-position: -1117px -1289px; + width: 60px; + height: 60px; +} +.hair_base_5_porange { + background-image: url(spritesmith1.png); + background-position: -1183px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_porange { + background-image: url(spritesmith1.png); + background-position: -1208px -1289px; + width: 60px; + height: 60px; +} +.hair_base_5_ppink { + background-image: url(spritesmith1.png); + background-position: -1274px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_ppink { + background-image: url(spritesmith1.png); + background-position: -1299px -1289px; + width: 60px; + height: 60px; +} +.hair_base_5_ppurple { + background-image: url(spritesmith1.png); + background-position: -1365px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_ppurple { + background-image: url(spritesmith1.png); + background-position: -1390px -15px; + width: 60px; + height: 60px; +} +.hair_base_5_pumpkin { + background-image: url(spritesmith1.png); + background-position: -1365px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_pumpkin { + background-image: url(spritesmith1.png); + background-position: -1390px -106px; + width: 60px; + height: 60px; +} +.hair_base_5_purple { + background-image: url(spritesmith1.png); + background-position: -1365px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_purple { + background-image: url(spritesmith1.png); + background-position: -1390px -197px; + width: 60px; + height: 60px; +} +.hair_base_5_pyellow { + background-image: url(spritesmith1.png); + background-position: -1365px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_pyellow { + background-image: url(spritesmith1.png); + background-position: -1390px -288px; + width: 60px; + height: 60px; +} +.hair_base_5_rainbow { + background-image: url(spritesmith1.png); + background-position: -1365px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_rainbow { + background-image: url(spritesmith1.png); + background-position: -1390px -379px; + width: 60px; + height: 60px; +} +.hair_base_5_red { + background-image: url(spritesmith1.png); + background-position: -1365px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_red { + background-image: url(spritesmith1.png); + background-position: -1390px -470px; + width: 60px; + height: 60px; +} +.hair_base_5_snowy { + background-image: url(spritesmith1.png); + background-position: -1365px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_snowy { + background-image: url(spritesmith1.png); + background-position: -1390px -561px; + width: 60px; + height: 60px; +} +.hair_base_5_white { + background-image: url(spritesmith1.png); + background-position: -1365px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_white { + background-image: url(spritesmith1.png); + background-position: -1390px -652px; + width: 60px; + height: 60px; +} +.hair_base_5_winternight { + background-image: url(spritesmith1.png); + background-position: -1365px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_winternight { + background-image: url(spritesmith1.png); + background-position: -1390px -743px; + width: 60px; + height: 60px; +} +.hair_base_5_winterstar { + background-image: url(spritesmith1.png); + background-position: -1365px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_winterstar { + background-image: url(spritesmith1.png); + background-position: -1390px -834px; + width: 60px; + height: 60px; +} +.hair_base_5_yellow { + background-image: url(spritesmith1.png); + background-position: -1365px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_yellow { + background-image: url(spritesmith1.png); + background-position: -1390px -925px; + width: 60px; + height: 60px; +} +.hair_base_5_zombie { + background-image: url(spritesmith1.png); + background-position: -1365px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_zombie { + background-image: url(spritesmith1.png); + background-position: -1390px -1016px; + width: 60px; + height: 60px; +} +.hair_base_6_TRUred { + background-image: url(spritesmith1.png); + background-position: -1365px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_TRUred { + background-image: url(spritesmith1.png); + background-position: -1390px -1107px; + width: 60px; + height: 60px; +} +.hair_base_6_aurora { + background-image: url(spritesmith1.png); + background-position: -1365px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_aurora { + background-image: url(spritesmith1.png); + background-position: -1390px -1198px; + width: 60px; + height: 60px; +} +.hair_base_6_black { + background-image: url(spritesmith1.png); + background-position: -1365px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_black { + background-image: url(spritesmith1.png); + background-position: -1390px -1289px; + width: 60px; + height: 60px; +} +.hair_base_6_blond { + background-image: url(spritesmith1.png); + background-position: 0px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_blond { + background-image: url(spritesmith1.png); + background-position: -25px -1380px; + width: 60px; + height: 60px; +} +.hair_base_6_blue { + background-image: url(spritesmith1.png); + background-position: -91px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_blue { + background-image: url(spritesmith1.png); + background-position: -116px -1380px; + width: 60px; + height: 60px; +} +.hair_base_6_brown { + background-image: url(spritesmith1.png); + background-position: -182px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_brown { + background-image: url(spritesmith1.png); + background-position: -207px -1380px; + width: 60px; + height: 60px; +} +.hair_base_6_candycane { + background-image: url(spritesmith1.png); + background-position: -273px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_candycane { + background-image: url(spritesmith1.png); + background-position: -298px -1380px; + width: 60px; + height: 60px; +} +.hair_base_6_candycorn { + background-image: url(spritesmith1.png); + background-position: -364px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_candycorn { + background-image: url(spritesmith1.png); + background-position: -389px -1380px; + width: 60px; + height: 60px; +} +.hair_base_6_festive { + background-image: url(spritesmith1.png); + background-position: -455px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_festive { + background-image: url(spritesmith1.png); + background-position: -480px -1380px; + width: 60px; + height: 60px; +} +.hair_base_6_frost { + background-image: url(spritesmith1.png); + background-position: -546px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_frost { + background-image: url(spritesmith1.png); + background-position: -571px -1380px; + width: 60px; + height: 60px; +} +.hair_base_6_ghostwhite { + background-image: url(spritesmith1.png); + background-position: -637px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_ghostwhite { + background-image: url(spritesmith1.png); + background-position: -662px -1380px; + width: 60px; + height: 60px; +} +.hair_base_6_green { + background-image: url(spritesmith1.png); + background-position: -728px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_green { + background-image: url(spritesmith1.png); + background-position: -753px -1380px; + width: 60px; + height: 60px; +} +.hair_base_6_halloween { + background-image: url(spritesmith1.png); + background-position: -819px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_halloween { + background-image: url(spritesmith1.png); + background-position: -844px -1380px; + width: 60px; + height: 60px; +} +.hair_base_6_holly { + background-image: url(spritesmith1.png); + background-position: -910px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_holly { + background-image: url(spritesmith1.png); + background-position: -935px -1380px; + width: 60px; + height: 60px; +} +.hair_base_6_hollygreen { + background-image: url(spritesmith1.png); + background-position: -1001px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_hollygreen { + background-image: url(spritesmith1.png); + background-position: -1026px -1380px; + width: 60px; + height: 60px; +} +.hair_base_6_midnight { + background-image: url(spritesmith1.png); + background-position: -1092px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_midnight { + background-image: url(spritesmith1.png); + background-position: -1117px -1380px; + width: 60px; + height: 60px; +} +.hair_base_6_pblue { + background-image: url(spritesmith1.png); + background-position: -1183px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_pblue { + background-image: url(spritesmith1.png); + background-position: -1208px -1380px; + width: 60px; + height: 60px; +} +.hair_base_6_peppermint { + background-image: url(spritesmith1.png); + background-position: -1274px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_peppermint { + background-image: url(spritesmith1.png); + background-position: -1299px -1380px; + width: 60px; + height: 60px; +} +.hair_base_6_pgreen { + background-image: url(spritesmith1.png); + background-position: -1365px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_pgreen { + background-image: url(spritesmith1.png); + background-position: -1390px -1380px; + width: 60px; + height: 60px; +} +.hair_base_6_porange { + background-image: url(spritesmith1.png); + background-position: -1456px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_porange { + background-image: url(spritesmith1.png); + background-position: -1481px -15px; + width: 60px; + height: 60px; +} +.hair_base_6_ppink { + background-image: url(spritesmith1.png); + background-position: -1456px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_ppink { + background-image: url(spritesmith1.png); + background-position: -1481px -106px; + width: 60px; + height: 60px; +} +.hair_base_6_ppurple { + background-image: url(spritesmith1.png); + background-position: -1456px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_ppurple { + background-image: url(spritesmith1.png); + background-position: -1481px -197px; + width: 60px; + height: 60px; +} +.hair_base_6_pumpkin { + background-image: url(spritesmith1.png); + background-position: -1456px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_pumpkin { + background-image: url(spritesmith1.png); + background-position: -1481px -288px; + width: 60px; + height: 60px; +} +.hair_base_6_purple { + background-image: url(spritesmith1.png); + background-position: -1456px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_purple { + background-image: url(spritesmith1.png); + background-position: -1481px -379px; + width: 60px; + height: 60px; +} +.hair_base_6_pyellow { + background-image: url(spritesmith1.png); + background-position: -1456px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_pyellow { + background-image: url(spritesmith1.png); + background-position: -1481px -470px; + width: 60px; + height: 60px; +} +.hair_base_6_rainbow { + background-image: url(spritesmith1.png); + background-position: -1456px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_rainbow { + background-image: url(spritesmith1.png); + background-position: -1481px -561px; + width: 60px; + height: 60px; +} +.hair_base_6_red { + background-image: url(spritesmith1.png); + background-position: -1456px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_red { + background-image: url(spritesmith1.png); + background-position: -1481px -652px; + width: 60px; + height: 60px; +} +.hair_base_6_snowy { + background-image: url(spritesmith1.png); + background-position: -1456px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_snowy { + background-image: url(spritesmith1.png); + background-position: -1481px -743px; + width: 60px; + height: 60px; +} +.hair_base_6_white { + background-image: url(spritesmith1.png); + background-position: -1456px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_white { + background-image: url(spritesmith1.png); + background-position: -1481px -834px; + width: 60px; + height: 60px; +} +.hair_base_6_winternight { + background-image: url(spritesmith1.png); + background-position: -1456px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_winternight { + background-image: url(spritesmith1.png); + background-position: -1481px -925px; + width: 60px; + height: 60px; +} +.hair_base_6_winterstar { + background-image: url(spritesmith1.png); + background-position: -1456px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_winterstar { + background-image: url(spritesmith1.png); + background-position: -1481px -1016px; + width: 60px; + height: 60px; +} +.hair_base_6_yellow { + background-image: url(spritesmith1.png); + background-position: -1456px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_yellow { + background-image: url(spritesmith1.png); + background-position: -1481px -1107px; + width: 60px; + height: 60px; +} +.hair_base_6_zombie { + background-image: url(spritesmith1.png); + background-position: -1456px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_zombie { + background-image: url(spritesmith1.png); + background-position: -1481px -1198px; + width: 60px; + height: 60px; +} +.hair_base_7_TRUred { + background-image: url(spritesmith1.png); + background-position: -1456px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_TRUred { + background-image: url(spritesmith1.png); + background-position: -1481px -1289px; + width: 60px; + height: 60px; +} +.hair_base_7_aurora { + background-image: url(spritesmith1.png); + background-position: -1456px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_aurora { + background-image: url(spritesmith1.png); + background-position: -1481px -1380px; + width: 60px; + height: 60px; +} +.hair_base_7_black { + background-image: url(spritesmith1.png); + background-position: 0px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_black { + background-image: url(spritesmith1.png); + background-position: -25px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_blond { + background-image: url(spritesmith1.png); + background-position: -91px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_blond { + background-image: url(spritesmith1.png); + background-position: -116px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_blue { + background-image: url(spritesmith1.png); + background-position: -182px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_blue { + background-image: url(spritesmith1.png); + background-position: -207px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_brown { + background-image: url(spritesmith1.png); + background-position: -273px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_brown { + background-image: url(spritesmith1.png); + background-position: -298px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_candycane { + background-image: url(spritesmith1.png); + background-position: -364px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_candycane { + background-image: url(spritesmith1.png); + background-position: -389px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_candycorn { + background-image: url(spritesmith1.png); + background-position: -455px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_candycorn { + background-image: url(spritesmith1.png); + background-position: -480px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_festive { + background-image: url(spritesmith1.png); + background-position: -546px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_festive { + background-image: url(spritesmith1.png); + background-position: -571px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_frost { + background-image: url(spritesmith1.png); + background-position: -637px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_frost { + background-image: url(spritesmith1.png); + background-position: -662px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_ghostwhite { + background-image: url(spritesmith1.png); + background-position: -728px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_ghostwhite { + background-image: url(spritesmith1.png); + background-position: -753px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_green { + background-image: url(spritesmith1.png); + background-position: -819px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_green { + background-image: url(spritesmith1.png); + background-position: -844px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_halloween { + background-image: url(spritesmith1.png); + background-position: -910px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_halloween { + background-image: url(spritesmith1.png); + background-position: -935px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_holly { + background-image: url(spritesmith1.png); + background-position: -1001px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_holly { + background-image: url(spritesmith1.png); + background-position: -1026px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_hollygreen { + background-image: url(spritesmith1.png); + background-position: -1092px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_hollygreen { + background-image: url(spritesmith1.png); + background-position: -1117px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_midnight { + background-image: url(spritesmith1.png); + background-position: -1183px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_midnight { + background-image: url(spritesmith1.png); + background-position: -1208px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_pblue { + background-image: url(spritesmith1.png); + background-position: -1274px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_pblue { + background-image: url(spritesmith1.png); + background-position: -1299px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_peppermint { + background-image: url(spritesmith1.png); + background-position: -1365px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_peppermint { + background-image: url(spritesmith1.png); + background-position: -1390px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_pgreen { + background-image: url(spritesmith1.png); + background-position: -1456px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_pgreen { + background-image: url(spritesmith1.png); + background-position: -1481px -1471px; + width: 60px; + height: 60px; +} +.hair_base_7_porange { + background-image: url(spritesmith1.png); + background-position: -1547px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_porange { + background-image: url(spritesmith1.png); + background-position: -1572px -15px; + width: 60px; + height: 60px; +} +.hair_base_7_ppink { + background-image: url(spritesmith1.png); + background-position: -1547px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_ppink { + background-image: url(spritesmith1.png); + background-position: -1572px -106px; + width: 60px; + height: 60px; +} +.hair_base_7_ppurple { + background-image: url(spritesmith1.png); + background-position: -1547px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_ppurple { + background-image: url(spritesmith1.png); + background-position: -1572px -197px; + width: 60px; + height: 60px; +} +.hair_base_7_pumpkin { + background-image: url(spritesmith1.png); + background-position: -1547px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_pumpkin { + background-image: url(spritesmith1.png); + background-position: -1572px -288px; + width: 60px; + height: 60px; +} +.hair_base_7_purple { + background-image: url(spritesmith1.png); + background-position: -1547px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_purple { + background-image: url(spritesmith1.png); + background-position: -1572px -379px; + width: 60px; + height: 60px; +} +.hair_base_7_pyellow { + background-image: url(spritesmith1.png); + background-position: -1547px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_pyellow { + background-image: url(spritesmith1.png); + background-position: -1572px -470px; + width: 60px; + height: 60px; +} +.hair_base_7_rainbow { + background-image: url(spritesmith1.png); + background-position: -1547px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_rainbow { + background-image: url(spritesmith1.png); + background-position: -1572px -561px; + width: 60px; + height: 60px; +} +.hair_base_7_red { + background-image: url(spritesmith1.png); + background-position: -1547px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_red { + background-image: url(spritesmith1.png); + background-position: -1572px -652px; + width: 60px; + height: 60px; +} +.hair_base_7_snowy { + background-image: url(spritesmith1.png); + background-position: -1547px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_snowy { + background-image: url(spritesmith1.png); + background-position: -1572px -743px; + width: 60px; + height: 60px; +} +.hair_base_7_white { + background-image: url(spritesmith1.png); + background-position: -1547px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_white { + background-image: url(spritesmith1.png); + background-position: -1572px -834px; + width: 60px; + height: 60px; +} +.hair_base_7_winternight { + background-image: url(spritesmith1.png); + background-position: -1547px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_winternight { + background-image: url(spritesmith1.png); + background-position: -1572px -925px; + width: 60px; + height: 60px; +} +.hair_base_7_winterstar { + background-image: url(spritesmith1.png); + background-position: -1547px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_winterstar { + background-image: url(spritesmith1.png); + background-position: -1572px -1016px; + width: 60px; + height: 60px; +} +.hair_base_7_yellow { + background-image: url(spritesmith1.png); + background-position: -1547px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_yellow { + background-image: url(spritesmith1.png); + background-position: -1572px -1107px; + width: 60px; + height: 60px; +} +.hair_base_7_zombie { + background-image: url(spritesmith1.png); + background-position: -1547px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_zombie { + background-image: url(spritesmith1.png); + background-position: -1572px -1198px; + width: 60px; + height: 60px; +} +.hair_base_8_TRUred { + background-image: url(spritesmith1.png); + background-position: -1547px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_TRUred { + background-image: url(spritesmith1.png); + background-position: -1572px -1289px; + width: 60px; + height: 60px; +} +.hair_base_8_aurora { + background-image: url(spritesmith1.png); + background-position: -1547px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_aurora { + background-image: url(spritesmith1.png); + background-position: -1572px -1380px; + width: 60px; + height: 60px; +} +.hair_base_8_black { + background-image: url(spritesmith1.png); + background-position: -1547px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_black { + background-image: url(spritesmith1.png); + background-position: -1572px -1471px; + width: 60px; + height: 60px; +} +.hair_base_8_blond { + background-image: url(spritesmith1.png); + background-position: 0px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_blond { + background-image: url(spritesmith1.png); + background-position: -25px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_blue { + background-image: url(spritesmith1.png); + background-position: -91px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_blue { + background-image: url(spritesmith1.png); + background-position: -116px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_brown { + background-image: url(spritesmith1.png); + background-position: -182px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_brown { + background-image: url(spritesmith1.png); + background-position: -207px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_candycane { + background-image: url(spritesmith1.png); + background-position: -273px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_candycane { + background-image: url(spritesmith1.png); + background-position: -298px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_candycorn { + background-image: url(spritesmith1.png); + background-position: -364px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_candycorn { + background-image: url(spritesmith1.png); + background-position: -389px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_festive { + background-image: url(spritesmith1.png); + background-position: -455px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_festive { + background-image: url(spritesmith1.png); + background-position: -480px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_frost { + background-image: url(spritesmith1.png); + background-position: -546px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_frost { + background-image: url(spritesmith1.png); + background-position: -571px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_ghostwhite { + background-image: url(spritesmith1.png); + background-position: -637px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_ghostwhite { + background-image: url(spritesmith1.png); + background-position: -662px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_green { + background-image: url(spritesmith1.png); + background-position: -728px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_green { + background-image: url(spritesmith1.png); + background-position: -753px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_halloween { + background-image: url(spritesmith1.png); + background-position: -819px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_halloween { + background-image: url(spritesmith1.png); + background-position: -844px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_holly { + background-image: url(spritesmith1.png); + background-position: -910px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_holly { + background-image: url(spritesmith1.png); + background-position: -935px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_hollygreen { + background-image: url(spritesmith1.png); + background-position: -1001px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_hollygreen { + background-image: url(spritesmith1.png); + background-position: -1026px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_midnight { + background-image: url(spritesmith1.png); + background-position: -1092px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_midnight { + background-image: url(spritesmith1.png); + background-position: -1117px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_pblue { + background-image: url(spritesmith1.png); + background-position: -1183px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_pblue { + background-image: url(spritesmith1.png); + background-position: -1208px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_peppermint { + background-image: url(spritesmith1.png); + background-position: -1274px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_peppermint { + background-image: url(spritesmith1.png); + background-position: -1299px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_pgreen { + background-image: url(spritesmith1.png); + background-position: -1365px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_pgreen { + background-image: url(spritesmith1.png); + background-position: -1390px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_porange { + background-image: url(spritesmith1.png); + background-position: -1456px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_porange { + background-image: url(spritesmith1.png); + background-position: -1481px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_ppink { + background-image: url(spritesmith1.png); + background-position: -1547px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_ppink { + background-image: url(spritesmith1.png); + background-position: -1572px -1562px; + width: 60px; + height: 60px; +} +.hair_base_8_ppurple { + background-image: url(spritesmith1.png); + background-position: -1638px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_ppurple { + background-image: url(spritesmith1.png); + background-position: -1663px -15px; + width: 60px; + height: 60px; +} +.hair_base_8_pumpkin { + background-image: url(spritesmith1.png); + background-position: -1638px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_pumpkin { + background-image: url(spritesmith1.png); + background-position: -1663px -106px; + width: 60px; + height: 60px; +} +.hair_base_8_purple { + background-image: url(spritesmith1.png); + background-position: -1638px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_purple { + background-image: url(spritesmith1.png); + background-position: -1663px -197px; + width: 60px; + height: 60px; +} +.hair_base_8_pyellow { + background-image: url(spritesmith1.png); + background-position: -1638px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_pyellow { + background-image: url(spritesmith1.png); + background-position: -1663px -288px; + width: 60px; + height: 60px; +} +.hair_base_8_rainbow { + background-image: url(spritesmith1.png); + background-position: -1638px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_rainbow { + background-image: url(spritesmith1.png); + background-position: -1663px -379px; + width: 60px; + height: 60px; +} +.hair_base_8_red { + background-image: url(spritesmith1.png); + background-position: -1638px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_red { + background-image: url(spritesmith1.png); + background-position: -1663px -470px; + width: 60px; + height: 60px; +} +.hair_base_8_snowy { + background-image: url(spritesmith1.png); + background-position: -1638px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_snowy { + background-image: url(spritesmith1.png); + background-position: -1663px -561px; + width: 60px; + height: 60px; +} +.hair_base_8_white { + background-image: url(spritesmith1.png); + background-position: -1638px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_white { + background-image: url(spritesmith1.png); + background-position: -1663px -652px; + width: 60px; + height: 60px; +} +.hair_base_8_winternight { + background-image: url(spritesmith1.png); + background-position: -1638px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_winternight { + background-image: url(spritesmith1.png); + background-position: -1663px -743px; + width: 60px; + height: 60px; +} +.hair_base_8_winterstar { + background-image: url(spritesmith1.png); + background-position: -1638px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_winterstar { + background-image: url(spritesmith1.png); + background-position: -1663px -834px; + width: 60px; + height: 60px; +} +.hair_base_8_yellow { + background-image: url(spritesmith1.png); + background-position: -1638px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_yellow { + background-image: url(spritesmith1.png); + background-position: -1663px -925px; + width: 60px; + height: 60px; +} +.hair_base_8_zombie { + background-image: url(spritesmith1.png); + background-position: -1638px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_zombie { + background-image: url(spritesmith1.png); + background-position: -1663px -1016px; + width: 60px; + height: 60px; +} +.hair_base_9_TRUEred { + background-image: url(spritesmith1.png); + background-position: -1638px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_TRUEred { + background-image: url(spritesmith1.png); + background-position: -1663px -1107px; + width: 60px; + height: 60px; +} +.hair_base_9_aurora { + background-image: url(spritesmith1.png); + background-position: -1638px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_aurora { + background-image: url(spritesmith1.png); + background-position: -1663px -1198px; + width: 60px; + height: 60px; +} +.hair_base_9_black { + background-image: url(spritesmith1.png); + background-position: -1638px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_black { + background-image: url(spritesmith1.png); + background-position: -1663px -1289px; + width: 60px; + height: 60px; +} +.hair_base_9_blond { + background-image: url(spritesmith1.png); + background-position: -1638px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_blond { + background-image: url(spritesmith1.png); + background-position: -1663px -1380px; + width: 60px; + height: 60px; +} +.hair_base_9_blue { + background-image: url(spritesmith1.png); + background-position: -1638px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_blue { + background-image: url(spritesmith1.png); + background-position: -1663px -1471px; + width: 60px; + height: 60px; +} +.hair_base_9_brown { + background-image: url(spritesmith1.png); + background-position: -1638px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_brown { + background-image: url(spritesmith1.png); + background-position: -1663px -1562px; + width: 60px; + height: 60px; +} +.hair_base_9_festive { + background-image: url(spritesmith1.png); + background-position: 0px -1638px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_festive { + background-image: url(spritesmith1.png); + background-position: -25px -1653px; + width: 60px; + height: 60px; +} +.hair_base_9_green { + background-image: url(spritesmith1.png); + background-position: -91px -1638px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_green { + background-image: url(spritesmith1.png); + background-position: -116px -1653px; + width: 60px; + height: 60px; +} +.hair_base_9_hollygreen { + background-image: url(spritesmith1.png); + background-position: -182px -1638px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_hollygreen { + background-image: url(spritesmith1.png); + background-position: -207px -1653px; + width: 60px; + height: 60px; +} +.hair_base_9_pblue { + background-image: url(spritesmith1.png); + background-position: -273px -1638px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_pblue { + background-image: url(spritesmith1.png); + background-position: -298px -1653px; + width: 60px; + height: 60px; +} +.hair_base_9_peppermint { + background-image: url(spritesmith1.png); + background-position: -364px -1638px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_peppermint { + background-image: url(spritesmith1.png); + background-position: -389px -1653px; + width: 60px; + height: 60px; +} +.hair_base_9_pgreen { + background-image: url(spritesmith1.png); + background-position: -455px -1638px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_pgreen { + background-image: url(spritesmith1.png); + background-position: -480px -1653px; + width: 60px; + height: 60px; +} +.hair_base_9_porange { + background-image: url(spritesmith1.png); + background-position: -546px -1638px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_porange { + background-image: url(spritesmith1.png); + background-position: -571px -1653px; + width: 60px; + height: 60px; +} +.hair_base_9_ppink { + background-image: url(spritesmith1.png); + background-position: -637px -1638px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_ppink { + background-image: url(spritesmith1.png); + background-position: -662px -1653px; + width: 60px; + height: 60px; +} +.hair_base_9_ppurple { + background-image: url(spritesmith1.png); + background-position: -728px -1638px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_ppurple { + background-image: url(spritesmith1.png); + background-position: -753px -1653px; + width: 60px; + height: 60px; +} +.hair_base_9_purple { + background-image: url(spritesmith1.png); + background-position: -819px -1638px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_purple { + background-image: url(spritesmith1.png); + background-position: -844px -1653px; + width: 60px; + height: 60px; +} +.hair_base_9_pyellow { + background-image: url(spritesmith1.png); + background-position: -910px -1638px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_pyellow { + background-image: url(spritesmith1.png); + background-position: -935px -1653px; + width: 60px; + height: 60px; +} +.hair_base_9_rainbow { + background-image: url(spritesmith1.png); + background-position: -1001px -1638px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_rainbow { + background-image: url(spritesmith1.png); + background-position: -1026px -1653px; + width: 60px; + height: 60px; +} +.hair_base_9_red { + background-image: url(spritesmith1.png); + background-position: -1092px -1638px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_red { + background-image: url(spritesmith1.png); + background-position: -1117px -1653px; + width: 60px; + height: 60px; +} +.hair_base_9_snowy { + background-image: url(spritesmith1.png); + background-position: -1183px -1638px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_snowy { + background-image: url(spritesmith1.png); + background-position: -1208px -1653px; + width: 60px; + height: 60px; +} +.hair_base_9_white { + background-image: url(spritesmith1.png); + background-position: -1274px -1638px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_white { + background-image: url(spritesmith1.png); + background-position: -1299px -1653px; + width: 60px; + height: 60px; +} +.hair_base_9_winterstar { + background-image: url(spritesmith1.png); + background-position: -1365px -1638px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_winterstar { + background-image: url(spritesmith1.png); + background-position: -1390px -1653px; + width: 60px; + height: 60px; +} +.hair_base_9_yellow { + background-image: url(spritesmith1.png); + background-position: -1456px -1638px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_yellow { + background-image: url(spritesmith1.png); + background-position: -1481px -1653px; + width: 60px; + height: 60px; +} +.broad_shirt_black { + background-image: url(spritesmith1.png); + background-position: -1547px -1638px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_black { + background-image: url(spritesmith1.png); + background-position: -1572px -1668px; + width: 60px; + height: 60px; +} +.broad_shirt_blue { + background-image: url(spritesmith1.png); + background-position: -1638px -1638px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_blue { + background-image: url(spritesmith1.png); + background-position: -1663px -1668px; + width: 60px; + height: 60px; +} +.broad_shirt_convict { + background-image: url(spritesmith1.png); + background-position: -1729px 0px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_convict { + background-image: url(spritesmith1.png); + background-position: -1754px -30px; + width: 60px; + height: 60px; +} +.broad_shirt_cross { + background-image: url(spritesmith1.png); + background-position: -1729px -91px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_cross { + background-image: url(spritesmith1.png); + background-position: -1754px -121px; + width: 60px; + height: 60px; +} +.broad_shirt_fire { + background-image: url(spritesmith1.png); + background-position: -1729px -182px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_fire { + background-image: url(spritesmith1.png); + background-position: -1754px -212px; + width: 60px; + height: 60px; +} +.broad_shirt_green { + background-image: url(spritesmith1.png); + background-position: -1729px -273px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_green { + background-image: url(spritesmith1.png); + background-position: -1754px -303px; + width: 60px; + height: 60px; +} +.broad_shirt_horizon { + background-image: url(spritesmith1.png); + background-position: -1729px -364px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_horizon { + background-image: url(spritesmith1.png); + background-position: -1754px -394px; + width: 60px; + height: 60px; +} +.broad_shirt_ocean { + background-image: url(spritesmith1.png); + background-position: -1729px -455px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_ocean { + background-image: url(spritesmith1.png); + background-position: -1754px -485px; + width: 60px; + height: 60px; +} +.broad_shirt_pink { + background-image: url(spritesmith1.png); + background-position: -1729px -546px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_pink { + background-image: url(spritesmith1.png); + background-position: -1754px -576px; + width: 60px; + height: 60px; +} +.broad_shirt_purple { + background-image: url(spritesmith1.png); + background-position: -1729px -637px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_purple { + background-image: url(spritesmith1.png); + background-position: -1754px -667px; + width: 60px; + height: 60px; +} diff --git a/common/dist/sprites/spritesmith1.png b/common/dist/sprites/spritesmith1.png index 292204a097..b6264bc9b3 100644 Binary files a/common/dist/sprites/spritesmith1.png and b/common/dist/sprites/spritesmith1.png differ diff --git a/common/dist/sprites/spritesmith2.css b/common/dist/sprites/spritesmith2.css index 2b441902bc..4af57315f1 100644 --- a/common/dist/sprites/spritesmith2.css +++ b/common/dist/sprites/spritesmith2.css @@ -1 +1,2718 @@ -.broad_shirt_rainbow{background-image:url(spritesmith2.png);background-position:-546px -910px;width:90px;height:90px}.customize-option.broad_shirt_rainbow{background-image:url(spritesmith2.png);background-position:-571px -940px;width:60px;height:60px}.broad_shirt_redblue{background-image:url(spritesmith2.png);background-position:-1092px -819px;width:90px;height:90px}.customize-option.broad_shirt_redblue{background-image:url(spritesmith2.png);background-position:-1117px -849px;width:60px;height:60px}.broad_shirt_thunder{background-image:url(spritesmith2.png);background-position:-1001px -364px;width:90px;height:90px}.customize-option.broad_shirt_thunder{background-image:url(spritesmith2.png);background-position:-1026px -394px;width:60px;height:60px}.broad_shirt_tropical{background-image:url(spritesmith2.png);background-position:-273px -1037px;width:90px;height:90px}.customize-option.broad_shirt_tropical{background-image:url(spritesmith2.png);background-position:-298px -1067px;width:60px;height:60px}.broad_shirt_white{background-image:url(spritesmith2.png);background-position:-1092px 0;width:90px;height:90px}.customize-option.broad_shirt_white{background-image:url(spritesmith2.png);background-position:-1117px -30px;width:60px;height:60px}.broad_shirt_yellow{background-image:url(spritesmith2.png);background-position:-728px -819px;width:90px;height:90px}.customize-option.broad_shirt_yellow{background-image:url(spritesmith2.png);background-position:-753px -849px;width:60px;height:60px}.broad_shirt_zombie{background-image:url(spritesmith2.png);background-position:-476px -1001px;width:90px;height:90px}.customize-option.broad_shirt_zombie{background-image:url(spritesmith2.png);background-position:-501px -1031px;width:60px;height:60px}.slim_shirt_black{background-image:url(spritesmith2.png);background-position:-910px -637px;width:90px;height:90px}.customize-option.slim_shirt_black{background-image:url(spritesmith2.png);background-position:-935px -667px;width:60px;height:60px}.slim_shirt_blue{background-image:url(spritesmith2.png);background-position:-518px -1189px;width:90px;height:90px}.customize-option.slim_shirt_blue{background-image:url(spritesmith2.png);background-position:-543px -1219px;width:60px;height:60px}.slim_shirt_convict{background-image:url(spritesmith2.png);background-position:-1295px -91px;width:90px;height:90px}.customize-option.slim_shirt_convict{background-image:url(spritesmith2.png);background-position:-1320px -121px;width:60px;height:60px}.slim_shirt_cross{background-image:url(spritesmith2.png);background-position:-182px -1310px;width:90px;height:90px}.customize-option.slim_shirt_cross{background-image:url(spritesmith2.png);background-position:-207px -1340px;width:60px;height:60px}.slim_shirt_fire{background-image:url(spritesmith2.png);background-position:-1274px -364px;width:90px;height:90px}.customize-option.slim_shirt_fire{background-image:url(spritesmith2.png);background-position:-1299px -394px;width:60px;height:60px}.slim_shirt_green{background-image:url(spritesmith2.png);background-position:-870px -1001px;width:90px;height:90px}.customize-option.slim_shirt_green{background-image:url(spritesmith2.png);background-position:-895px -1031px;width:60px;height:60px}.slim_shirt_horizon{background-image:url(spritesmith2.png);background-position:-758px -1092px;width:90px;height:90px}.customize-option.slim_shirt_horizon{background-image:url(spritesmith2.png);background-position:-783px -1122px;width:60px;height:60px}.slim_shirt_ocean{background-image:url(spritesmith2.png);background-position:-770px -1274px;width:90px;height:90px}.customize-option.slim_shirt_ocean{background-image:url(spritesmith2.png);background-position:-795px -1304px;width:60px;height:60px}.slim_shirt_pink{background-image:url(spritesmith2.png);background-position:-1183px -910px;width:90px;height:90px}.customize-option.slim_shirt_pink{background-image:url(spritesmith2.png);background-position:-1208px -940px;width:60px;height:60px}.slim_shirt_purple{background-image:url(spritesmith2.png);background-position:-1456px -364px;width:90px;height:90px}.customize-option.slim_shirt_purple{background-image:url(spritesmith2.png);background-position:-1481px -394px;width:60px;height:60px}.slim_shirt_rainbow{background-image:url(spritesmith2.png);background-position:-364px -188px;width:90px;height:90px}.customize-option.slim_shirt_rainbow{background-image:url(spritesmith2.png);background-position:-389px -218px;width:60px;height:60px}.slim_shirt_redblue{background-image:url(spritesmith2.png);background-position:-273px -309px;width:90px;height:90px}.customize-option.slim_shirt_redblue{background-image:url(spritesmith2.png);background-position:-298px -339px;width:60px;height:60px}.slim_shirt_thunder{background-image:url(spritesmith2.png);background-position:0 -424px;width:90px;height:90px}.customize-option.slim_shirt_thunder{background-image:url(spritesmith2.png);background-position:-25px -454px;width:60px;height:60px}.slim_shirt_tropical{background-image:url(spritesmith2.png);background-position:-91px -424px;width:90px;height:90px}.customize-option.slim_shirt_tropical{background-image:url(spritesmith2.png);background-position:-116px -454px;width:60px;height:60px}.slim_shirt_white{background-image:url(spritesmith2.png);background-position:-182px -415px;width:90px;height:90px}.customize-option.slim_shirt_white{background-image:url(spritesmith2.png);background-position:-207px -445px;width:60px;height:60px}.slim_shirt_yellow{background-image:url(spritesmith2.png);background-position:-455px 0;width:90px;height:90px}.customize-option.slim_shirt_yellow{background-image:url(spritesmith2.png);background-position:-480px -30px;width:60px;height:60px}.slim_shirt_zombie{background-image:url(spritesmith2.png);background-position:-364px -279px;width:90px;height:90px}.customize-option.slim_shirt_zombie{background-image:url(spritesmith2.png);background-position:-389px -309px;width:60px;height:60px}.skin_0ff591{background-image:url(spritesmith2.png);background-position:-455px -91px;width:90px;height:90px}.customize-option.skin_0ff591{background-image:url(spritesmith2.png);background-position:-480px -106px;width:60px;height:60px}.skin_0ff591_sleep{background-image:url(spritesmith2.png);background-position:-273px -400px;width:90px;height:90px}.customize-option.skin_0ff591_sleep{background-image:url(spritesmith2.png);background-position:-298px -415px;width:60px;height:60px}.skin_2b43f6{background-image:url(spritesmith2.png);background-position:-455px -182px;width:90px;height:90px}.customize-option.skin_2b43f6{background-image:url(spritesmith2.png);background-position:-480px -197px;width:60px;height:60px}.skin_2b43f6_sleep{background-image:url(spritesmith2.png);background-position:0 -515px;width:90px;height:90px}.customize-option.skin_2b43f6_sleep{background-image:url(spritesmith2.png);background-position:-25px -530px;width:60px;height:60px}.skin_6bd049{background-image:url(spritesmith2.png);background-position:-364px -370px;width:90px;height:90px}.customize-option.skin_6bd049{background-image:url(spritesmith2.png);background-position:-389px -385px;width:60px;height:60px}.skin_6bd049_sleep{background-image:url(spritesmith2.png);background-position:-91px -515px;width:90px;height:90px}.customize-option.skin_6bd049_sleep{background-image:url(spritesmith2.png);background-position:-116px -530px;width:60px;height:60px}.skin_800ed0{background-image:url(spritesmith2.png);background-position:-455px -273px;width:90px;height:90px}.customize-option.skin_800ed0{background-image:url(spritesmith2.png);background-position:-480px -288px;width:60px;height:60px}.skin_800ed0_sleep{background-image:url(spritesmith2.png);background-position:-182px -506px;width:90px;height:90px}.customize-option.skin_800ed0_sleep{background-image:url(spritesmith2.png);background-position:-207px -521px;width:60px;height:60px}.skin_915533{background-image:url(spritesmith2.png);background-position:-546px 0;width:90px;height:90px}.customize-option.skin_915533{background-image:url(spritesmith2.png);background-position:-571px -15px;width:60px;height:60px}.skin_915533_sleep{background-image:url(spritesmith2.png);background-position:-546px -91px;width:90px;height:90px}.customize-option.skin_915533_sleep{background-image:url(spritesmith2.png);background-position:-571px -106px;width:60px;height:60px}.skin_98461a{background-image:url(spritesmith2.png);background-position:-273px -491px;width:90px;height:90px}.customize-option.skin_98461a{background-image:url(spritesmith2.png);background-position:-298px -506px;width:60px;height:60px}.skin_98461a_sleep{background-image:url(spritesmith2.png);background-position:-546px -182px;width:90px;height:90px}.customize-option.skin_98461a_sleep{background-image:url(spritesmith2.png);background-position:-571px -197px;width:60px;height:60px}.skin_c06534{background-image:url(spritesmith2.png);background-position:-455px -364px;width:90px;height:90px}.customize-option.skin_c06534{background-image:url(spritesmith2.png);background-position:-480px -379px;width:60px;height:60px}.skin_c06534_sleep{background-image:url(spritesmith2.png);background-position:-364px -461px;width:90px;height:90px}.customize-option.skin_c06534_sleep{background-image:url(spritesmith2.png);background-position:-389px -476px;width:60px;height:60px}.skin_c3e1dc{background-image:url(spritesmith2.png);background-position:0 -606px;width:90px;height:90px}.customize-option.skin_c3e1dc{background-image:url(spritesmith2.png);background-position:-25px -621px;width:60px;height:60px}.skin_c3e1dc_sleep{background-image:url(spritesmith2.png);background-position:-546px -273px;width:90px;height:90px}.customize-option.skin_c3e1dc_sleep{background-image:url(spritesmith2.png);background-position:-571px -288px;width:60px;height:60px}.skin_candycorn{background-image:url(spritesmith2.png);background-position:-91px -606px;width:90px;height:90px}.customize-option.skin_candycorn{background-image:url(spritesmith2.png);background-position:-116px -621px;width:60px;height:60px}.skin_candycorn_sleep{background-image:url(spritesmith2.png);background-position:-182px -597px;width:90px;height:90px}.customize-option.skin_candycorn_sleep{background-image:url(spritesmith2.png);background-position:-207px -612px;width:60px;height:60px}.skin_d7a9f7{background-image:url(spritesmith2.png);background-position:-637px 0;width:90px;height:90px}.customize-option.skin_d7a9f7{background-image:url(spritesmith2.png);background-position:-662px -15px;width:60px;height:60px}.skin_d7a9f7_sleep{background-image:url(spritesmith2.png);background-position:-273px -582px;width:90px;height:90px}.customize-option.skin_d7a9f7_sleep{background-image:url(spritesmith2.png);background-position:-298px -597px;width:60px;height:60px}.skin_ddc994{background-image:url(spritesmith2.png);background-position:-637px -91px;width:90px;height:90px}.customize-option.skin_ddc994{background-image:url(spritesmith2.png);background-position:-662px -106px;width:60px;height:60px}.skin_ddc994_sleep{background-image:url(spritesmith2.png);background-position:-455px -455px;width:90px;height:90px}.customize-option.skin_ddc994_sleep{background-image:url(spritesmith2.png);background-position:-480px -470px;width:60px;height:60px}.skin_ea8349{background-image:url(spritesmith2.png);background-position:-546px -364px;width:90px;height:90px}.customize-option.skin_ea8349{background-image:url(spritesmith2.png);background-position:-571px -379px;width:60px;height:60px}.skin_ea8349_sleep{background-image:url(spritesmith2.png);background-position:-364px -552px;width:90px;height:90px}.customize-option.skin_ea8349_sleep{background-image:url(spritesmith2.png);background-position:-389px -567px;width:60px;height:60px}.skin_eb052b{background-image:url(spritesmith2.png);background-position:-637px -182px;width:90px;height:90px}.customize-option.skin_eb052b{background-image:url(spritesmith2.png);background-position:-662px -197px;width:60px;height:60px}.skin_eb052b_sleep{background-image:url(spritesmith2.png);background-position:-637px -273px;width:90px;height:90px}.customize-option.skin_eb052b_sleep{background-image:url(spritesmith2.png);background-position:-662px -288px;width:60px;height:60px}.skin_f5a76e{background-image:url(spritesmith2.png);background-position:0 -697px;width:90px;height:90px}.customize-option.skin_f5a76e{background-image:url(spritesmith2.png);background-position:-25px -712px;width:60px;height:60px}.skin_f5a76e_sleep{background-image:url(spritesmith2.png);background-position:-91px -697px;width:90px;height:90px}.customize-option.skin_f5a76e_sleep{background-image:url(spritesmith2.png);background-position:-116px -712px;width:60px;height:60px}.skin_f5d70f{background-image:url(spritesmith2.png);background-position:-546px -455px;width:90px;height:90px}.customize-option.skin_f5d70f{background-image:url(spritesmith2.png);background-position:-571px -470px;width:60px;height:60px}.skin_f5d70f_sleep{background-image:url(spritesmith2.png);background-position:-455px -546px;width:90px;height:90px}.customize-option.skin_f5d70f_sleep{background-image:url(spritesmith2.png);background-position:-480px -561px;width:60px;height:60px}.skin_f69922{background-image:url(spritesmith2.png);background-position:-182px -688px;width:90px;height:90px}.customize-option.skin_f69922{background-image:url(spritesmith2.png);background-position:-207px -703px;width:60px;height:60px}.skin_f69922_sleep{background-image:url(spritesmith2.png);background-position:-273px -673px;width:90px;height:90px}.customize-option.skin_f69922_sleep{background-image:url(spritesmith2.png);background-position:-298px -688px;width:60px;height:60px}.skin_ghost{background-image:url(spritesmith2.png);background-position:-728px 0;width:90px;height:90px}.customize-option.skin_ghost{background-image:url(spritesmith2.png);background-position:-753px -15px;width:60px;height:60px}.skin_ghost_sleep{background-image:url(spritesmith2.png);background-position:-728px -91px;width:90px;height:90px}.customize-option.skin_ghost_sleep{background-image:url(spritesmith2.png);background-position:-753px -106px;width:60px;height:60px}.skin_monster{background-image:url(spritesmith2.png);background-position:-637px -364px;width:90px;height:90px}.customize-option.skin_monster{background-image:url(spritesmith2.png);background-position:-662px -379px;width:60px;height:60px}.skin_monster_sleep{background-image:url(spritesmith2.png);background-position:-364px -643px;width:90px;height:90px}.customize-option.skin_monster_sleep{background-image:url(spritesmith2.png);background-position:-389px -658px;width:60px;height:60px}.skin_ogre{background-image:url(spritesmith2.png);background-position:-728px -182px;width:90px;height:90px}.customize-option.skin_ogre{background-image:url(spritesmith2.png);background-position:-753px -197px;width:60px;height:60px}.skin_ogre_sleep{background-image:url(spritesmith2.png);background-position:-546px -546px;width:90px;height:90px}.customize-option.skin_ogre_sleep{background-image:url(spritesmith2.png);background-position:-571px -561px;width:60px;height:60px}.skin_pumpkin{background-image:url(spritesmith2.png);background-position:-728px -273px;width:90px;height:90px}.customize-option.skin_pumpkin{background-image:url(spritesmith2.png);background-position:-753px -288px;width:60px;height:60px}.skin_pumpkin2{background-image:url(spritesmith2.png);background-position:-637px -455px;width:90px;height:90px}.customize-option.skin_pumpkin2{background-image:url(spritesmith2.png);background-position:-662px -470px;width:60px;height:60px}.skin_pumpkin2_sleep{background-image:url(spritesmith2.png);background-position:-455px -637px;width:90px;height:90px}.customize-option.skin_pumpkin2_sleep{background-image:url(spritesmith2.png);background-position:-480px -652px;width:60px;height:60px}.skin_pumpkin_sleep{background-image:url(spritesmith2.png);background-position:0 -788px;width:90px;height:90px}.customize-option.skin_pumpkin_sleep{background-image:url(spritesmith2.png);background-position:-25px -803px;width:60px;height:60px}.skin_rainbow{background-image:url(spritesmith2.png);background-position:-91px -788px;width:90px;height:90px}.customize-option.skin_rainbow{background-image:url(spritesmith2.png);background-position:-116px -803px;width:60px;height:60px}.skin_rainbow_sleep{background-image:url(spritesmith2.png);background-position:-182px -779px;width:90px;height:90px}.customize-option.skin_rainbow_sleep{background-image:url(spritesmith2.png);background-position:-207px -794px;width:60px;height:60px}.skin_reptile{background-image:url(spritesmith2.png);background-position:-273px -764px;width:90px;height:90px}.customize-option.skin_reptile{background-image:url(spritesmith2.png);background-position:-298px -779px;width:60px;height:60px}.skin_reptile_sleep{background-image:url(spritesmith2.png);background-position:-728px -364px;width:90px;height:90px}.customize-option.skin_reptile_sleep{background-image:url(spritesmith2.png);background-position:-753px -379px;width:60px;height:60px}.skin_shadow{background-image:url(spritesmith2.png);background-position:-819px 0;width:90px;height:90px}.customize-option.skin_shadow{background-image:url(spritesmith2.png);background-position:-844px -15px;width:60px;height:60px}.skin_shadow2{background-image:url(spritesmith2.png);background-position:-364px -734px;width:90px;height:90px}.customize-option.skin_shadow2{background-image:url(spritesmith2.png);background-position:-389px -749px;width:60px;height:60px}.skin_shadow2_sleep{background-image:url(spritesmith2.png);background-position:-819px -91px;width:90px;height:90px}.customize-option.skin_shadow2_sleep{background-image:url(spritesmith2.png);background-position:-844px -106px;width:60px;height:60px}.skin_shadow_sleep{background-image:url(spritesmith2.png);background-position:-546px -637px;width:90px;height:90px}.customize-option.skin_shadow_sleep{background-image:url(spritesmith2.png);background-position:-571px -652px;width:60px;height:60px}.skin_skeleton{background-image:url(spritesmith2.png);background-position:-637px -546px;width:90px;height:90px}.customize-option.skin_skeleton{background-image:url(spritesmith2.png);background-position:-662px -561px;width:60px;height:60px}.skin_skeleton2{background-image:url(spritesmith2.png);background-position:-819px -182px;width:90px;height:90px}.customize-option.skin_skeleton2{background-image:url(spritesmith2.png);background-position:-844px -197px;width:60px;height:60px}.skin_skeleton2_sleep{background-image:url(spritesmith2.png);background-position:-728px -455px;width:90px;height:90px}.customize-option.skin_skeleton2_sleep{background-image:url(spritesmith2.png);background-position:-753px -470px;width:60px;height:60px}.skin_skeleton_sleep{background-image:url(spritesmith2.png);background-position:-455px -728px;width:90px;height:90px}.customize-option.skin_skeleton_sleep{background-image:url(spritesmith2.png);background-position:-480px -743px;width:60px;height:60px}.skin_transparent{background-image:url(spritesmith2.png);background-position:-819px -273px;width:90px;height:90px}.customize-option.skin_transparent{background-image:url(spritesmith2.png);background-position:-844px -288px;width:60px;height:60px}.skin_transparent_sleep{background-image:url(spritesmith2.png);background-position:0 -879px;width:90px;height:90px}.customize-option.skin_transparent_sleep{background-image:url(spritesmith2.png);background-position:-25px -894px;width:60px;height:60px}.skin_zombie{background-image:url(spritesmith2.png);background-position:-91px -879px;width:90px;height:90px}.customize-option.skin_zombie{background-image:url(spritesmith2.png);background-position:-116px -894px;width:60px;height:60px}.skin_zombie2{background-image:url(spritesmith2.png);background-position:-182px -870px;width:90px;height:90px}.customize-option.skin_zombie2{background-image:url(spritesmith2.png);background-position:-207px -885px;width:60px;height:60px}.skin_zombie2_sleep{background-image:url(spritesmith2.png);background-position:-819px -364px;width:90px;height:90px}.customize-option.skin_zombie2_sleep{background-image:url(spritesmith2.png);background-position:-844px -379px;width:60px;height:60px}.skin_zombie_sleep{background-image:url(spritesmith2.png);background-position:-273px -855px;width:90px;height:90px}.customize-option.skin_zombie_sleep{background-image:url(spritesmith2.png);background-position:-298px -870px;width:60px;height:60px}.broad_armor_healer_1{background-image:url(spritesmith2.png);background-position:-637px -637px;width:90px;height:90px}.broad_armor_healer_2{background-position:-364px -825px}.broad_armor_healer_2,.broad_armor_healer_3{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_healer_3{background-position:-728px -546px}.broad_armor_healer_4{background-position:-546px -728px}.broad_armor_healer_4,.broad_armor_healer_5{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_healer_5{background-position:-910px 0}.broad_armor_rogue_1{background-position:-910px -91px}.broad_armor_rogue_1,.broad_armor_rogue_2{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_rogue_2{background-position:-910px -182px}.broad_armor_rogue_3{background-position:-819px -455px}.broad_armor_rogue_3,.broad_armor_rogue_4{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_rogue_4{background-position:-455px -819px}.broad_armor_rogue_5{background-position:-910px -273px}.broad_armor_rogue_5,.broad_armor_special_2{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_special_2{background-position:-728px -637px}.broad_armor_warrior_1{background-position:-637px -728px}.broad_armor_warrior_1,.broad_armor_warrior_2{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_warrior_2{background-position:0 -970px}.broad_armor_warrior_3{background-position:-91px -970px}.broad_armor_warrior_3,.broad_armor_warrior_4{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_warrior_4{background-position:-182px -961px}.broad_armor_warrior_5{background-position:-910px -364px}.broad_armor_warrior_5,.broad_armor_wizard_1{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_wizard_1{background-position:-546px -819px}.broad_armor_wizard_2{background-position:-819px -546px}.broad_armor_wizard_2,.broad_armor_wizard_3{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_wizard_3{background-position:-273px -946px}.broad_armor_wizard_4{background-position:-364px -916px}.broad_armor_wizard_4,.broad_armor_wizard_5{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_wizard_5{background-position:-1001px 0}.shop_armor_healer_1{background-image:url(spritesmith2.png);background-position:-328px -1685px;width:40px;height:40px}.shop_armor_healer_2{background-position:-1630px -537px}.shop_armor_healer_2,.shop_armor_healer_3{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_healer_3{background-position:-1679px -355px}.shop_armor_healer_4{background-position:-1583px -660px}.shop_armor_healer_4,.shop_armor_healer_5{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_healer_5{background-position:-1366px -1033px}.shop_armor_rogue_1{background-position:-1450px -910px}.shop_armor_rogue_1,.shop_armor_rogue_2{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_rogue_2{background-position:-1533px -760px}.shop_armor_rogue_3{background-position:-1043px -1356px}.shop_armor_rogue_3,.shop_armor_rogue_4{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_rogue_4{background-position:-619px -1594px}.shop_armor_rogue_5{background-position:-287px -1685px}.shop_armor_rogue_5,.shop_armor_special_0{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_special_0{background-position:-895px -1456px}.shop_armor_special_1{background-position:-496px -1635px}.shop_armor_special_1,.shop_armor_special_2{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_special_2{background-position:-1310px -1092px}.shop_armor_warrior_1{background-position:-1589px -619px}.shop_armor_warrior_1,.shop_armor_warrior_2{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_warrior_2{background-position:-1700px -123px}.shop_armor_warrior_3{background-position:-1084px -1315px}.shop_armor_warrior_3,.shop_armor_warrior_4{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_warrior_4{background-position:-1630px -455px}.shop_armor_warrior_5{background-position:-396px -1644px}.shop_armor_warrior_5,.shop_armor_wizard_1{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_wizard_1{background-position:-1456px -860px}.shop_armor_wizard_2{background-position:-82px -1689px}.shop_armor_wizard_2,.shop_armor_wizard_3{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_wizard_3{background-position:-1589px -578px}.shop_armor_wizard_4{background-position:-1368px -992px}.shop_armor_wizard_4,.shop_armor_wizard_5{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_armor_wizard_5{background-position:-41px -1689px}.slim_armor_healer_1{background-position:-637px -910px}.slim_armor_healer_1,.slim_armor_healer_2{background-image:url(spritesmith2.png);width:90px;height:90px}.slim_armor_healer_2{background-position:-1092px -273px}.slim_armor_healer_3{background-position:-224px -1128px}.slim_armor_healer_3,.slim_armor_healer_4{background-image:url(spritesmith2.png);width:90px;height:90px}.slim_armor_healer_4{background-position:-567px -1001px}.slim_armor_healer_5{background-position:-1092px -364px}.slim_armor_healer_5,.slim_armor_rogue_1{background-image:url(spritesmith2.png);width:90px;height:90px}.slim_armor_rogue_1{background-position:0 -1152px}.slim_armor_rogue_2{background-position:-91px -1152px}.slim_armor_rogue_2,.slim_armor_rogue_3{background-image:url(spritesmith2.png);width:90px;height:90px}.slim_armor_rogue_3{background-position:-364px -1098px}.slim_armor_rogue_4{background-position:-819px -819px}.slim_armor_rogue_4,.slim_armor_rogue_5{background-image:url(spritesmith2.png);width:90px;height:90px}.slim_armor_rogue_5{background-position:-1022px -546px}.slim_armor_special_2{background-position:-728px -910px}.slim_armor_special_2,.slim_armor_warrior_1{background-image:url(spritesmith2.png);width:90px;height:90px}.slim_armor_warrior_1{background-position:-931px -728px}.slim_armor_warrior_2{background-position:-1183px 0}.slim_armor_warrior_2,.slim_armor_warrior_3{background-image:url(spritesmith2.png);width:90px;height:90px}.slim_armor_warrior_3{background-position:-1001px -637px}.slim_armor_warrior_4{background-position:-455px -1098px}.slim_armor_warrior_4,.slim_armor_warrior_5{background-image:url(spritesmith2.png);width:90px;height:90px}.slim_armor_warrior_5{background-position:-658px -1001px}.slim_armor_wizard_1{background-position:-1204px -91px}.slim_armor_wizard_1,.slim_armor_wizard_2{background-image:url(spritesmith2.png);width:90px;height:90px}.slim_armor_wizard_2{background-position:-1119px -455px}.slim_armor_wizard_3{background-position:-1183px -273px}.slim_armor_wizard_3,.slim_armor_wizard_4{background-image:url(spritesmith2.png);width:90px;height:90px}.slim_armor_wizard_4{background-position:-1204px -182px}.slim_armor_wizard_5{background-position:-546px -1092px}.slim_armor_wizard_5,.broad_armor_special_birthday{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_special_birthday{background-position:-910px -819px}.broad_armor_special_birthday2015{background-image:url(spritesmith2.png);background-position:-819px -910px;width:90px;height:90px}.shop_armor_special_birthday{background-image:url(spritesmith2.png);background-position:0 -1689px;width:40px;height:40px}.shop_armor_special_birthday2015{background-image:url(spritesmith2.png);background-position:-1659px -314px;width:40px;height:40px}.slim_armor_special_birthday{background-image:url(spritesmith2.png);background-position:-1183px -364px;width:90px;height:90px}.slim_armor_special_birthday2015{background-image:url(spritesmith2.png);background-position:-1113px -546px;width:90px;height:90px}.broad_armor_special_fallHealer{background-image:url(spritesmith2.png);background-position:0 -1243px;width:90px;height:90px}.broad_armor_special_fallMage{background-image:url(spritesmith2.png);background-position:-749px -1001px;width:120px;height:90px}.broad_armor_special_fallRogue{background-image:url(spritesmith2.png);background-position:-1022px -728px;width:105px;height:90px}.broad_armor_special_fallWarrior{background-position:-91px -1243px}.broad_armor_special_fallWarrior,.head_special_fallHealer{background-image:url(spritesmith2.png);width:90px;height:90px}.head_special_fallHealer{background-position:-427px -1189px}.head_special_fallMage{background-position:-637px -1092px;width:120px}.head_special_fallMage,.head_special_fallRogue{background-image:url(spritesmith2.png);height:90px}.head_special_fallRogue{background-position:-1092px -637px;width:105px}.head_special_fallWarrior{background-position:-1274px 0}.head_special_fallWarrior,.shield_special_fallHealer{background-image:url(spritesmith2.png);width:90px;height:90px}.shield_special_fallHealer{background-position:-910px -910px}.shield_special_fallRogue{background-image:url(spritesmith2.png);background-position:-1210px -455px;width:105px;height:90px}.shield_special_fallWarrior{background-image:url(spritesmith2.png);background-position:-1001px -819px;width:90px;height:90px}.shop_armor_special_fallHealer{background-image:url(spritesmith2.png);background-position:-1680px -164px;width:40px;height:40px}.shop_armor_special_fallMage{background-image:url(spritesmith2.png);background-position:-854px -1456px;width:40px;height:40px}.shop_armor_special_fallRogue{background-image:url(spritesmith2.png);background-position:-660px -1553px;width:40px;height:40px}.shop_armor_special_fallWarrior{background-image:url(spritesmith2.png);background-position:-992px -1365px;width:40px;height:40px}.shop_head_special_fallHealer{background-image:url(spritesmith2.png);background-position:-1638px -405px;width:40px;height:40px}.shop_head_special_fallMage{background-position:-205px -1674px}.shop_head_special_fallMage,.shop_head_special_fallRogue{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_head_special_fallRogue{background-position:-1325px -1042px}.shop_head_special_fallWarrior{background-image:url(spritesmith2.png);background-position:-1542px -678px;width:40px;height:40px}.shop_shield_special_fallHealer{background-image:url(spritesmith2.png);background-position:-772px -1497px;width:40px;height:40px}.shop_shield_special_fallRogue{background-image:url(spritesmith2.png);background-position:-537px -1594px;width:40px;height:40px}.shop_shield_special_fallWarrior{background-image:url(spritesmith2.png);background-position:-164px -1674px;width:40px;height:40px}.shop_weapon_special_fallHealer{background-image:url(spritesmith2.png);background-position:-355px -1644px;width:40px;height:40px}.shop_weapon_special_fallMage{background-image:url(spritesmith2.png);background-position:-1700px -246px;width:40px;height:40px}.shop_weapon_special_fallRogue{background-image:url(spritesmith2.png);background-position:-1492px -769px;width:40px;height:40px}.shop_weapon_special_fallWarrior{background-image:url(spritesmith2.png);background-position:-1043px -1315px;width:40px;height:40px}.slim_armor_special_fallHealer{background-image:url(spritesmith2.png);background-position:-1001px -910px;width:90px;height:90px}.slim_armor_special_fallMage{background-image:url(spritesmith2.png);background-position:-1198px -637px;width:120px;height:90px}.slim_armor_special_fallRogue{background-image:url(spritesmith2.png);background-position:-1365px 0;width:105px;height:90px}.slim_armor_special_fallWarrior{background-image:url(spritesmith2.png);background-position:-364px -97px;width:90px;height:90px}.weapon_special_fallHealer{background-image:url(spritesmith2.png);background-position:-497px -1280px;width:90px;height:90px}.weapon_special_fallMage{background-image:url(spritesmith2.png);background-position:-700px -1183px;width:120px;height:90px}.weapon_special_fallRogue{background-image:url(spritesmith2.png);background-position:-849px -1092px;width:105px;height:90px}.weapon_special_fallWarrior{background-image:url(spritesmith2.png);background-position:-961px -1001px;width:90px;height:90px}.broad_armor_special_gaymerx{background-position:-1386px -91px}.broad_armor_special_gaymerx,.head_special_gaymerx{background-image:url(spritesmith2.png);width:90px;height:90px}.head_special_gaymerx{background-position:-1316px -455px}.shop_armor_special_gaymerx{background-position:-1638px -364px}.shop_armor_special_gaymerx,.shop_head_special_gaymerx{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_head_special_gaymerx{background-position:-1409px -910px}.slim_armor_special_gaymerx{background-position:-1386px -273px}.slim_armor_special_gaymerx,.back_mystery_201402{background-image:url(spritesmith2.png);width:90px;height:90px}.back_mystery_201402{background-position:-1365px -364px}.broad_armor_mystery_201402{background-position:-182px -1401px}.broad_armor_mystery_201402,.head_mystery_201402{background-image:url(spritesmith2.png);width:90px;height:90px}.head_mystery_201402{background-position:-364px -1371px}.shop_armor_mystery_201402{background-image:url(spritesmith2.png);background-position:-1589px -537px;width:40px;height:40px}.shop_back_mystery_201402{background-position:-1492px -728px}.shop_back_mystery_201402,.shop_head_mystery_201402{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_head_mystery_201402{background-position:-455px -1594px}.slim_armor_mystery_201402{background-image:url(spritesmith2.png);background-position:-1316px -546px;width:90px;height:90px}.broad_armor_mystery_201403{background-position:0 -1425px}.broad_armor_mystery_201403,.headAccessory_mystery_201403{background-image:url(spritesmith2.png);width:90px;height:90px}.headAccessory_mystery_201403{background-position:-91px -1425px}.shop_armor_mystery_201403{background-image:url(spritesmith2.png);background-position:-578px -1553px;width:40px;height:40px}.shop_headAccessory_mystery_201403{background-image:url(spritesmith2.png);background-position:-1653px -41px;width:40px;height:40px}.slim_armor_mystery_201403{background-image:url(spritesmith2.png);background-position:-679px -1274px;width:90px;height:90px}.back_mystery_201404{background-position:-455px -1371px}.back_mystery_201404,.headAccessory_mystery_201404{background-image:url(spritesmith2.png);width:90px;height:90px}.headAccessory_mystery_201404{background-position:-955px -1092px}.shop_back_mystery_201404{background-image:url(spritesmith2.png);background-position:-1653px 0;width:40px;height:40px}.shop_headAccessory_mystery_201404{background-image:url(spritesmith2.png);background-position:-1589px -455px;width:40px;height:40px}.broad_armor_mystery_201405{background-position:-1471px 0}.broad_armor_mystery_201405,.head_mystery_201405{background-image:url(spritesmith2.png);width:90px;height:90px}.head_mystery_201405{background-position:-546px -1371px}.shop_armor_mystery_201405{background-position:-123px -1648px}.shop_armor_mystery_201405,.shop_head_mystery_201405{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_head_mystery_201405{background-position:-82px -1648px}.slim_armor_mystery_201405{background-image:url(spritesmith2.png);background-position:-273px -1462px;width:90px;height:90px}.broad_armor_mystery_201406{background-position:-364px 0}.broad_armor_mystery_201406,.head_mystery_201406{background-image:url(spritesmith2.png);width:90px;height:96px}.head_mystery_201406{background-position:-182px -318px}.shop_armor_mystery_201406{background-position:-41px -1648px}.shop_armor_mystery_201406,.shop_head_mystery_201406{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_head_mystery_201406{background-position:-772px -1456px}.slim_armor_mystery_201406{background-image:url(spritesmith2.png);background-position:-273px -212px;width:90px;height:96px}.broad_armor_mystery_201407{background-position:-1477px -273px}.broad_armor_mystery_201407,.head_mystery_201407{background-image:url(spritesmith2.png);width:90px;height:90px}.head_mystery_201407{background-position:-182px -1492px}.shop_armor_mystery_201407{background-position:0 -1648px}.shop_armor_mystery_201407,.shop_head_mystery_201407{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_head_mystery_201407{background-position:-1501px -678px}.slim_armor_mystery_201407{background-image:url(spritesmith2.png);background-position:-1407px -546px;width:90px;height:90px}.broad_armor_mystery_201408{background-position:-637px -1371px}.broad_armor_mystery_201408,.head_mystery_201408{background-image:url(spritesmith2.png);width:90px;height:90px}.head_mystery_201408{background-position:-1046px -1092px}.shop_armor_mystery_201408{background-position:-1043px -1274px}.shop_armor_mystery_201408,.shop_head_mystery_201408{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_head_mystery_201408{background-position:-1097px -1224px}.slim_armor_mystery_201408{background-image:url(spritesmith2.png);background-position:-91px -1516px;width:90px;height:90px}.broad_armor_mystery_201409{background-position:-1143px -1001px}.broad_armor_mystery_201409,.headAccessory_mystery_201409{background-image:url(spritesmith2.png);width:90px;height:90px}.headAccessory_mystery_201409{background-position:-455px -1462px}.shop_armor_mystery_201409{background-image:url(spritesmith2.png);background-position:-1228px -1092px;width:40px;height:40px}.shop_headAccessory_mystery_201409{background-image:url(spritesmith2.png);background-position:-1501px -637px;width:40px;height:40px}.slim_armor_mystery_201409{background-image:url(spritesmith2.png);background-position:-1410px -637px;width:90px;height:90px}.back_mystery_201410{background-position:-1003px -1183px}.back_mystery_201410,.broad_armor_mystery_201410{background-image:url(spritesmith2.png);width:93px;height:90px}.broad_armor_mystery_201410{background-position:-546px -1462px}.shop_armor_mystery_201410{background-position:-496px -1553px}.shop_armor_mystery_201410,.shop_back_mystery_201410{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_back_mystery_201410{background-position:-731px -1456px}.slim_armor_mystery_201410{background-image:url(spritesmith2.png);background-position:-1274px -910px;width:93px;height:90px}.head_mystery_201411{background-image:url(spritesmith2.png);background-position:-1568px -91px;width:90px;height:90px}.shop_head_mystery_201411{background-position:-455px -1553px}.shop_head_mystery_201411,.shop_weapon_mystery_201411{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_weapon_mystery_201411{background-position:-1097px -1183px}.weapon_mystery_201411{background-image:url(spritesmith2.png);background-position:-1401px -728px;width:90px;height:90px}.broad_armor_mystery_201412{background-position:-1234px -1001px}.broad_armor_mystery_201412,.head_mystery_201412{background-image:url(spritesmith2.png);width:90px;height:90px}.head_mystery_201412{background-position:-1547px -364px}.shop_armor_mystery_201412{background-position:-123px -1607px}.shop_armor_mystery_201412,.shop_head_mystery_201412{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_head_mystery_201412{background-position:-182px -1152px}.slim_armor_mystery_201412{background-image:url(spritesmith2.png);background-position:-1365px -819px;width:90px;height:90px}.broad_armor_mystery_201501{background-position:-819px -1365px}.broad_armor_mystery_201501,.head_mystery_201501{background-image:url(spritesmith2.png);width:90px;height:90px}.head_mystery_201501{background-position:-182px -1583px}.shop_armor_mystery_201501{background-position:-1659px -273px}.shop_armor_mystery_201501,.shop_head_mystery_201501{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_head_mystery_201501{background-position:-224px -1052px}.slim_armor_mystery_201501{background-position:-640px -1462px}.slim_armor_mystery_201501,.broad_armor_mystery_301404{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_mystery_301404{background-position:-364px -1553px}.eyewear_mystery_301404{background-position:-1498px -546px}.eyewear_mystery_301404,.head_mystery_301404{background-image:url(spritesmith2.png);width:90px;height:90px}.head_mystery_301404{background-position:-1568px -273px}.shop_armor_mystery_301404{background-position:-315px -1128px}.shop_armor_mystery_301404,.shop_eyewear_mystery_301404{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_eyewear_mystery_301404{background-position:0 -1607px}.shop_head_mystery_301404{background-position:-41px -1607px}.shop_head_mystery_301404,.shop_weapon_mystery_301404{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_weapon_mystery_301404{background-position:-82px -1607px}.slim_armor_mystery_301404{background-position:-952px -1274px}.slim_armor_mystery_301404,.weapon_mystery_301404{background-image:url(spritesmith2.png);width:90px;height:90px}.weapon_mystery_301404{background-position:-273px -1553px}.eyewear_mystery_301405{background-position:-1137px -1092px}.eyewear_mystery_301405,.headAccessory_mystery_301405{background-image:url(spritesmith2.png);width:90px;height:90px}.headAccessory_mystery_301405{background-position:-1498px -455px}.head_mystery_301405{background-position:-1562px 0}.head_mystery_301405,.shield_mystery_301405{background-image:url(spritesmith2.png);width:90px;height:90px}.shield_mystery_301405{background-position:-728px -1365px}.shop_eyewear_mystery_301405{background-image:url(spritesmith2.png);background-position:-910px -1365px;width:40px;height:40px}.shop_headAccessory_mystery_301405{background-image:url(spritesmith2.png);background-position:-1138px -1183px;width:40px;height:40px}.shop_head_mystery_301405{background-position:-1368px -910px}.shop_head_mystery_301405,.shop_shield_mystery_301405{background-image:url(spritesmith2.png);width:40px;height:40px}.shop_shield_mystery_301405{background-position:-537px -1553px}.broad_armor_special_springHealer{background-image:url(spritesmith2.png);background-position:-861px -1274px;width:90px;height:90px}.broad_armor_special_springMage{background-image:url(spritesmith2.png);background-position:0 -1516px;width:90px;height:90px}.broad_armor_special_springRogue{background-image:url(spritesmith2.png);background-position:-1274px -819px;width:90px;height:90px}.broad_armor_special_springWarrior{background-image:url(spritesmith2.png);background-position:-1498px -182px;width:90px;height:90px}.headAccessory_special_springHealer{background-image:url(spritesmith2.png);background-position:-364px -1462px;width:90px;height:90px}.headAccessory_special_springMage{background-image:url(spritesmith2.png);background-position:-1310px -728px;width:90px;height:90px}.headAccessory_special_springRogue{background-image:url(spritesmith2.png);background-position:-912px -1183px;width:90px;height:90px}.headAccessory_special_springWarrior{background-image:url(spritesmith2.png);background-position:-1477px -91px;width:90px;height:90px}.head_special_springHealer{background-image:url(spritesmith2.png);background-position:-1407px -455px;width:90px;height:90px}.head_special_springMage{background-position:-1319px -637px}.head_special_springMage,.head_special_springRogue{background-image:url(spritesmith2.png);width:90px;height:90px}.head_special_springRogue{background-position:-1052px -1001px}.head_special_springWarrior{background-position:-821px -1183px}.head_special_springWarrior,.shield_special_springHealer{background-image:url(spritesmith2.png);width:90px;height:90px}.shield_special_springHealer{background-position:-1183px -819px}.shield_special_springRogue{background-position:-1092px -910px}.shield_special_springRogue,.shield_special_springWarrior{background-image:url(spritesmith2.png);width:90px;height:90px}.shield_special_springWarrior{background-position:-1219px -728px}.shop_armor_special_springHealer{background-image:url(spritesmith2.png);background-position:-1325px -1001px;width:40px;height:40px}.shop_armor_special_springMage{background-image:url(spritesmith2.png);background-position:-1659px -82px;width:40px;height:40px}.shop_armor_special_springRogue{background-image:url(spritesmith2.png);background-position:-1659px -123px;width:40px;height:40px}.shop_armor_special_springWarrior{background-image:url(spritesmith2.png);background-position:-951px -1365px;width:40px;height:40px}.shop_headAccessory_special_springHealer{background-image:url(spritesmith2.png);background-position:-1589px -496px;width:40px;height:40px}.shop_headAccessory_special_springMage{background-image:url(spritesmith2.png);background-position:-731px -1497px;width:40px;height:40px}.shop_headAccessory_special_springRogue{background-image:url(spritesmith2.png);background-position:-1368px -951px;width:40px;height:40px}.shop_headAccessory_special_springWarrior{background-image:url(spritesmith2.png);background-position:-273px -1644px;width:40px;height:40px}.shop_head_special_springHealer{background-image:url(spritesmith2.png);background-position:-813px -1456px;width:40px;height:40px}.shop_head_special_springMage{background-image:url(spritesmith2.png);background-position:-1542px -637px;width:40px;height:40px}.shop_head_special_springRogue copy{background-image:url(spritesmith2.png);background-position:-496px -1594px;width:40px;height:40px}.shop_head_special_springRogue{background-image:url(spritesmith2.png);background-position:-1179px -1183px;width:40px;height:40px}.shop_head_special_springWarrior{background-image:url(spritesmith2.png);background-position:-1456px -819px;width:40px;height:40px}.shop_shield_special_springHealer{background-image:url(spritesmith2.png);background-position:-1228px -1133px;width:40px;height:40px}.shop_shield_special_springRogue{background-image:url(spritesmith2.png);background-position:-1138px -1224px;width:40px;height:40px}.shop_shield_special_springWarrior{background-image:url(spritesmith2.png);background-position:-619px -1553px;width:40px;height:40px}.shop_weapon_special_springHealer{background-image:url(spritesmith2.png);background-position:-1084px -1274px;width:40px;height:40px}.shop_weapon_special_springMage{background-image:url(spritesmith2.png);background-position:-314px -1644px;width:40px;height:40px}.shop_weapon_special_springRogue{background-image:url(spritesmith2.png);background-position:-1269px -1092px;width:40px;height:40px}.shop_weapon_special_springWarrior{background-image:url(spritesmith2.png);background-position:-910px -1406px;width:40px;height:40px}.slim_armor_special_springHealer{background-image:url(spritesmith2.png);background-position:-1407px -182px;width:90px;height:90px}.slim_armor_special_springMage{background-image:url(spritesmith2.png);background-position:-588px -1280px;width:90px;height:90px}.slim_armor_special_springRogue{background-image:url(spritesmith2.png);background-position:-273px -1371px;width:90px;height:90px}.slim_armor_special_springWarrior{background-image:url(spritesmith2.png);background-position:-406px -1280px;width:90px;height:90px}.weapon_special_springHealer{background-position:-1128px -728px}.weapon_special_springHealer,.weapon_special_springMage{background-image:url(spritesmith2.png);width:90px;height:90px}.weapon_special_springMage{background-position:-91px -1334px}.weapon_special_springRogue{background-position:0 -1334px}.weapon_special_springRogue,.weapon_special_springWarrior{background-image:url(spritesmith2.png);width:90px;height:90px}.weapon_special_springWarrior{background-position:-609px -1183px}.body_special_summerHealer{background-image:url(spritesmith2.png);background-position:-91px -318px;width:90px;height:105px}.body_special_summerMage{background-position:0 -318px}.body_special_summerMage,.broad_armor_special_summerHealer{background-image:url(spritesmith2.png);width:90px;height:105px}.broad_armor_special_summerHealer{background-position:-273px -106px}.broad_armor_special_summerMage{background-image:url(spritesmith2.png);background-position:-182px -212px;width:90px;height:105px}.broad_armor_special_summerRogue{background-image:url(spritesmith2.png);background-position:-1204px -546px;width:111px;height:90px}.broad_armor_special_summerWarrior{background-image:url(spritesmith2.png);background-position:-294px -1280px;width:111px;height:90px}.eyewear_special_summerRogue{background-image:url(spritesmith2.png);background-position:-1295px -182px;width:111px;height:90px}.eyewear_special_summerWarrior{background-image:url(spritesmith2.png);background-position:-1274px -273px;width:111px;height:90px}.head_special_summerHealer{background-position:-273px 0}.head_special_summerHealer,.head_special_summerMage{background-image:url(spritesmith2.png);width:90px;height:105px}.head_special_summerMage{background-position:-91px 0}.head_special_summerRogue{background-position:-182px -1219px}.head_special_summerRogue,.head_special_summerWarrior{background-image:url(spritesmith2.png);width:111px;height:90px}.head_special_summerWarrior{background-position:-315px -1189px}.Healer_Summer{background-position:0 0}.Healer_Summer,.Mage_Summer{background-image:url(spritesmith2.png);width:90px;height:105px}.Mage_Summer{background-position:-182px -106px}.SummerRogue14{background-position:-1092px -182px}.SummerRogue14,.SummerWarrior14{background-image:url(spritesmith2.png);width:111px;height:90px}.SummerWarrior14{background-position:-1007px -455px}.shield_special_summerHealer{background-image:url(spritesmith2.png);background-position:-182px 0;width:90px;height:105px}.shield_special_summerRogue{background-position:-819px -728px}.shield_special_summerRogue,.shield_special_summerWarrior{background-image:url(spritesmith2.png);width:111px;height:90px}.shield_special_summerWarrior{background-position:-1092px -91px}.shop_armor_special_summerHealer{background-image:url(spritesmith2.png);background-position:-1680px -205px;width:40px;height:40px}.shop_armor_special_summerMage{background-image:url(spritesmith2.png);background-position:-1125px -1265px;width:40px;height:40px}.shop_armor_special_summerRogue{background-image:url(spritesmith2.png);background-position:-1533px -719px;width:40px;height:40px}.shop_armor_special_summerWarrior{background-image:url(spritesmith2.png);background-position:-123px -1689px;width:40px;height:40px}.shop_body_special_summerHealer{background-image:url(spritesmith2.png);background-position:-1694px 0;width:40px;height:40px}.shop_body_special_summerMage{background-image:url(spritesmith2.png);background-position:-1694px -41px;width:40px;height:40px}.shop_eyewear_special_summerRogue{background-image:url(spritesmith2.png);background-position:-578px -1594px;width:40px;height:40px}.shop_eyewear_special_summerWarrior{background-image:url(spritesmith2.png);background-position:-455px -1635px;width:40px;height:40px}.shop_head_special_summerHealer{background-image:url(spritesmith2.png);background-position:-951px -1406px;width:40px;height:40px}.shop_head_special_summerMage{background-image:url(spritesmith2.png);background-position:-1228px -1174px;width:40px;height:40px}.shop_head_special_summerRogue{background-image:url(spritesmith2.png);background-position:-1179px -1224px;width:40px;height:40px}.shop_head_special_summerWarrior{background-image:url(spritesmith2.png);background-position:-1409px -951px;width:40px;height:40px}.shop_shield_special_summerHealer{background-image:url(spritesmith2.png);background-position:-1269px -1133px;width:40px;height:40px}.shop_shield_special_summerRogue{background-image:url(spritesmith2.png);background-position:-1700px -82px;width:40px;height:40px}.shop_shield_special_summerWarrior{background-image:url(spritesmith2.png);background-position:-1497px -810px;width:40px;height:40px}.shop_weapon_special_summerHealer{background-image:url(spritesmith2.png);background-position:-246px -1685px;width:40px;height:40px}.shop_weapon_special_summerMage{background-image:url(spritesmith2.png);background-position:-731px -1538px;width:40px;height:40px}.shop_weapon_special_summerRogue{background-image:url(spritesmith2.png);background-position:-813px -1497px;width:40px;height:40px}.shop_weapon_special_summerWarrior{background-image:url(spritesmith2.png);background-position:-1630px -496px;width:40px;height:40px}.slim_armor_special_summerHealer{background-image:url(spritesmith2.png);background-position:-91px -106px;width:90px;height:105px}.slim_armor_special_summerMage{background-image:url(spritesmith2.png);background-position:0 -106px;width:90px;height:105px}.slim_armor_special_summerRogue{background-image:url(spritesmith2.png);background-position:-364px -1007px;width:111px;height:90px}.slim_armor_special_summerWarrior{background-image:url(spritesmith2.png);background-position:-112px -1061px;width:111px;height:90px}.weapon_special_summerHealer{background-position:0 -212px}.weapon_special_summerHealer,.weapon_special_summerMage{background-image:url(spritesmith2.png);width:90px;height:105px}.weapon_special_summerMage{background-position:-91px -212px}.weapon_special_summerRogue{background-position:-910px -546px}.weapon_special_summerRogue,.weapon_special_summerWarrior{background-image:url(spritesmith2.png);width:111px;height:90px}.weapon_special_summerWarrior{background-position:0 -1061px}.broad_armor_special_candycane{background-image:url(spritesmith2.png);background-position:-1001px -273px;width:90px;height:90px}.broad_armor_special_ski{background-position:-819px -637px}.broad_armor_special_ski,.broad_armor_special_snowflake{background-image:url(spritesmith2.png);width:90px;height:90px}.broad_armor_special_snowflake{background-position:-637px -819px}.broad_armor_special_winter2015Healer{background-image:url(spritesmith2.png);background-position:-728px -728px;width:90px;height:90px}.broad_armor_special_winter2015Mage{background-image:url(spritesmith2.png);background-position:-1001px -182px;width:90px;height:90px}.broad_armor_special_winter2015Rogue{background-image:url(spritesmith2.png);background-position:-910px -455px;width:96px;height:90px}.broad_armor_special_winter2015Warrior{background-image:url(spritesmith2.png);background-position:-455px -910px;width:90px;height:90px}.broad_armor_special_yeti{background-position:-1001px -91px}.broad_armor_special_yeti,.head_special_candycane{background-image:url(spritesmith2.png);width:90px;height:90px}.head_special_candycane{background-position:-1589px -182px} \ No newline at end of file +.broad_shirt_rainbow { + background-image: url(spritesmith2.png); + background-position: -1001px -364px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_rainbow { + background-image: url(spritesmith2.png); + background-position: -1026px -394px; + width: 60px; + height: 60px; +} +.broad_shirt_redblue { + background-image: url(spritesmith2.png); + background-position: -1295px -546px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_redblue { + background-image: url(spritesmith2.png); + background-position: -1320px -576px; + width: 60px; + height: 60px; +} +.broad_shirt_thunder { + background-image: url(spritesmith2.png); + background-position: -1001px -455px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_thunder { + background-image: url(spritesmith2.png); + background-position: -1026px -485px; + width: 60px; + height: 60px; +} +.broad_shirt_tropical { + background-image: url(spritesmith2.png); + background-position: -1001px -546px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_tropical { + background-image: url(spritesmith2.png); + background-position: -1026px -576px; + width: 60px; + height: 60px; +} +.broad_shirt_white { + background-image: url(spritesmith2.png); + background-position: -1001px -637px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_white { + background-image: url(spritesmith2.png); + background-position: -1026px -667px; + width: 60px; + height: 60px; +} +.broad_shirt_yellow { + background-image: url(spritesmith2.png); + background-position: -1001px -728px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_yellow { + background-image: url(spritesmith2.png); + background-position: -1026px -758px; + width: 60px; + height: 60px; +} +.broad_shirt_zombie { + background-image: url(spritesmith2.png); + background-position: -1001px -819px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_zombie { + background-image: url(spritesmith2.png); + background-position: -1026px -849px; + width: 60px; + height: 60px; +} +.slim_shirt_black { + background-image: url(spritesmith2.png); + background-position: -896px -961px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_black { + background-image: url(spritesmith2.png); + background-position: -921px -991px; + width: 60px; + height: 60px; +} +.slim_shirt_blue { + background-image: url(spritesmith2.png); + background-position: -242px -1143px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_blue { + background-image: url(spritesmith2.png); + background-position: -267px -1173px; + width: 60px; + height: 60px; +} +.slim_shirt_convict { + background-image: url(spritesmith2.png); + background-position: -333px -1143px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_convict { + background-image: url(spritesmith2.png); + background-position: -358px -1173px; + width: 60px; + height: 60px; +} +.slim_shirt_cross { + background-image: url(spritesmith2.png); + background-position: -872px -1143px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_cross { + background-image: url(spritesmith2.png); + background-position: -897px -1173px; + width: 60px; + height: 60px; +} +.slim_shirt_fire { + background-image: url(spritesmith2.png); + background-position: -963px -1143px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_fire { + background-image: url(spritesmith2.png); + background-position: -988px -1173px; + width: 60px; + height: 60px; +} +.slim_shirt_green { + background-image: url(spritesmith2.png); + background-position: -1054px -1143px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_green { + background-image: url(spritesmith2.png); + background-position: -1079px -1173px; + width: 60px; + height: 60px; +} +.slim_shirt_horizon { + background-image: url(spritesmith2.png); + background-position: -1145px -1143px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_horizon { + background-image: url(spritesmith2.png); + background-position: -1170px -1173px; + width: 60px; + height: 60px; +} +.slim_shirt_ocean { + background-image: url(spritesmith2.png); + background-position: -1386px -1092px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_ocean { + background-image: url(spritesmith2.png); + background-position: -1411px -1122px; + width: 60px; + height: 60px; +} +.slim_shirt_pink { + background-image: url(spritesmith2.png); + background-position: -1386px -1183px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_pink { + background-image: url(spritesmith2.png); + background-position: -1411px -1213px; + width: 60px; + height: 60px; +} +.slim_shirt_purple { + background-image: url(spritesmith2.png); + background-position: -182px -1325px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_purple { + background-image: url(spritesmith2.png); + background-position: -207px -1355px; + width: 60px; + height: 60px; +} +.slim_shirt_rainbow { + background-image: url(spritesmith2.png); + background-position: -182px -318px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_rainbow { + background-image: url(spritesmith2.png); + background-position: -207px -348px; + width: 60px; + height: 60px; +} +.slim_shirt_redblue { + background-image: url(spritesmith2.png); + background-position: -273px -318px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_redblue { + background-image: url(spritesmith2.png); + background-position: -298px -348px; + width: 60px; + height: 60px; +} +.slim_shirt_thunder { + background-image: url(spritesmith2.png); + background-position: -364px -318px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_thunder { + background-image: url(spritesmith2.png); + background-position: -389px -348px; + width: 60px; + height: 60px; +} +.slim_shirt_tropical { + background-image: url(spritesmith2.png); + background-position: -455px 0px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_tropical { + background-image: url(spritesmith2.png); + background-position: -480px -30px; + width: 60px; + height: 60px; +} +.slim_shirt_white { + background-image: url(spritesmith2.png); + background-position: -455px -91px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_white { + background-image: url(spritesmith2.png); + background-position: -480px -121px; + width: 60px; + height: 60px; +} +.slim_shirt_yellow { + background-image: url(spritesmith2.png); + background-position: -455px -182px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_yellow { + background-image: url(spritesmith2.png); + background-position: -480px -212px; + width: 60px; + height: 60px; +} +.slim_shirt_zombie { + background-image: url(spritesmith2.png); + background-position: -455px -273px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_zombie { + background-image: url(spritesmith2.png); + background-position: -480px -303px; + width: 60px; + height: 60px; +} +.skin_0ff591 { + background-image: url(spritesmith2.png); + background-position: 0px -415px; + width: 90px; + height: 90px; +} +.customize-option.skin_0ff591 { + background-image: url(spritesmith2.png); + background-position: -25px -430px; + width: 60px; + height: 60px; +} +.skin_0ff591_sleep { + background-image: url(spritesmith2.png); + background-position: -91px -415px; + width: 90px; + height: 90px; +} +.customize-option.skin_0ff591_sleep { + background-image: url(spritesmith2.png); + background-position: -116px -430px; + width: 60px; + height: 60px; +} +.skin_2b43f6 { + background-image: url(spritesmith2.png); + background-position: -182px -415px; + width: 90px; + height: 90px; +} +.customize-option.skin_2b43f6 { + background-image: url(spritesmith2.png); + background-position: -207px -430px; + width: 60px; + height: 60px; +} +.skin_2b43f6_sleep { + background-image: url(spritesmith2.png); + background-position: -273px -415px; + width: 90px; + height: 90px; +} +.customize-option.skin_2b43f6_sleep { + background-image: url(spritesmith2.png); + background-position: -298px -430px; + width: 60px; + height: 60px; +} +.skin_6bd049 { + background-image: url(spritesmith2.png); + background-position: -364px -415px; + width: 90px; + height: 90px; +} +.customize-option.skin_6bd049 { + background-image: url(spritesmith2.png); + background-position: -389px -430px; + width: 60px; + height: 60px; +} +.skin_6bd049_sleep { + background-image: url(spritesmith2.png); + background-position: -455px -415px; + width: 90px; + height: 90px; +} +.customize-option.skin_6bd049_sleep { + background-image: url(spritesmith2.png); + background-position: -480px -430px; + width: 60px; + height: 60px; +} +.skin_800ed0 { + background-image: url(spritesmith2.png); + background-position: -546px 0px; + width: 90px; + height: 90px; +} +.customize-option.skin_800ed0 { + background-image: url(spritesmith2.png); + background-position: -571px -15px; + width: 60px; + height: 60px; +} +.skin_800ed0_sleep { + background-image: url(spritesmith2.png); + background-position: -546px -91px; + width: 90px; + height: 90px; +} +.customize-option.skin_800ed0_sleep { + background-image: url(spritesmith2.png); + background-position: -571px -106px; + width: 60px; + height: 60px; +} +.skin_915533 { + background-image: url(spritesmith2.png); + background-position: -546px -182px; + width: 90px; + height: 90px; +} +.customize-option.skin_915533 { + background-image: url(spritesmith2.png); + background-position: -571px -197px; + width: 60px; + height: 60px; +} +.skin_915533_sleep { + background-image: url(spritesmith2.png); + background-position: -546px -273px; + width: 90px; + height: 90px; +} +.customize-option.skin_915533_sleep { + background-image: url(spritesmith2.png); + background-position: -571px -288px; + width: 60px; + height: 60px; +} +.skin_98461a { + background-image: url(spritesmith2.png); + background-position: -546px -364px; + width: 90px; + height: 90px; +} +.customize-option.skin_98461a { + background-image: url(spritesmith2.png); + background-position: -571px -379px; + width: 60px; + height: 60px; +} +.skin_98461a_sleep { + background-image: url(spritesmith2.png); + background-position: 0px -506px; + width: 90px; + height: 90px; +} +.customize-option.skin_98461a_sleep { + background-image: url(spritesmith2.png); + background-position: -25px -521px; + width: 60px; + height: 60px; +} +.skin_c06534 { + background-image: url(spritesmith2.png); + background-position: -91px -506px; + width: 90px; + height: 90px; +} +.customize-option.skin_c06534 { + background-image: url(spritesmith2.png); + background-position: -116px -521px; + width: 60px; + height: 60px; +} +.skin_c06534_sleep { + background-image: url(spritesmith2.png); + background-position: -182px -506px; + width: 90px; + height: 90px; +} +.customize-option.skin_c06534_sleep { + background-image: url(spritesmith2.png); + background-position: -207px -521px; + width: 60px; + height: 60px; +} +.skin_c3e1dc { + background-image: url(spritesmith2.png); + background-position: -273px -506px; + width: 90px; + height: 90px; +} +.customize-option.skin_c3e1dc { + background-image: url(spritesmith2.png); + background-position: -298px -521px; + width: 60px; + height: 60px; +} +.skin_c3e1dc_sleep { + background-image: url(spritesmith2.png); + background-position: -364px -506px; + width: 90px; + height: 90px; +} +.customize-option.skin_c3e1dc_sleep { + background-image: url(spritesmith2.png); + background-position: -389px -521px; + width: 60px; + height: 60px; +} +.skin_candycorn { + background-image: url(spritesmith2.png); + background-position: -455px -506px; + width: 90px; + height: 90px; +} +.customize-option.skin_candycorn { + background-image: url(spritesmith2.png); + background-position: -480px -521px; + width: 60px; + height: 60px; +} +.skin_candycorn_sleep { + background-image: url(spritesmith2.png); + background-position: -546px -506px; + width: 90px; + height: 90px; +} +.customize-option.skin_candycorn_sleep { + background-image: url(spritesmith2.png); + background-position: -571px -521px; + width: 60px; + height: 60px; +} +.skin_d7a9f7 { + background-image: url(spritesmith2.png); + background-position: -637px 0px; + width: 90px; + height: 90px; +} +.customize-option.skin_d7a9f7 { + background-image: url(spritesmith2.png); + background-position: -662px -15px; + width: 60px; + height: 60px; +} +.skin_d7a9f7_sleep { + background-image: url(spritesmith2.png); + background-position: -637px -91px; + width: 90px; + height: 90px; +} +.customize-option.skin_d7a9f7_sleep { + background-image: url(spritesmith2.png); + background-position: -662px -106px; + width: 60px; + height: 60px; +} +.skin_ddc994 { + background-image: url(spritesmith2.png); + background-position: -637px -182px; + width: 90px; + height: 90px; +} +.customize-option.skin_ddc994 { + background-image: url(spritesmith2.png); + background-position: -662px -197px; + width: 60px; + height: 60px; +} +.skin_ddc994_sleep { + background-image: url(spritesmith2.png); + background-position: -637px -273px; + width: 90px; + height: 90px; +} +.customize-option.skin_ddc994_sleep { + background-image: url(spritesmith2.png); + background-position: -662px -288px; + width: 60px; + height: 60px; +} +.skin_ea8349 { + background-image: url(spritesmith2.png); + background-position: -637px -364px; + width: 90px; + height: 90px; +} +.customize-option.skin_ea8349 { + background-image: url(spritesmith2.png); + background-position: -662px -379px; + width: 60px; + height: 60px; +} +.skin_ea8349_sleep { + background-image: url(spritesmith2.png); + background-position: -637px -455px; + width: 90px; + height: 90px; +} +.customize-option.skin_ea8349_sleep { + background-image: url(spritesmith2.png); + background-position: -662px -470px; + width: 60px; + height: 60px; +} +.skin_eb052b { + background-image: url(spritesmith2.png); + background-position: 0px -597px; + width: 90px; + height: 90px; +} +.customize-option.skin_eb052b { + background-image: url(spritesmith2.png); + background-position: -25px -612px; + width: 60px; + height: 60px; +} +.skin_eb052b_sleep { + background-image: url(spritesmith2.png); + background-position: -91px -597px; + width: 90px; + height: 90px; +} +.customize-option.skin_eb052b_sleep { + background-image: url(spritesmith2.png); + background-position: -116px -612px; + width: 60px; + height: 60px; +} +.skin_f5a76e { + background-image: url(spritesmith2.png); + background-position: -182px -597px; + width: 90px; + height: 90px; +} +.customize-option.skin_f5a76e { + background-image: url(spritesmith2.png); + background-position: -207px -612px; + width: 60px; + height: 60px; +} +.skin_f5a76e_sleep { + background-image: url(spritesmith2.png); + background-position: -273px -597px; + width: 90px; + height: 90px; +} +.customize-option.skin_f5a76e_sleep { + background-image: url(spritesmith2.png); + background-position: -298px -612px; + width: 60px; + height: 60px; +} +.skin_f5d70f { + background-image: url(spritesmith2.png); + background-position: -364px -597px; + width: 90px; + height: 90px; +} +.customize-option.skin_f5d70f { + background-image: url(spritesmith2.png); + background-position: -389px -612px; + width: 60px; + height: 60px; +} +.skin_f5d70f_sleep { + background-image: url(spritesmith2.png); + background-position: -455px -597px; + width: 90px; + height: 90px; +} +.customize-option.skin_f5d70f_sleep { + background-image: url(spritesmith2.png); + background-position: -480px -612px; + width: 60px; + height: 60px; +} +.skin_f69922 { + background-image: url(spritesmith2.png); + background-position: -546px -597px; + width: 90px; + height: 90px; +} +.customize-option.skin_f69922 { + background-image: url(spritesmith2.png); + background-position: -571px -612px; + width: 60px; + height: 60px; +} +.skin_f69922_sleep { + background-image: url(spritesmith2.png); + background-position: -637px -597px; + width: 90px; + height: 90px; +} +.customize-option.skin_f69922_sleep { + background-image: url(spritesmith2.png); + background-position: -662px -612px; + width: 60px; + height: 60px; +} +.skin_ghost { + background-image: url(spritesmith2.png); + background-position: -728px 0px; + width: 90px; + height: 90px; +} +.customize-option.skin_ghost { + background-image: url(spritesmith2.png); + background-position: -753px -15px; + width: 60px; + height: 60px; +} +.skin_ghost_sleep { + background-image: url(spritesmith2.png); + background-position: -728px -91px; + width: 90px; + height: 90px; +} +.customize-option.skin_ghost_sleep { + background-image: url(spritesmith2.png); + background-position: -753px -106px; + width: 60px; + height: 60px; +} +.skin_monster { + background-image: url(spritesmith2.png); + background-position: -728px -182px; + width: 90px; + height: 90px; +} +.customize-option.skin_monster { + background-image: url(spritesmith2.png); + background-position: -753px -197px; + width: 60px; + height: 60px; +} +.skin_monster_sleep { + background-image: url(spritesmith2.png); + background-position: -728px -273px; + width: 90px; + height: 90px; +} +.customize-option.skin_monster_sleep { + background-image: url(spritesmith2.png); + background-position: -753px -288px; + width: 60px; + height: 60px; +} +.skin_ogre { + background-image: url(spritesmith2.png); + background-position: -728px -364px; + width: 90px; + height: 90px; +} +.customize-option.skin_ogre { + background-image: url(spritesmith2.png); + background-position: -753px -379px; + width: 60px; + height: 60px; +} +.skin_ogre_sleep { + background-image: url(spritesmith2.png); + background-position: -728px -455px; + width: 90px; + height: 90px; +} +.customize-option.skin_ogre_sleep { + background-image: url(spritesmith2.png); + background-position: -753px -470px; + width: 60px; + height: 60px; +} +.skin_pumpkin { + background-image: url(spritesmith2.png); + background-position: -728px -546px; + width: 90px; + height: 90px; +} +.customize-option.skin_pumpkin { + background-image: url(spritesmith2.png); + background-position: -753px -561px; + width: 60px; + height: 60px; +} +.skin_pumpkin2 { + background-image: url(spritesmith2.png); + background-position: 0px -688px; + width: 90px; + height: 90px; +} +.customize-option.skin_pumpkin2 { + background-image: url(spritesmith2.png); + background-position: -25px -703px; + width: 60px; + height: 60px; +} +.skin_pumpkin2_sleep { + background-image: url(spritesmith2.png); + background-position: -91px -688px; + width: 90px; + height: 90px; +} +.customize-option.skin_pumpkin2_sleep { + background-image: url(spritesmith2.png); + background-position: -116px -703px; + width: 60px; + height: 60px; +} +.skin_pumpkin_sleep { + background-image: url(spritesmith2.png); + background-position: -182px -688px; + width: 90px; + height: 90px; +} +.customize-option.skin_pumpkin_sleep { + background-image: url(spritesmith2.png); + background-position: -207px -703px; + width: 60px; + height: 60px; +} +.skin_rainbow { + background-image: url(spritesmith2.png); + background-position: -273px -688px; + width: 90px; + height: 90px; +} +.customize-option.skin_rainbow { + background-image: url(spritesmith2.png); + background-position: -298px -703px; + width: 60px; + height: 60px; +} +.skin_rainbow_sleep { + background-image: url(spritesmith2.png); + background-position: -364px -688px; + width: 90px; + height: 90px; +} +.customize-option.skin_rainbow_sleep { + background-image: url(spritesmith2.png); + background-position: -389px -703px; + width: 60px; + height: 60px; +} +.skin_reptile { + background-image: url(spritesmith2.png); + background-position: -455px -688px; + width: 90px; + height: 90px; +} +.customize-option.skin_reptile { + background-image: url(spritesmith2.png); + background-position: -480px -703px; + width: 60px; + height: 60px; +} +.skin_reptile_sleep { + background-image: url(spritesmith2.png); + background-position: -546px -688px; + width: 90px; + height: 90px; +} +.customize-option.skin_reptile_sleep { + background-image: url(spritesmith2.png); + background-position: -571px -703px; + width: 60px; + height: 60px; +} +.skin_shadow { + background-image: url(spritesmith2.png); + background-position: -637px -688px; + width: 90px; + height: 90px; +} +.customize-option.skin_shadow { + background-image: url(spritesmith2.png); + background-position: -662px -703px; + width: 60px; + height: 60px; +} +.skin_shadow2 { + background-image: url(spritesmith2.png); + background-position: -728px -688px; + width: 90px; + height: 90px; +} +.customize-option.skin_shadow2 { + background-image: url(spritesmith2.png); + background-position: -753px -703px; + width: 60px; + height: 60px; +} +.skin_shadow2_sleep { + background-image: url(spritesmith2.png); + background-position: -819px 0px; + width: 90px; + height: 90px; +} +.customize-option.skin_shadow2_sleep { + background-image: url(spritesmith2.png); + background-position: -844px -15px; + width: 60px; + height: 60px; +} +.skin_shadow_sleep { + background-image: url(spritesmith2.png); + background-position: -819px -91px; + width: 90px; + height: 90px; +} +.customize-option.skin_shadow_sleep { + background-image: url(spritesmith2.png); + background-position: -844px -106px; + width: 60px; + height: 60px; +} +.skin_skeleton { + background-image: url(spritesmith2.png); + background-position: -819px -182px; + width: 90px; + height: 90px; +} +.customize-option.skin_skeleton { + background-image: url(spritesmith2.png); + background-position: -844px -197px; + width: 60px; + height: 60px; +} +.skin_skeleton2 { + background-image: url(spritesmith2.png); + background-position: -819px -273px; + width: 90px; + height: 90px; +} +.customize-option.skin_skeleton2 { + background-image: url(spritesmith2.png); + background-position: -844px -288px; + width: 60px; + height: 60px; +} +.skin_skeleton2_sleep { + background-image: url(spritesmith2.png); + background-position: -819px -364px; + width: 90px; + height: 90px; +} +.customize-option.skin_skeleton2_sleep { + background-image: url(spritesmith2.png); + background-position: -844px -379px; + width: 60px; + height: 60px; +} +.skin_skeleton_sleep { + background-image: url(spritesmith2.png); + background-position: -819px -455px; + width: 90px; + height: 90px; +} +.customize-option.skin_skeleton_sleep { + background-image: url(spritesmith2.png); + background-position: -844px -470px; + width: 60px; + height: 60px; +} +.skin_transparent { + background-image: url(spritesmith2.png); + background-position: -819px -546px; + width: 90px; + height: 90px; +} +.customize-option.skin_transparent { + background-image: url(spritesmith2.png); + background-position: -844px -561px; + width: 60px; + height: 60px; +} +.skin_transparent_sleep { + background-image: url(spritesmith2.png); + background-position: -819px -637px; + width: 90px; + height: 90px; +} +.customize-option.skin_transparent_sleep { + background-image: url(spritesmith2.png); + background-position: -844px -652px; + width: 60px; + height: 60px; +} +.skin_zombie { + background-image: url(spritesmith2.png); + background-position: 0px -779px; + width: 90px; + height: 90px; +} +.customize-option.skin_zombie { + background-image: url(spritesmith2.png); + background-position: -25px -794px; + width: 60px; + height: 60px; +} +.skin_zombie2 { + background-image: url(spritesmith2.png); + background-position: -91px -779px; + width: 90px; + height: 90px; +} +.customize-option.skin_zombie2 { + background-image: url(spritesmith2.png); + background-position: -116px -794px; + width: 60px; + height: 60px; +} +.skin_zombie2_sleep { + background-image: url(spritesmith2.png); + background-position: -182px -779px; + width: 90px; + height: 90px; +} +.customize-option.skin_zombie2_sleep { + background-image: url(spritesmith2.png); + background-position: -207px -794px; + width: 60px; + height: 60px; +} +.skin_zombie_sleep { + background-image: url(spritesmith2.png); + background-position: -273px -779px; + width: 90px; + height: 90px; +} +.customize-option.skin_zombie_sleep { + background-image: url(spritesmith2.png); + background-position: -298px -794px; + width: 60px; + height: 60px; +} +.broad_armor_healer_1 { + background-image: url(spritesmith2.png); + background-position: -364px -779px; + width: 90px; + height: 90px; +} +.broad_armor_healer_2 { + background-image: url(spritesmith2.png); + background-position: -455px -779px; + width: 90px; + height: 90px; +} +.broad_armor_healer_3 { + background-image: url(spritesmith2.png); + background-position: -546px -779px; + width: 90px; + height: 90px; +} +.broad_armor_healer_4 { + background-image: url(spritesmith2.png); + background-position: -637px -779px; + width: 90px; + height: 90px; +} +.broad_armor_healer_5 { + background-image: url(spritesmith2.png); + background-position: -728px -779px; + width: 90px; + height: 90px; +} +.broad_armor_rogue_1 { + background-image: url(spritesmith2.png); + background-position: -819px -779px; + width: 90px; + height: 90px; +} +.broad_armor_rogue_2 { + background-image: url(spritesmith2.png); + background-position: -910px 0px; + width: 90px; + height: 90px; +} +.broad_armor_rogue_3 { + background-image: url(spritesmith2.png); + background-position: -910px -91px; + width: 90px; + height: 90px; +} +.broad_armor_rogue_4 { + background-image: url(spritesmith2.png); + background-position: -910px -182px; + width: 90px; + height: 90px; +} +.broad_armor_rogue_5 { + background-image: url(spritesmith2.png); + background-position: -910px -273px; + width: 90px; + height: 90px; +} +.broad_armor_special_2 { + background-image: url(spritesmith2.png); + background-position: -910px -364px; + width: 90px; + height: 90px; +} +.broad_armor_warrior_1 { + background-image: url(spritesmith2.png); + background-position: -910px -455px; + width: 90px; + height: 90px; +} +.broad_armor_warrior_2 { + background-image: url(spritesmith2.png); + background-position: -910px -546px; + width: 90px; + height: 90px; +} +.broad_armor_warrior_3 { + background-image: url(spritesmith2.png); + background-position: -910px -637px; + width: 90px; + height: 90px; +} +.broad_armor_warrior_4 { + background-image: url(spritesmith2.png); + background-position: -910px -728px; + width: 90px; + height: 90px; +} +.broad_armor_warrior_5 { + background-image: url(spritesmith2.png); + background-position: 0px -870px; + width: 90px; + height: 90px; +} +.broad_armor_wizard_1 { + background-image: url(spritesmith2.png); + background-position: -91px -870px; + width: 90px; + height: 90px; +} +.broad_armor_wizard_2 { + background-image: url(spritesmith2.png); + background-position: -182px -870px; + width: 90px; + height: 90px; +} +.broad_armor_wizard_3 { + background-image: url(spritesmith2.png); + background-position: -273px -870px; + width: 90px; + height: 90px; +} +.broad_armor_wizard_4 { + background-image: url(spritesmith2.png); + background-position: -364px -870px; + width: 90px; + height: 90px; +} +.broad_armor_wizard_5 { + background-image: url(spritesmith2.png); + background-position: -455px -870px; + width: 90px; + height: 90px; +} +.shop_armor_healer_1 { + background-image: url(spritesmith2.png); + background-position: -1476px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_healer_2 { + background-image: url(spritesmith2.png); + background-position: -1435px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_healer_3 { + background-image: url(spritesmith2.png); + background-position: -1394px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_healer_4 { + background-image: url(spritesmith2.png); + background-position: -1353px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_healer_5 { + background-image: url(spritesmith2.png); + background-position: -1312px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_rogue_1 { + background-image: url(spritesmith2.png); + background-position: -1271px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_rogue_2 { + background-image: url(spritesmith2.png); + background-position: -1230px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_rogue_3 { + background-image: url(spritesmith2.png); + background-position: -1189px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_rogue_4 { + background-image: url(spritesmith2.png); + background-position: -1148px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_rogue_5 { + background-image: url(spritesmith2.png); + background-position: -1107px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_special_0 { + background-image: url(spritesmith2.png); + background-position: -1066px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_special_1 { + background-image: url(spritesmith2.png); + background-position: -1025px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_special_2 { + background-image: url(spritesmith2.png); + background-position: -984px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_warrior_1 { + background-image: url(spritesmith2.png); + background-position: -943px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_warrior_2 { + background-image: url(spritesmith2.png); + background-position: -902px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_warrior_3 { + background-image: url(spritesmith2.png); + background-position: -861px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_warrior_4 { + background-image: url(spritesmith2.png); + background-position: -41px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_warrior_5 { + background-image: url(spritesmith2.png); + background-position: 0px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_wizard_1 { + background-image: url(spritesmith2.png); + background-position: -1507px -1457px; + width: 40px; + height: 40px; +} +.shop_armor_wizard_2 { + background-image: url(spritesmith2.png); + background-position: -1466px -1457px; + width: 40px; + height: 40px; +} +.shop_armor_wizard_3 { + background-image: url(spritesmith2.png); + background-position: -1425px -1457px; + width: 40px; + height: 40px; +} +.shop_armor_wizard_4 { + background-image: url(spritesmith2.png); + background-position: -1384px -1457px; + width: 40px; + height: 40px; +} +.shop_armor_wizard_5 { + background-image: url(spritesmith2.png); + background-position: -1343px -1457px; + width: 40px; + height: 40px; +} +.slim_armor_healer_1 { + background-image: url(spritesmith2.png); + background-position: -987px -961px; + width: 90px; + height: 90px; +} +.slim_armor_healer_2 { + background-image: url(spritesmith2.png); + background-position: -1092px 0px; + width: 90px; + height: 90px; +} +.slim_armor_healer_3 { + background-image: url(spritesmith2.png); + background-position: -1092px -91px; + width: 90px; + height: 90px; +} +.slim_armor_healer_4 { + background-image: url(spritesmith2.png); + background-position: -1092px -182px; + width: 90px; + height: 90px; +} +.slim_armor_healer_5 { + background-image: url(spritesmith2.png); + background-position: -1092px -273px; + width: 90px; + height: 90px; +} +.slim_armor_rogue_1 { + background-image: url(spritesmith2.png); + background-position: -1092px -364px; + width: 90px; + height: 90px; +} +.slim_armor_rogue_2 { + background-image: url(spritesmith2.png); + background-position: -1092px -455px; + width: 90px; + height: 90px; +} +.slim_armor_rogue_3 { + background-image: url(spritesmith2.png); + background-position: -1092px -546px; + width: 90px; + height: 90px; +} +.slim_armor_rogue_4 { + background-image: url(spritesmith2.png); + background-position: -1092px -637px; + width: 90px; + height: 90px; +} +.slim_armor_rogue_5 { + background-image: url(spritesmith2.png); + background-position: -1092px -728px; + width: 90px; + height: 90px; +} +.slim_armor_special_2 { + background-image: url(spritesmith2.png); + background-position: -1092px -819px; + width: 90px; + height: 90px; +} +.slim_armor_warrior_1 { + background-image: url(spritesmith2.png); + background-position: -1092px -910px; + width: 90px; + height: 90px; +} +.slim_armor_warrior_2 { + background-image: url(spritesmith2.png); + background-position: 0px -1052px; + width: 90px; + height: 90px; +} +.slim_armor_warrior_3 { + background-image: url(spritesmith2.png); + background-position: -91px -1052px; + width: 90px; + height: 90px; +} +.slim_armor_warrior_4 { + background-image: url(spritesmith2.png); + background-position: -182px -1052px; + width: 90px; + height: 90px; +} +.slim_armor_warrior_5 { + background-image: url(spritesmith2.png); + background-position: -273px -1052px; + width: 90px; + height: 90px; +} +.slim_armor_wizard_1 { + background-image: url(spritesmith2.png); + background-position: -364px -1052px; + width: 90px; + height: 90px; +} +.slim_armor_wizard_2 { + background-image: url(spritesmith2.png); + background-position: -455px -1052px; + width: 90px; + height: 90px; +} +.slim_armor_wizard_3 { + background-image: url(spritesmith2.png); + background-position: -546px -1052px; + width: 90px; + height: 90px; +} +.slim_armor_wizard_4 { + background-image: url(spritesmith2.png); + background-position: -637px -1052px; + width: 90px; + height: 90px; +} +.slim_armor_wizard_5 { + background-image: url(spritesmith2.png); + background-position: -728px -1052px; + width: 90px; + height: 90px; +} +.broad_armor_special_birthday { + background-image: url(spritesmith2.png); + background-position: -819px -1052px; + width: 90px; + height: 90px; +} +.broad_armor_special_birthday2015 { + background-image: url(spritesmith2.png); + background-position: -910px -1052px; + width: 90px; + height: 90px; +} +.shop_armor_special_birthday { + background-image: url(spritesmith2.png); + background-position: -1302px -1457px; + width: 40px; + height: 40px; +} +.shop_armor_special_birthday2015 { + background-image: url(spritesmith2.png); + background-position: -1261px -1457px; + width: 40px; + height: 40px; +} +.slim_armor_special_birthday { + background-image: url(spritesmith2.png); + background-position: -1183px -91px; + width: 90px; + height: 90px; +} +.slim_armor_special_birthday2015 { + background-image: url(spritesmith2.png); + background-position: -1183px -182px; + width: 90px; + height: 90px; +} +.broad_armor_special_fallHealer { + background-image: url(spritesmith2.png); + background-position: -1183px -273px; + width: 90px; + height: 90px; +} +.broad_armor_special_fallMage { + background-image: url(spritesmith2.png); + background-position: 0px -1143px; + width: 120px; + height: 90px; +} +.broad_armor_special_fallRogue { + background-image: url(spritesmith2.png); + background-position: -1183px -364px; + width: 105px; + height: 90px; +} +.broad_armor_special_fallWarrior { + background-image: url(spritesmith2.png); + background-position: -1183px -455px; + width: 90px; + height: 90px; +} +.head_special_fallHealer { + background-image: url(spritesmith2.png); + background-position: -1183px -546px; + width: 90px; + height: 90px; +} +.head_special_fallMage { + background-image: url(spritesmith2.png); + background-position: -121px -1143px; + width: 120px; + height: 90px; +} +.head_special_fallRogue { + background-image: url(spritesmith2.png); + background-position: -1183px -637px; + width: 105px; + height: 90px; +} +.head_special_fallWarrior { + background-image: url(spritesmith2.png); + background-position: -1183px -728px; + width: 90px; + height: 90px; +} +.shield_special_fallHealer { + background-image: url(spritesmith2.png); + background-position: -1183px -819px; + width: 90px; + height: 90px; +} +.shield_special_fallRogue { + background-image: url(spritesmith2.png); + background-position: -1183px -910px; + width: 105px; + height: 90px; +} +.shield_special_fallWarrior { + background-image: url(spritesmith2.png); + background-position: -1183px -1001px; + width: 90px; + height: 90px; +} +.shop_armor_special_fallHealer { + background-image: url(spritesmith2.png); + background-position: -1220px -1457px; + width: 40px; + height: 40px; +} +.shop_armor_special_fallMage { + background-image: url(spritesmith2.png); + background-position: -1179px -1457px; + width: 40px; + height: 40px; +} +.shop_armor_special_fallRogue { + background-image: url(spritesmith2.png); + background-position: -1138px -1457px; + width: 40px; + height: 40px; +} +.shop_armor_special_fallWarrior { + background-image: url(spritesmith2.png); + background-position: -1097px -1457px; + width: 40px; + height: 40px; +} +.shop_head_special_fallHealer { + background-image: url(spritesmith2.png); + background-position: -1056px -1457px; + width: 40px; + height: 40px; +} +.shop_head_special_fallMage { + background-image: url(spritesmith2.png); + background-position: -1015px -1457px; + width: 40px; + height: 40px; +} +.shop_head_special_fallRogue { + background-image: url(spritesmith2.png); + background-position: -974px -1457px; + width: 40px; + height: 40px; +} +.shop_head_special_fallWarrior { + background-image: url(spritesmith2.png); + background-position: -933px -1457px; + width: 40px; + height: 40px; +} +.shop_shield_special_fallHealer { + background-image: url(spritesmith2.png); + background-position: -892px -1457px; + width: 40px; + height: 40px; +} +.shop_shield_special_fallRogue { + background-image: url(spritesmith2.png); + background-position: -851px -1457px; + width: 40px; + height: 40px; +} +.shop_shield_special_fallWarrior { + background-image: url(spritesmith2.png); + background-position: -810px -1457px; + width: 40px; + height: 40px; +} +.shop_weapon_special_fallHealer { + background-image: url(spritesmith2.png); + background-position: -769px -1457px; + width: 40px; + height: 40px; +} +.shop_weapon_special_fallMage { + background-image: url(spritesmith2.png); + background-position: -1517px -1507px; + width: 40px; + height: 40px; +} +.shop_weapon_special_fallRogue { + background-image: url(spritesmith2.png); + background-position: -687px -1457px; + width: 40px; + height: 40px; +} +.shop_weapon_special_fallWarrior { + background-image: url(spritesmith2.png); + background-position: -646px -1457px; + width: 40px; + height: 40px; +} +.slim_armor_special_fallHealer { + background-image: url(spritesmith2.png); + background-position: -1295px -455px; + width: 90px; + height: 90px; +} +.slim_armor_special_fallMage { + background-image: url(spritesmith2.png); + background-position: 0px -1234px; + width: 120px; + height: 90px; +} +.slim_armor_special_fallRogue { + background-image: url(spritesmith2.png); + background-position: -121px -1234px; + width: 105px; + height: 90px; +} +.slim_armor_special_fallWarrior { + background-image: url(spritesmith2.png); + background-position: -91px -318px; + width: 90px; + height: 90px; +} +.weapon_special_fallHealer { + background-image: url(spritesmith2.png); + background-position: -1295px -637px; + width: 90px; + height: 90px; +} +.weapon_special_fallMage { + background-image: url(spritesmith2.png); + background-position: -227px -1234px; + width: 120px; + height: 90px; +} +.weapon_special_fallRogue { + background-image: url(spritesmith2.png); + background-position: -348px -1234px; + width: 105px; + height: 90px; +} +.weapon_special_fallWarrior { + background-image: url(spritesmith2.png); + background-position: -1295px -728px; + width: 90px; + height: 90px; +} +.broad_armor_special_gaymerx { + background-image: url(spritesmith2.png); + background-position: -1295px -819px; + width: 90px; + height: 90px; +} +.head_special_gaymerx { + background-image: url(spritesmith2.png); + background-position: -1295px -910px; + width: 90px; + height: 90px; +} +.shop_armor_special_gaymerx { + background-image: url(spritesmith2.png); + background-position: -1507px -1416px; + width: 40px; + height: 40px; +} +.shop_head_special_gaymerx { + background-image: url(spritesmith2.png); + background-position: -1466px -1416px; + width: 40px; + height: 40px; +} +.slim_armor_special_gaymerx { + background-image: url(spritesmith2.png); + background-position: -454px -1234px; + width: 90px; + height: 90px; +} +.back_mystery_201402 { + background-image: url(spritesmith2.png); + background-position: -545px -1234px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201402 { + background-image: url(spritesmith2.png); + background-position: -636px -1234px; + width: 90px; + height: 90px; +} +.head_mystery_201402 { + background-image: url(spritesmith2.png); + background-position: -727px -1234px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201402 { + background-image: url(spritesmith2.png); + background-position: -1425px -1416px; + width: 40px; + height: 40px; +} +.shop_back_mystery_201402 { + background-image: url(spritesmith2.png); + background-position: -1236px -1143px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201402 { + background-image: url(spritesmith2.png); + background-position: -1113px -1093px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201402 { + background-image: url(spritesmith2.png); + background-position: -1091px -1234px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201403 { + background-image: url(spritesmith2.png); + background-position: -1182px -1234px; + width: 90px; + height: 90px; +} +.headAccessory_mystery_201403 { + background-image: url(spritesmith2.png); + background-position: -1273px -1234px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201403 { + background-image: url(spritesmith2.png); + background-position: -1113px -1052px; + width: 40px; + height: 40px; +} +.shop_headAccessory_mystery_201403 { + background-image: url(spritesmith2.png); + background-position: -957px -911px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201403 { + background-image: url(spritesmith2.png); + background-position: -1386px -182px; + width: 90px; + height: 90px; +} +.back_mystery_201404 { + background-image: url(spritesmith2.png); + background-position: -1386px -273px; + width: 90px; + height: 90px; +} +.headAccessory_mystery_201404 { + background-image: url(spritesmith2.png); + background-position: -1386px -364px; + width: 90px; + height: 90px; +} +.shop_back_mystery_201404 { + background-image: url(spritesmith2.png); + background-position: -916px -911px; + width: 40px; + height: 40px; +} +.shop_headAccessory_mystery_201404 { + background-image: url(spritesmith2.png); + background-position: -957px -870px; + width: 40px; + height: 40px; +} +.broad_armor_mystery_201405 { + background-image: url(spritesmith2.png); + background-position: -1386px -637px; + width: 90px; + height: 90px; +} +.head_mystery_201405 { + background-image: url(spritesmith2.png); + background-position: -1386px -728px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201405 { + background-image: url(spritesmith2.png); + background-position: -916px -870px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201405 { + background-image: url(spritesmith2.png); + background-position: -496px -364px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201405 { + background-image: url(spritesmith2.png); + background-position: -1386px -1001px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201406 { + background-image: url(spritesmith2.png); + background-position: -364px -203px; + width: 90px; + height: 96px; +} +.head_mystery_201406 { + background-image: url(spritesmith2.png); + background-position: 0px -318px; + width: 90px; + height: 96px; +} +.shop_armor_mystery_201406 { + background-image: url(spritesmith2.png); + background-position: -455px -364px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201406 { + background-image: url(spritesmith2.png); + background-position: -587px -455px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201406 { + background-image: url(spritesmith2.png); + background-position: -364px -106px; + width: 90px; + height: 96px; +} +.broad_armor_mystery_201407 { + background-image: url(spritesmith2.png); + background-position: -273px -1325px; + width: 90px; + height: 90px; +} +.head_mystery_201407 { + background-image: url(spritesmith2.png); + background-position: -364px -1325px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201407 { + background-image: url(spritesmith2.png); + background-position: -546px -455px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201407 { + background-image: url(spritesmith2.png); + background-position: -678px -546px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201407 { + background-image: url(spritesmith2.png); + background-position: -637px -1325px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201408 { + background-image: url(spritesmith2.png); + background-position: -728px -1325px; + width: 90px; + height: 90px; +} +.head_mystery_201408 { + background-image: url(spritesmith2.png); + background-position: -819px -1325px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201408 { + background-image: url(spritesmith2.png); + background-position: -637px -546px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201408 { + background-image: url(spritesmith2.png); + background-position: -769px -637px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201408 { + background-image: url(spritesmith2.png); + background-position: -1092px -1325px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201409 { + background-image: url(spritesmith2.png); + background-position: -1183px -1325px; + width: 90px; + height: 90px; +} +.headAccessory_mystery_201409 { + background-image: url(spritesmith2.png); + background-position: -1274px -1325px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201409 { + background-image: url(spritesmith2.png); + background-position: -728px -637px; + width: 40px; + height: 40px; +} +.shop_headAccessory_mystery_201409 { + background-image: url(spritesmith2.png); + background-position: -1042px -910px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201409 { + background-image: url(spritesmith2.png); + background-position: -1477px -91px; + width: 90px; + height: 90px; +} +.back_mystery_201410 { + background-image: url(spritesmith2.png); + background-position: 0px -1416px; + width: 93px; + height: 90px; +} +.broad_armor_mystery_201410 { + background-image: url(spritesmith2.png); + background-position: -94px -1416px; + width: 93px; + height: 90px; +} +.shop_armor_mystery_201410 { + background-image: url(spritesmith2.png); + background-position: -1001px -910px; + width: 40px; + height: 40px; +} +.shop_back_mystery_201410 { + background-image: url(spritesmith2.png); + background-position: -1133px -1001px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201410 { + background-image: url(spritesmith2.png); + background-position: -188px -1416px; + width: 93px; + height: 90px; +} +.head_mystery_201411 { + background-image: url(spritesmith2.png); + background-position: -1477px -364px; + width: 90px; + height: 90px; +} +.shop_head_mystery_201411 { + background-image: url(spritesmith2.png); + background-position: -1092px -1001px; + width: 40px; + height: 40px; +} +.shop_weapon_mystery_201411 { + background-image: url(spritesmith2.png); + background-position: -1224px -1092px; + width: 40px; + height: 40px; +} +.weapon_mystery_201411 { + background-image: url(spritesmith2.png); + background-position: -1477px -637px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201412 { + background-image: url(spritesmith2.png); + background-position: -1477px -728px; + width: 90px; + height: 90px; +} +.head_mystery_201412 { + background-image: url(spritesmith2.png); + background-position: -1477px -819px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201412 { + background-image: url(spritesmith2.png); + background-position: -1183px -1092px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201412 { + background-image: url(spritesmith2.png); + background-position: -1518px -1365px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201412 { + background-image: url(spritesmith2.png); + background-position: -1477px -1092px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201501 { + background-image: url(spritesmith2.png); + background-position: -1477px -1183px; + width: 90px; + height: 90px; +} +.head_mystery_201501 { + background-image: url(spritesmith2.png); + background-position: -1477px -1274px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201501 { + background-image: url(spritesmith2.png); + background-position: -728px -1457px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201501 { + background-image: url(spritesmith2.png); + background-position: -1477px -1365px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201501 { + background-image: url(spritesmith2.png); + background-position: -464px -1416px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_301404 { + background-image: url(spritesmith2.png); + background-position: -373px -1416px; + width: 90px; + height: 90px; +} +.eyewear_mystery_301404 { + background-image: url(spritesmith2.png); + background-position: -282px -1416px; + width: 90px; + height: 90px; +} +.head_mystery_301404 { + background-image: url(spritesmith2.png); + background-position: -1477px -1001px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_301404 { + background-image: url(spritesmith2.png); + background-position: -1386px -1274px; + width: 40px; + height: 40px; +} +.shop_eyewear_mystery_301404 { + background-image: url(spritesmith2.png); + background-position: -1427px -1274px; + width: 40px; + height: 40px; +} +.shop_head_mystery_301404 { + background-image: url(spritesmith2.png); + background-position: -1295px -1183px; + width: 40px; + height: 40px; +} +.shop_weapon_mystery_301404 { + background-image: url(spritesmith2.png); + background-position: -1336px -1183px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_301404 { + background-image: url(spritesmith2.png); + background-position: -1477px -910px; + width: 90px; + height: 90px; +} +.weapon_mystery_301404 { + background-image: url(spritesmith2.png); + background-position: -1477px -546px; + width: 90px; + height: 90px; +} +.eyewear_mystery_301405 { + background-image: url(spritesmith2.png); + background-position: -1477px -455px; + width: 90px; + height: 90px; +} +.headAccessory_mystery_301405 { + background-image: url(spritesmith2.png); + background-position: -1477px -273px; + width: 90px; + height: 90px; +} +.head_mystery_301405 { + background-image: url(spritesmith2.png); + background-position: -1477px -182px; + width: 90px; + height: 90px; +} +.shield_mystery_301405 { + background-image: url(spritesmith2.png); + background-position: -1477px 0px; + width: 90px; + height: 90px; +} +.shop_eyewear_mystery_301405 { + background-image: url(spritesmith2.png); + background-position: -910px -819px; + width: 40px; + height: 40px; +} +.shop_headAccessory_mystery_301405 { + background-image: url(spritesmith2.png); + background-position: -951px -819px; + width: 40px; + height: 40px; +} +.shop_head_mystery_301405 { + background-image: url(spritesmith2.png); + background-position: -819px -728px; + width: 40px; + height: 40px; +} +.shop_shield_mystery_301405 { + background-image: url(spritesmith2.png); + background-position: -860px -728px; + width: 40px; + height: 40px; +} +.broad_armor_special_springHealer { + background-image: url(spritesmith2.png); + background-position: -1365px -1325px; + width: 90px; + height: 90px; +} +.broad_armor_special_springMage { + background-image: url(spritesmith2.png); + background-position: -1001px -1325px; + width: 90px; + height: 90px; +} +.broad_armor_special_springRogue { + background-image: url(spritesmith2.png); + background-position: -910px -1325px; + width: 90px; + height: 90px; +} +.broad_armor_special_springWarrior { + background-image: url(spritesmith2.png); + background-position: -546px -1325px; + width: 90px; + height: 90px; +} +.headAccessory_special_springHealer { + background-image: url(spritesmith2.png); + background-position: -455px -1325px; + width: 90px; + height: 90px; +} +.headAccessory_special_springMage { + background-image: url(spritesmith2.png); + background-position: -91px -1325px; + width: 90px; + height: 90px; +} +.headAccessory_special_springRogue { + background-image: url(spritesmith2.png); + background-position: 0px -1325px; + width: 90px; + height: 90px; +} +.headAccessory_special_springWarrior { + background-image: url(spritesmith2.png); + background-position: -1386px -910px; + width: 90px; + height: 90px; +} +.head_special_springHealer { + background-image: url(spritesmith2.png); + background-position: -1386px -819px; + width: 90px; + height: 90px; +} +.head_special_springMage { + background-image: url(spritesmith2.png); + background-position: -1386px -546px; + width: 90px; + height: 90px; +} +.head_special_springRogue { + background-image: url(spritesmith2.png); + background-position: -1386px -455px; + width: 90px; + height: 90px; +} +.head_special_springWarrior { + background-image: url(spritesmith2.png); + background-position: -1386px -91px; + width: 90px; + height: 90px; +} +.shield_special_springHealer { + background-image: url(spritesmith2.png); + background-position: -1386px 0px; + width: 90px; + height: 90px; +} +.shield_special_springRogue { + background-image: url(spritesmith2.png); + background-position: -1000px -1234px; + width: 90px; + height: 90px; +} +.shield_special_springWarrior { + background-image: url(spritesmith2.png); + background-position: -909px -1234px; + width: 90px; + height: 90px; +} +.shop_armor_special_springHealer { + background-image: url(spritesmith2.png); + background-position: -1236px -1184px; + width: 40px; + height: 40px; +} +.shop_armor_special_springMage { + background-image: url(spritesmith2.png); + background-position: -646px -1416px; + width: 40px; + height: 40px; +} +.shop_armor_special_springRogue { + background-image: url(spritesmith2.png); + background-position: -687px -1416px; + width: 40px; + height: 40px; +} +.shop_armor_special_springWarrior { + background-image: url(spritesmith2.png); + background-position: -728px -1416px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_springHealer { + background-image: url(spritesmith2.png); + background-position: -769px -1416px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_springMage { + background-image: url(spritesmith2.png); + background-position: -810px -1416px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_springRogue { + background-image: url(spritesmith2.png); + background-position: -851px -1416px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_springWarrior { + background-image: url(spritesmith2.png); + background-position: -892px -1416px; + width: 40px; + height: 40px; +} +.shop_head_special_springHealer { + background-image: url(spritesmith2.png); + background-position: -933px -1416px; + width: 40px; + height: 40px; +} +.shop_head_special_springMage { + background-image: url(spritesmith2.png); + background-position: -974px -1416px; + width: 40px; + height: 40px; +} +.shop_head_special_springRogue copy { + background-image: url(spritesmith2.png); + background-position: -1015px -1416px; + width: 40px; + height: 40px; +} +.shop_head_special_springRogue { + background-image: url(spritesmith2.png); + background-position: -1056px -1416px; + width: 40px; + height: 40px; +} +.shop_head_special_springWarrior { + background-image: url(spritesmith2.png); + background-position: -1097px -1416px; + width: 40px; + height: 40px; +} +.shop_shield_special_springHealer { + background-image: url(spritesmith2.png); + background-position: -1138px -1416px; + width: 40px; + height: 40px; +} +.shop_shield_special_springRogue { + background-image: url(spritesmith2.png); + background-position: -1179px -1416px; + width: 40px; + height: 40px; +} +.shop_shield_special_springWarrior { + background-image: url(spritesmith2.png); + background-position: -1220px -1416px; + width: 40px; + height: 40px; +} +.shop_weapon_special_springHealer { + background-image: url(spritesmith2.png); + background-position: -1261px -1416px; + width: 40px; + height: 40px; +} +.shop_weapon_special_springMage { + background-image: url(spritesmith2.png); + background-position: -1302px -1416px; + width: 40px; + height: 40px; +} +.shop_weapon_special_springRogue { + background-image: url(spritesmith2.png); + background-position: -1343px -1416px; + width: 40px; + height: 40px; +} +.shop_weapon_special_springWarrior { + background-image: url(spritesmith2.png); + background-position: -1384px -1416px; + width: 40px; + height: 40px; +} +.slim_armor_special_springHealer { + background-image: url(spritesmith2.png); + background-position: -818px -1234px; + width: 90px; + height: 90px; +} +.slim_armor_special_springMage { + background-image: url(spritesmith2.png); + background-position: -1295px -1092px; + width: 90px; + height: 90px; +} +.slim_armor_special_springRogue { + background-image: url(spritesmith2.png); + background-position: -1295px -1001px; + width: 90px; + height: 90px; +} +.slim_armor_special_springWarrior { + background-image: url(spritesmith2.png); + background-position: -1295px -364px; + width: 90px; + height: 90px; +} +.weapon_special_springHealer { + background-image: url(spritesmith2.png); + background-position: -1295px -273px; + width: 90px; + height: 90px; +} +.weapon_special_springMage { + background-image: url(spritesmith2.png); + background-position: -1295px -182px; + width: 90px; + height: 90px; +} +.weapon_special_springRogue { + background-image: url(spritesmith2.png); + background-position: -1295px -91px; + width: 90px; + height: 90px; +} +.weapon_special_springWarrior { + background-image: url(spritesmith2.png); + background-position: -1295px 0px; + width: 90px; + height: 90px; +} +.body_special_summerHealer { + background-image: url(spritesmith2.png); + background-position: -364px 0px; + width: 90px; + height: 105px; +} +.body_special_summerMage { + background-image: url(spritesmith2.png); + background-position: -273px -212px; + width: 90px; + height: 105px; +} +.broad_armor_special_summerHealer { + background-image: url(spritesmith2.png); + background-position: -182px -212px; + width: 90px; + height: 105px; +} +.broad_armor_special_summerMage { + background-image: url(spritesmith2.png); + background-position: -91px -212px; + width: 90px; + height: 105px; +} +.broad_armor_special_summerRogue { + background-image: url(spritesmith2.png); + background-position: -760px -1143px; + width: 111px; + height: 90px; +} +.broad_armor_special_summerWarrior { + background-image: url(spritesmith2.png); + background-position: -648px -1143px; + width: 111px; + height: 90px; +} +.eyewear_special_summerRogue { + background-image: url(spritesmith2.png); + background-position: -536px -1143px; + width: 111px; + height: 90px; +} +.eyewear_special_summerWarrior { + background-image: url(spritesmith2.png); + background-position: -424px -1143px; + width: 111px; + height: 90px; +} +.head_special_summerHealer { + background-image: url(spritesmith2.png); + background-position: 0px -212px; + width: 90px; + height: 105px; +} +.head_special_summerMage { + background-image: url(spritesmith2.png); + background-position: -91px 0px; + width: 90px; + height: 105px; +} +.head_special_summerRogue { + background-image: url(spritesmith2.png); + background-position: -1183px 0px; + width: 111px; + height: 90px; +} +.head_special_summerWarrior { + background-image: url(spritesmith2.png); + background-position: -1001px -1052px; + width: 111px; + height: 90px; +} +.Healer_Summer { + background-image: url(spritesmith2.png); + background-position: 0px 0px; + width: 90px; + height: 105px; +} +.Mage_Summer { + background-image: url(spritesmith2.png); + background-position: -182px -106px; + width: 90px; + height: 105px; +} +.SummerRogue14 { + background-image: url(spritesmith2.png); + background-position: -784px -961px; + width: 111px; + height: 90px; +} +.SummerWarrior14 { + background-image: url(spritesmith2.png); + background-position: -672px -961px; + width: 111px; + height: 90px; +} +.shield_special_summerHealer { + background-image: url(spritesmith2.png); + background-position: -91px -106px; + width: 90px; + height: 105px; +} +.shield_special_summerRogue { + background-image: url(spritesmith2.png); + background-position: -560px -961px; + width: 111px; + height: 90px; +} +.shield_special_summerWarrior { + background-image: url(spritesmith2.png); + background-position: -448px -961px; + width: 111px; + height: 90px; +} +.shop_armor_special_summerHealer { + background-image: url(spritesmith2.png); + background-position: -82px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_special_summerMage { + background-image: url(spritesmith2.png); + background-position: -123px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_special_summerRogue { + background-image: url(spritesmith2.png); + background-position: -164px -1507px; + width: 40px; + height: 40px; +} +.shop_armor_special_summerWarrior { + background-image: url(spritesmith2.png); + background-position: -205px -1507px; + width: 40px; + height: 40px; +} +.shop_body_special_summerHealer { + background-image: url(spritesmith2.png); + background-position: -246px -1507px; + width: 40px; + height: 40px; +} +.shop_body_special_summerMage { + background-image: url(spritesmith2.png); + background-position: -287px -1507px; + width: 40px; + height: 40px; +} +.shop_eyewear_special_summerRogue { + background-image: url(spritesmith2.png); + background-position: -328px -1507px; + width: 40px; + height: 40px; +} +.shop_eyewear_special_summerWarrior { + background-image: url(spritesmith2.png); + background-position: -369px -1507px; + width: 40px; + height: 40px; +} +.shop_head_special_summerHealer { + background-image: url(spritesmith2.png); + background-position: -410px -1507px; + width: 40px; + height: 40px; +} +.shop_head_special_summerMage { + background-image: url(spritesmith2.png); + background-position: -451px -1507px; + width: 40px; + height: 40px; +} +.shop_head_special_summerRogue { + background-image: url(spritesmith2.png); + background-position: -492px -1507px; + width: 40px; + height: 40px; +} +.shop_head_special_summerWarrior { + background-image: url(spritesmith2.png); + background-position: -533px -1507px; + width: 40px; + height: 40px; +} +.shop_shield_special_summerHealer { + background-image: url(spritesmith2.png); + background-position: -574px -1507px; + width: 40px; + height: 40px; +} +.shop_shield_special_summerRogue { + background-image: url(spritesmith2.png); + background-position: -615px -1507px; + width: 40px; + height: 40px; +} +.shop_shield_special_summerWarrior { + background-image: url(spritesmith2.png); + background-position: -656px -1507px; + width: 40px; + height: 40px; +} +.shop_weapon_special_summerHealer { + background-image: url(spritesmith2.png); + background-position: -697px -1507px; + width: 40px; + height: 40px; +} +.shop_weapon_special_summerMage { + background-image: url(spritesmith2.png); + background-position: -738px -1507px; + width: 40px; + height: 40px; +} +.shop_weapon_special_summerRogue { + background-image: url(spritesmith2.png); + background-position: -779px -1507px; + width: 40px; + height: 40px; +} +.shop_weapon_special_summerWarrior { + background-image: url(spritesmith2.png); + background-position: -820px -1507px; + width: 40px; + height: 40px; +} +.slim_armor_special_summerHealer { + background-image: url(spritesmith2.png); + background-position: 0px -106px; + width: 90px; + height: 105px; +} +.slim_armor_special_summerMage { + background-image: url(spritesmith2.png); + background-position: -182px 0px; + width: 90px; + height: 105px; +} +.slim_armor_special_summerRogue { + background-image: url(spritesmith2.png); + background-position: -336px -961px; + width: 111px; + height: 90px; +} +.slim_armor_special_summerWarrior { + background-image: url(spritesmith2.png); + background-position: -224px -961px; + width: 111px; + height: 90px; +} +.weapon_special_summerHealer { + background-image: url(spritesmith2.png); + background-position: -273px 0px; + width: 90px; + height: 105px; +} +.weapon_special_summerMage { + background-image: url(spritesmith2.png); + background-position: -273px -106px; + width: 90px; + height: 105px; +} +.weapon_special_summerRogue { + background-image: url(spritesmith2.png); + background-position: -112px -961px; + width: 111px; + height: 90px; +} +.weapon_special_summerWarrior { + background-image: url(spritesmith2.png); + background-position: 0px -961px; + width: 111px; + height: 90px; +} +.broad_armor_special_candycane { + background-image: url(spritesmith2.png); + background-position: -1001px -273px; + width: 90px; + height: 90px; +} +.broad_armor_special_ski { + background-image: url(spritesmith2.png); + background-position: -1001px -182px; + width: 90px; + height: 90px; +} +.broad_armor_special_snowflake { + background-image: url(spritesmith2.png); + background-position: -1001px -91px; + width: 90px; + height: 90px; +} +.broad_armor_special_winter2015Healer { + background-image: url(spritesmith2.png); + background-position: -1001px 0px; + width: 90px; + height: 90px; +} +.broad_armor_special_winter2015Mage { + background-image: url(spritesmith2.png); + background-position: -825px -870px; + width: 90px; + height: 90px; +} +.broad_armor_special_winter2015Rogue { + background-image: url(spritesmith2.png); + background-position: -728px -870px; + width: 96px; + height: 90px; +} +.broad_armor_special_winter2015Warrior { + background-image: url(spritesmith2.png); + background-position: -637px -870px; + width: 90px; + height: 90px; +} +.broad_armor_special_yeti { + background-image: url(spritesmith2.png); + background-position: -546px -870px; + width: 90px; + height: 90px; +} +.head_special_candycane { + background-image: url(spritesmith2.png); + background-position: -555px -1416px; + width: 90px; + height: 90px; +} diff --git a/common/dist/sprites/spritesmith2.png b/common/dist/sprites/spritesmith2.png index 1d49597828..91826da1f0 100644 Binary files a/common/dist/sprites/spritesmith2.png and b/common/dist/sprites/spritesmith2.png differ diff --git a/common/dist/sprites/spritesmith3.css b/common/dist/sprites/spritesmith3.css index 0e52e8f893..90bfcd03d3 100644 --- a/common/dist/sprites/spritesmith3.css +++ b/common/dist/sprites/spritesmith3.css @@ -1 +1,2226 @@ -.head_special_nye{background-image:url(spritesmith3.png);background-position:-1442px -364px;width:90px;height:90px}.head_special_nye2014{background-position:-1199px -1147px}.head_special_nye2014,.head_special_ski{background-image:url(spritesmith3.png);width:90px;height:90px}.head_special_ski{background-position:-1487px -182px}.head_special_snowflake{background-position:-1361px -606px}.head_special_snowflake,.head_special_winter2015Healer{background-image:url(spritesmith3.png);width:90px;height:90px}.head_special_winter2015Healer{background-position:-602px -1371px}.head_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1108px -1121px;width:90px;height:90px}.head_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-1543px -455px;width:96px;height:90px}.head_special_winter2015Warrior{background-position:-364px -1593px}.head_special_winter2015Warrior,.head_special_yeti{background-image:url(spritesmith3.png);width:90px;height:90px}.head_special_yeti{background-position:-979px -972px}.shield_special_ski{background-position:-406px -1320px;width:104px}.shield_special_ski,.shield_special_snowflake{background-image:url(spritesmith3.png);height:90px}.shield_special_snowflake{background-position:-1270px -553px;width:90px}.shield_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1387px -91px;width:90px;height:90px}.shield_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-732px -1183px;width:96px;height:90px}.shield_special_winter2015Warrior{background-position:-1478px -91px}.shield_special_winter2015Warrior,.shield_special_yeti{background-image:url(spritesmith3.png);width:90px;height:90px}.shield_special_yeti{background-position:-469px -1411px}.shop_armor_special_candycane{background-image:url(spritesmith3.png);background-position:-543px -1164px;width:40px;height:40px}.shop_armor_special_ski{background-position:-584px -1164px}.shop_armor_special_ski,.shop_armor_special_snowflake{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_armor_special_snowflake{background-position:-1444px -1247px}.shop_armor_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1064px -1600px;width:40px;height:40px}.shop_armor_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1870px -446px;width:40px;height:40px}.shop_armor_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-1908px -246px;width:40px;height:40px}.shop_armor_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-123px -1920px;width:40px;height:40px}.shop_armor_special_yeti{background-position:-867px -1718px}.shop_armor_special_yeti,.shop_head_special_candycane{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_special_candycane{background-position:-164px -1920px}.shop_head_special_nye{background-position:-418px -1880px}.shop_head_special_nye,.shop_head_special_nye2014{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_special_nye2014{background-position:-1619px -1042px}.shop_head_special_ski{background-position:-1278px -1440px}.shop_head_special_ski,.shop_head_special_snowflake{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_special_snowflake{background-position:-1506px -1198px}.shop_head_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1578px -1096px;width:40px;height:40px}.shop_head_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1908px -205px;width:40px;height:40px}.shop_head_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-1896px -290px;width:40px;height:40px}.shop_head_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-1660px -960px;width:40px;height:40px}.shop_head_special_yeti{background-image:url(spritesmith3.png);background-position:-1786px -693px;width:40px;height:40px}.shop_shield_special_ski{background-position:-1908px -164px}.shop_shield_special_ski,.shop_shield_special_snowflake{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_shield_special_snowflake{background-position:-1870px -405px}.shop_shield_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1203px -1487px;width:40px;height:40px}.shop_shield_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-634px -1804px;width:40px;height:40px}.shop_shield_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-675px -1789px;width:40px;height:40px}.shop_shield_special_yeti{background-position:-1303px -1399px}.shop_shield_special_yeti,.shop_weapon_special_candycane{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_special_candycane{background-position:-1724px -826px}.shop_weapon_special_ski{background-position:-1392px -1310px}.shop_weapon_special_ski,.shop_weapon_special_snowflake{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_special_snowflake{background-position:-1351px -1351px}.shop_weapon_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1520px -1157px;width:40px;height:40px}.shop_weapon_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1023px -1611px;width:40px;height:40px}.shop_weapon_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-1904px -123px;width:40px;height:40px}.shop_weapon_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-928px -1666px;width:40px;height:40px}.shop_weapon_special_yeti{background-image:url(spritesmith3.png);background-position:-1121px -1542px;width:40px;height:40px}.slim_armor_special_candycane{background-image:url(spritesmith3.png);background-position:-1543px -546px;width:90px;height:90px}.slim_armor_special_ski{background-position:-1290px -1008px}.slim_armor_special_ski,.slim_armor_special_snowflake{background-image:url(spritesmith3.png);width:90px;height:90px}.slim_armor_special_snowflake{background-position:-742px -1462px}.slim_armor_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1108px -1212px;width:90px;height:90px}.slim_armor_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1651px 0;width:90px;height:90px}.slim_armor_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-597px -1553px;width:96px;height:90px}.slim_armor_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-1624px -364px;width:90px;height:90px}.slim_armor_special_yeti{background-position:-1296px -151px}.slim_armor_special_yeti,.weapon_special_candycane{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_special_candycane{background-position:-729px -1092px}.weapon_special_ski{background-position:-888px -972px}.weapon_special_ski,.weapon_special_snowflake{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_special_snowflake{background-position:-1179px -601px}.weapon_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1305px -242px;width:90px;height:90px}.weapon_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1260px -462px;width:90px;height:90px}.weapon_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-1044px -848px;width:96px;height:90px}.weapon_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-1305px -333px;width:90px;height:90px}.weapon_special_yeti{background-position:-641px -1189px}.weapon_special_yeti,.back_special_wondercon_black{background-image:url(spritesmith3.png);width:90px;height:90px}.back_special_wondercon_black{background-position:0 -1351px}.back_special_wondercon_red{background-position:-1354px 0}.back_special_wondercon_red,.body_special_wondercon_black{background-image:url(spritesmith3.png);width:90px;height:90px}.body_special_wondercon_black{background-position:-91px -1351px}.body_special_wondercon_gold{background-position:-315px -1320px}.body_special_wondercon_gold,.body_special_wondercon_red{background-image:url(spritesmith3.png);width:90px;height:90px}.body_special_wondercon_red{background-position:-196px -1344px}.eyewear_special_wondercon_black{background-image:url(spritesmith3.png);background-position:-820px -1092px;width:90px;height:90px}.eyewear_special_wondercon_red{background-image:url(spritesmith3.png);background-position:-1179px -692px;width:90px;height:90px}.shop_back_special_wondercon_black{background-image:url(spritesmith3.png);background-position:-826px -1718px;width:40px;height:40px}.shop_back_special_wondercon_red{background-image:url(spritesmith3.png);background-position:-785px -1737px;width:40px;height:40px}.shop_body_special_wondercon_black{background-image:url(spritesmith3.png);background-position:-1795px -641px;width:40px;height:40px}.shop_body_special_wondercon_gold{background-image:url(spritesmith3.png);background-position:-1904px -82px;width:40px;height:40px}.shop_body_special_wondercon_red{background-image:url(spritesmith3.png);background-position:-377px -1868px;width:40px;height:40px}.shop_eyewear_special_wondercon_black{background-image:url(spritesmith3.png);background-position:-1619px -1001px;width:40px;height:40px}.shop_eyewear_special_wondercon_red{background-image:url(spritesmith3.png);background-position:-566px -1817px;width:40px;height:40px}.head_0{background-position:-911px -1063px;width:90px;height:90px}.head_0,.customize-option.head_0{background-image:url(spritesmith3.png)}.customize-option.head_0{background-position:-936px -1078px;width:60px;height:60px}.head_healer_1{background-position:-1162px -783px}.head_healer_1,.head_healer_2{background-image:url(spritesmith3.png);width:90px;height:90px}.head_healer_2{background-position:-1396px -182px}.head_healer_3{background-position:-511px -1320px}.head_healer_3,.head_healer_4{background-image:url(spritesmith3.png);width:90px;height:90px}.head_healer_4{background-position:-1351px -424px}.head_healer_5{background-position:-1396px -273px}.head_healer_5,.head_rogue_1{background-image:url(spritesmith3.png);width:90px;height:90px}.head_rogue_1{background-position:-1070px -939px}.head_rogue_2{background-position:-1270px -644px}.head_rogue_2,.head_rogue_3{background-image:url(spritesmith3.png);width:90px;height:90px}.head_rogue_3{background-position:-641px -1280px}.head_rogue_4{background-position:-287px -1411px}.head_rogue_4,.head_rogue_5{background-image:url(spritesmith3.png);width:90px;height:90px}.head_rogue_5{background-position:0 -1442px}.head_special_2{background-position:-829px -1183px}.head_special_2,.head_warrior_1{background-image:url(spritesmith3.png);width:90px;height:90px}.head_warrior_1{background-position:-91px -1442px}.head_warrior_2{background-position:-1445px 0}.head_warrior_2,.head_warrior_3{background-image:url(spritesmith3.png);width:90px;height:90px}.head_warrior_3{background-position:-182px -1435px}.head_warrior_4{background-position:-1161px -874px}.head_warrior_4,.head_warrior_5{background-image:url(spritesmith3.png);width:90px;height:90px}.head_warrior_5{background-position:-1361px -515px}.head_wizard_1{background-position:-378px -1411px}.head_wizard_1,.head_wizard_2{background-image:url(spritesmith3.png);width:90px;height:90px}.head_wizard_2{background-position:-1002px -1063px}.head_wizard_3{background-position:-1270px -735px}.head_wizard_3,.head_wizard_4{background-image:url(spritesmith3.png);width:90px;height:90px}.head_wizard_4{background-position:-732px -1274px}.head_wizard_5{background-position:-920px -1154px;width:90px;height:90px}.head_wizard_5,.shop_head_healer_1{background-image:url(spritesmith3.png)}.shop_head_healer_1{background-position:-295px -1879px;width:40px;height:40px}.shop_head_healer_2{background-position:-525px -1828px}.shop_head_healer_2,.shop_head_healer_3{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_healer_3{background-position:-1829px -518px}.shop_head_healer_4{background-position:-1815px -559px}.shop_head_healer_4,.shop_head_healer_5{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_healer_5{background-position:0 -1899px}.shop_head_rogue_1{background-position:-1578px -1055px}.shop_head_rogue_1,.shop_head_rogue_2{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_rogue_2{background-position:-336px -1868px}.shop_head_rogue_3{background-position:-1465px -1206px}.shop_head_rogue_3,.shop_head_rogue_4{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_rogue_4{background-position:-1080px -1559px}.shop_head_rogue_5{background-position:-254px -1879px}.shop_head_rogue_5,.shop_head_special_0{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_special_0{background-position:-459px -1839px}.shop_head_special_1{background-position:-883px -1677px}.shop_head_special_1,.shop_head_special_2{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_special_2{background-position:-1657px -919px}.shop_head_warrior_1{background-position:-1724px -785px}.shop_head_warrior_1,.shop_head_warrior_2{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_warrior_2{background-position:-82px -1892px}.shop_head_warrior_3{background-position:-502px -1164px}.shop_head_warrior_3,.shop_head_warrior_4{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_warrior_4{background-position:-1237px -1433px}.shop_head_warrior_5{background-position:-1529px -1116px}.shop_head_warrior_5,.shop_head_wizard_1{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_wizard_1{background-position:-1795px -600px}.shop_head_wizard_2{background-position:-969px -1625px}.shop_head_wizard_2,.shop_head_wizard_3{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_wizard_3{background-position:-213px -1879px}.shop_head_wizard_4{background-position:-1829px -477px}.shop_head_wizard_4,.shop_head_wizard_5{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_head_wizard_5{background-position:-744px -1737px}.shield_healer_1{background-image:url(spritesmith3.png);background-position:-1253px -826px;width:90px;height:90px}.shield_healer_2{background-position:-1093px -1030px}.shield_healer_2,.shield_healer_3{background-image:url(spritesmith3.png);width:90px;height:90px}.shield_healer_3{background-position:-1487px -273px}.shield_healer_4{background-position:-823px -1274px}.shield_healer_4,.shield_healer_5{background-image:url(spritesmith3.png);width:90px;height:90px}.shield_healer_5{background-position:-1452px -455px}.shield_rogue_0{background-position:-273px -1502px;width:90px}.shield_rogue_0,.shield_rogue_1{background-image:url(spritesmith3.png);height:90px}.shield_rogue_1{background-position:-1184px -965px;width:103px}.shield_rogue_2{background-position:-1361px -697px;width:103px}.shield_rogue_2,.shield_rogue_3{background-image:url(spritesmith3.png);height:90px}.shield_rogue_3{background-position:0 -1533px;width:114px}.shield_rogue_4{background-position:-1011px -1154px;width:96px}.shield_rogue_4,.shield_rogue_5{background-image:url(spritesmith3.png);height:90px}.shield_rogue_5{background-position:-1536px 0;width:114px}.shield_rogue_6{background-position:-693px -1371px;width:114px}.shield_rogue_6,.shield_special_1{background-image:url(spritesmith3.png);height:90px}.shield_special_1{background-position:-182px -1526px;width:90px}.shield_special_goldenknight{background-position:-364px -1502px;width:111px}.shield_special_goldenknight,.shield_warrior_1{background-image:url(spritesmith3.png);height:90px}.shield_warrior_1{background-position:-920px -1245px;width:90px}.shield_warrior_2{background-position:-1452px -546px}.shield_warrior_2,.shield_warrior_3{background-image:url(spritesmith3.png);width:90px;height:90px}.shield_warrior_3{background-position:-560px -1462px}.shield_warrior_4{background-position:-1569px -91px}.shield_warrior_4,.shield_warrior_5{background-image:url(spritesmith3.png);width:90px;height:90px}.shield_warrior_5{background-position:-1361px -788px}.shop_shield_healer_1{background-image:url(spritesmith3.png);background-position:-1737px -744px;width:40px;height:40px}.shop_shield_healer_2{background-position:-1162px -1490px}.shop_shield_healer_2,.shop_shield_healer_3{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_shield_healer_3{background-position:-41px -1888px}.shop_shield_healer_4{background-position:-172px -1879px}.shop_shield_healer_4,.shop_shield_healer_5{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_shield_healer_5{background-position:-418px -1839px}.shop_shield_rogue_0{background-position:-1403px -1258px}.shop_shield_rogue_0,.shop_shield_rogue_1{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_shield_rogue_1{background-position:-131px -1879px}.shop_shield_rogue_2{background-position:-1867px -249px}.shop_shield_rogue_2,.shop_shield_rogue_3{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_shield_rogue_3{background-position:-1855px -323px}.shop_shield_rogue_4{background-position:-1882px -41px}.shop_shield_rogue_4,.shop_shield_rogue_5{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_shield_rogue_5{background-position:-1619px -960px}.shop_shield_rogue_6{background-position:-1303px -1358px}.shop_shield_rogue_6,.shop_shield_special_0{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_shield_special_0{background-position:-1882px 0}.shop_shield_special_1{background-position:-1351px -1310px}.shop_shield_special_1,.shop_shield_special_goldenknight{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_shield_special_goldenknight{background-position:-1829px -436px}.shop_shield_warrior_1{background-position:-1867px -208px}.shop_shield_warrior_1,.shop_shield_warrior_2{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_shield_warrior_2{background-position:-686px -1748px}.shop_shield_warrior_3{background-position:-1745px -693px}.shop_shield_warrior_3,.shop_shield_warrior_4{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_shield_warrior_4{background-position:-1196px -1446px}.shop_shield_warrior_5{background-position:-842px -1677px}.shop_shield_warrior_5,.shop_weapon_healer_0{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_healer_0{background-position:-1578px -1014px}.shop_weapon_healer_1{background-position:-1537px -1075px}.shop_weapon_healer_1,.shop_weapon_healer_2{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_healer_2{background-position:-1867px -167px}.shop_weapon_healer_3{background-position:-1023px -1570px}.shop_weapon_healer_3,.shop_weapon_healer_4{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_healer_4{background-position:-634px -1763px}.shop_weapon_healer_5{background-position:-1121px -1501px}.shop_weapon_healer_5,.shop_weapon_healer_6{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_healer_6{background-position:-593px -1776px}.shop_weapon_rogue_0{background-position:-928px -1625px}.shop_weapon_rogue_0,.shop_weapon_rogue_1{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_rogue_1{background-position:-1754px -652px}.shop_weapon_rogue_2{background-position:-1262px -1381px}.shop_weapon_rogue_2,.shop_weapon_rogue_3{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_rogue_3{background-position:-785px -1696px}.shop_weapon_rogue_4{background-position:-1424px -1206px}.shop_weapon_rogue_4,.shop_weapon_rogue_5{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_rogue_5{background-position:-377px -1827px}.shop_weapon_rogue_6{background-position:-1080px -1518px}.shop_weapon_rogue_6,.shop_weapon_special_0{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_special_0{background-position:-525px -1787px}.shop_weapon_special_1{background-position:-1683px -796px}.shop_weapon_special_1,.shop_weapon_special_2{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_special_2{background-position:-1774px -559px}.shop_weapon_special_3{background-position:-1616px -919px}.shop_weapon_special_3,.shop_weapon_special_critical{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_special_critical{background-position:0 -1858px}.shop_weapon_warrior_0{background-position:-336px -1827px}.shop_weapon_warrior_0,.shop_weapon_warrior_1{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_warrior_1{background-position:-1488px -1112px}.shop_weapon_warrior_2{background-position:-1754px -611px}.shop_weapon_warrior_2,.shop_weapon_warrior_3{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_warrior_3{background-position:-90px -1851px}.shop_weapon_warrior_4{background-position:-1479px -1153px}.shop_weapon_warrior_4,.shop_weapon_warrior_5{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_warrior_5{background-position:-1155px -1449px}.shop_weapon_warrior_6{background-position:-1537px -1034px}.shop_weapon_warrior_6,.shop_weapon_wizard_0{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_wizard_0{background-position:-1696px -744px}.shop_weapon_wizard_1{background-position:-593px -1735px}.shop_weapon_wizard_1,.shop_weapon_wizard_2{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_wizard_2{background-position:-49px -1806px}.shop_weapon_wizard_3{background-position:-517px -1502px}.shop_weapon_wizard_3,.shop_weapon_wizard_4{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_wizard_4{background-position:-476px -1502px}.shop_weapon_wizard_5{background-position:-560px -1411px}.shop_weapon_wizard_5,.shop_weapon_wizard_6{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_weapon_wizard_6{background-position:-1396px -364px}.weapon_healer_0{background-image:url(spritesmith3.png);background-position:-1669px -273px;width:90px;height:90px}.weapon_healer_1{background-position:-1290px -1099px}.weapon_healer_1,.weapon_healer_2{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_healer_2{background-position:-221px -1684px}.weapon_healer_3{background-position:-924px -1427px}.weapon_healer_3,.weapon_healer_4{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_healer_4{background-position:-694px -1553px}.weapon_healer_5{background-position:-1640px -455px}.weapon_healer_5,.weapon_healer_6{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_healer_6{background-position:-455px -1644px}.weapon_rogue_0{background-position:-1102px -1303px}.weapon_rogue_0,.weapon_rogue_1{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_rogue_1{background-position:-1381px -1008px}.weapon_rogue_2{background-position:-91px -1708px}.weapon_rogue_2,.weapon_rogue_3{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_rogue_3{background-position:-312px -1684px}.weapon_rogue_4{background-position:0 -1715px}.weapon_rogue_4,.weapon_rogue_5{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_rogue_5{background-position:-1556px -728px}.weapon_rogue_6{background-position:-1634px -546px;width:90px}.weapon_rogue_6,.weapon_special_1{background-image:url(spritesmith3.png);height:90px}.weapon_special_1{background-position:-1199px -1238px;width:102px}.weapon_special_2{background-position:-546px -1644px}.weapon_special_2,.weapon_special_3{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_special_3{background-position:-785px -1553px}.weapon_warrior_0{background-position:-1742px 0}.weapon_warrior_0,.weapon_warrior_1{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_warrior_1{background-position:-1543px -819px}.weapon_warrior_2{background-position:-1015px -1427px}.weapon_warrior_2,.weapon_warrior_3{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_warrior_3{background-position:-1715px -364px}.weapon_warrior_4{background-position:-1556px -637px}.weapon_warrior_4,.weapon_warrior_5{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_warrior_5{background-position:-1669px -182px}.weapon_warrior_6{background-position:-833px -1456px}.weapon_warrior_6,.weapon_wizard_0{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_wizard_0{background-position:-1660px -91px}.weapon_wizard_1{background-position:-1011px -1245px}.weapon_wizard_1,.weapon_wizard_2{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_wizard_2{background-position:-1578px -273px}.weapon_wizard_3{background-position:-1199px -1056px}.weapon_wizard_3,.weapon_wizard_4{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_wizard_4{background-position:-1578px -182px}.weapon_wizard_5{background-position:-808px -1365px}.weapon_wizard_5,.weapon_wizard_6{background-image:url(spritesmith3.png);width:90px;height:90px}.weapon_wizard_6{background-position:-1533px -364px}.GrimReaper{background-position:-637px -1644px;width:57px;height:66px}.GrimReaper,.Pet_Currency_Gem{background-image:url(spritesmith3.png)}.Pet_Currency_Gem{background-position:-969px -1666px;width:45px;height:39px}.Pet_Currency_Gem1x{background-image:url(spritesmith3.png);background-position:-631px -660px;width:15px;height:13px}.Pet_Currency_Gem2x{background-image:url(spritesmith3.png);background-position:-1103px -151px;width:30px;height:26px}.PixelPaw-Gold{background-position:-1351px -1258px}.PixelPaw-Gold,.PixelPaw{background-image:url(spritesmith3.png);width:51px;height:51px}.PixelPaw{background-position:-876px -1625px}.PixelPaw002{background-position:-1806px -384px;width:51px}.PixelPaw002,.inventory_present{background-image:url(spritesmith3.png);height:51px}.inventory_present{background-position:-476px -1787px;width:48px}.inventory_quest_scroll{background-position:-287px -1827px}.inventory_quest_scroll,.inventory_quest_scroll_locked{background-image:url(spritesmith3.png);width:48px;height:51px}.inventory_quest_scroll_locked{background-position:-974px -1573px}.inventory_special_fortify{background-position:-1760px -277px}.inventory_special_fortify,.inventory_special_nye{background-image:url(spritesmith3.png);width:57px;height:54px}.inventory_special_nye{background-position:-1106px -1394px}.inventory_special_opaquePotion{background-image:url(spritesmith3.png);background-position:-1858px -364px;width:40px;height:40px}.inventory_special_snowball{background-position:-924px -1518px}.inventory_special_snowball,.inventory_special_spookDust{background-image:url(spritesmith3.png);width:57px;height:54px}.inventory_special_spookDust{background-position:-1760px -222px}.inventory_special_trinket{background-image:url(spritesmith3.png);background-position:-1647px -744px;width:48px;height:51px}.inventory_special_valentine{background-image:url(spritesmith3.png);background-position:-1381px -1099px;width:57px;height:54px}.pet_key{background-position:-1760px -167px}.pet_key,.rebirth_orb{background-image:url(spritesmith3.png);width:57px;height:54px}.rebirth_orb{background-position:-1647px -637px}.snowman{background-position:-1005px -1336px}.snowman,.spookman{background-image:url(spritesmith3.png);width:90px;height:90px}.spookman{background-position:-1452px -819px}.zzz{background-position:-49px -1847px}.zzz,.zzz_light{background-image:url(spritesmith3.png);width:40px;height:40px}.zzz_light{background-position:-744px -1696px}.just_head{background-position:-692px -1092px;width:36px;height:96px}.just_head,.npc_alex{background-image:url(spritesmith3.png)}.npc_alex{background-position:-908px -709px;width:162px;height:138px}.npc_bailey{background-position:-115px -1533px;width:60px;height:72px}.npc_bailey,.npc_daniel{background-image:url(spritesmith3.png)}.npc_daniel{background-position:-908px -848px;width:135px;height:123px}.npc_justin{background-position:-1094px -601px;width:84px;height:120px}.npc_justin,.npc_matt{background-image:url(spritesmith3.png)}.npc_matt{background-position:-1097px -178px;width:198px;height:144px}.npc_timetravelers{background-position:0 -1212px}.npc_timetravelers,.npc_timetravelers_active{background-image:url(spritesmith3.png);width:195px;height:138px}.npc_timetravelers_active{background-position:-692px -953px}.npc_tyler{background-position:-1465px -728px;width:90px;height:90px}.npc_tyler,.seasonalshop_closed{background-image:url(spritesmith3.png)}.seasonalshop_closed{background-position:-1097px -462px;width:162px;height:138px}.2014_Fall_HealerPROMO2{background-image:url(spritesmith3.png);background-position:0 -1624px;width:90px;height:90px}.2014_Fall_Mage_PROMO9{background-position:-476px -1553px;width:120px}.2014_Fall_Mage_PROMO9,.2014_Fall_RoguePROMO3{background-image:url(spritesmith3.png);height:90px}.2014_Fall_RoguePROMO3{background-position:-115px -1617px;width:105px}.2014_Fall_Warrior_PROMO{background-image:url(spritesmith3.png);background-position:-914px -1336px;width:90px;height:90px}.promo_mystery_201405{background-position:-273px -1593px;height:90px}.promo_mystery_201405,.promo_mystery_201406{background-image:url(spritesmith3.png);width:90px}.promo_mystery_201406{background-position:-1071px -722px;height:96px}.promo_mystery_201407{background-image:url(spritesmith3.png);background-position:-403px -1684px;width:42px;height:62px}.promo_mystery_201408{background-image:url(spritesmith3.png);background-position:-1506px -910px;width:60px;height:71px}.promo_mystery_201409{background-image:url(spritesmith3.png);background-position:-651px -1462px;width:90px;height:90px}.promo_mystery_201410{background-image:url(spritesmith3.png);background-position:-1302px -1190px;width:72px;height:63px}.promo_mystery_201411{background-image:url(spritesmith3.png);background-position:-1465px -637px;width:90px;height:90px}.promo_mystery_201412{background-image:url(spritesmith3.png);background-position:-865px -709px;width:42px;height:66px}.promo_mystery_201501{background-image:url(spritesmith3.png);background-position:-221px -1617px;width:48px;height:63px}.promo_mystery_3014{background-image:url(spritesmith3.png);background-position:-1288px -917px;width:217px;height:90px}.promo_partyhats{background-image:url(spritesmith3.png);background-position:-1634px -871px;width:115px;height:47px}.promo_winterclasses2015{background-image:url(spritesmith3.png);background-position:-315px -1209px;width:325px;height:110px}.promo_winteryhair{background-image:url(spritesmith3.png);background-position:-1751px -91px;width:152px;height:75px}.customize-option.promo_winteryhair{background-image:url(spritesmith3.png);background-position:-1776px -106px;width:60px;height:60px}.inventory_quest_scroll_atom1{background-image:url(spritesmith3.png);background-position:-1696px -692px;width:48px;height:51px}.inventory_quest_scroll_atom2{background-image:url(spritesmith3.png);background-position:-1818px -219px;width:48px;height:51px}.inventory_quest_scroll_atom2_locked{background-image:url(spritesmith3.png);background-position:-1375px -1206px;width:48px;height:51px}.inventory_quest_scroll_atom3{background-image:url(spritesmith3.png);background-position:-1634px -819px;width:48px;height:51px}.inventory_quest_scroll_atom3_locked{background-image:url(spritesmith3.png);background-position:-1488px -1060px;width:48px;height:51px}.inventory_quest_scroll_basilist{background-image:url(spritesmith3.png);background-position:-637px -1711px;width:48px;height:51px}.inventory_quest_scroll_dilatory_derby{background-image:url(spritesmith3.png);background-position:-1818px -167px;width:48px;height:51px}.inventory_quest_scroll_egg{background-image:url(spritesmith3.png);background-position:-793px -1644px;width:48px;height:51px}.inventory_quest_scroll_evilsanta{background-image:url(spritesmith3.png);background-position:-925px -1573px;width:48px;height:51px}.inventory_quest_scroll_evilsanta2{background-image:url(spritesmith3.png);background-position:-1106px -1449px;width:48px;height:51px}.inventory_quest_scroll_ghost_stag{background-image:url(spritesmith3.png);background-position:-1705px -637px;width:48px;height:51px}.inventory_quest_scroll_goldenknight1{background-image:url(spritesmith3.png);background-position:-1242px -1329px;width:48px;height:51px}.inventory_quest_scroll_goldenknight2{background-image:url(spritesmith3.png);background-position:-544px -1735px;width:48px;height:51px}.inventory_quest_scroll_goldenknight2_locked{background-image:url(spritesmith3.png);background-position:-1164px -1394px;width:48px;height:51px}.inventory_quest_scroll_goldenknight3{background-image:url(spritesmith3.png);background-position:-378px -1775px;width:48px;height:51px}.inventory_quest_scroll_goldenknight3_locked{background-image:url(spritesmith3.png);background-position:-1725px -559px;width:48px;height:51px}.inventory_quest_scroll_gryphon{background-image:url(spritesmith3.png);background-position:-1567px -910px;width:48px;height:51px}.inventory_quest_scroll_harpy{background-image:url(spritesmith3.png);background-position:-1439px -1099px;width:48px;height:51px}.inventory_quest_scroll_hedgehog{background-image:url(spritesmith3.png);background-position:-1521px -982px;width:48px;height:51px}.inventory_quest_scroll_moonstone1{background-image:url(spritesmith3.png);background-position:-982px -1518px;width:48px;height:51px}.inventory_quest_scroll_moonstone2{background-image:url(spritesmith3.png);background-position:-1302px -1306px;width:48px;height:51px}.inventory_quest_scroll_moonstone2_locked{background-image:url(spritesmith3.png);background-position:-238px -1827px;width:48px;height:51px}.inventory_quest_scroll_moonstone3{background-image:url(spritesmith3.png);background-position:-1570px -962px;width:48px;height:51px}.inventory_quest_scroll_moonstone3_locked{background-image:url(spritesmith3.png);background-position:-1818px -271px;width:48px;height:51px}.inventory_quest_scroll_octopus{background-image:url(spritesmith3.png);background-position:-1213px -1381px;width:48px;height:51px}.inventory_quest_scroll_owl{background-image:url(spritesmith3.png);background-position:-1430px -1154px;width:48px;height:51px}.inventory_quest_scroll_penguin{background-image:url(spritesmith3.png);background-position:-427px -1787px;width:48px;height:51px}.inventory_quest_scroll_rat{background-image:url(spritesmith3.png);background-position:-1780px -455px;width:48px;height:51px}.inventory_quest_scroll_rooster{background-image:url(spritesmith3.png);background-position:-189px -1827px;width:48px;height:51px}.inventory_quest_scroll_spider{background-image:url(spritesmith3.png);background-position:-1806px -332px;width:48px;height:51px}.inventory_quest_scroll_trex{background-image:url(spritesmith3.png);background-position:-1031px -1518px;width:48px;height:51px}.inventory_quest_scroll_trex_undead{background-image:url(spritesmith3.png);background-position:-1833px 0;width:48px;height:51px}.inventory_quest_scroll_vice1{background-image:url(spritesmith3.png);background-position:-695px -1696px;width:48px;height:51px}.inventory_quest_scroll_vice2{background-image:url(spritesmith3.png);background-position:-140px -1827px;width:48px;height:51px}.inventory_quest_scroll_vice2_locked{background-image:url(spritesmith3.png);background-position:-1302px -1254px;width:48px;height:51px}.inventory_quest_scroll_vice3{background-image:url(spritesmith3.png);background-position:0 -1806px;width:48px;height:51px}.inventory_quest_scroll_vice3_locked{background-image:url(spritesmith3.png);background-position:-329px -1775px;width:48px;height:51px}.quest_atom1{background-position:0 -1061px;width:250px;height:150px}.quest_atom1,.quest_atom2{background-image:url(spritesmith3.png)}.quest_atom2{background-position:-1097px -323px;width:207px;height:138px}.quest_atom3{background-position:0 -880px;width:216px;height:180px}.quest_atom3,.quest_basilist{background-image:url(spritesmith3.png)}.quest_basilist{background-position:-502px -1022px;width:189px;height:141px}.quest_dilatory{background-position:-220px 0}.quest_dilatory,.quest_dilatory_derby{background-image:url(spritesmith3.png);width:219px;height:219px}.quest_dilatory_derby{background-position:-220px -440px}.quest_egg_plainEgg{background-image:url(spritesmith3.png);background-position:-695px -1644px;width:48px;height:51px}.quest_evilsanta{background-position:-196px -1212px;width:118px;height:131px}.quest_evilsanta,.quest_ghost_stag{background-image:url(spritesmith3.png)}.quest_ghost_stag{background-position:0 -220px;width:219px;height:219px}.quest_goldenknight1_testimony{background-image:url(spritesmith3.png);background-position:-1780px -507px;width:48px;height:51px}.quest_goldenknight2{background-position:-1103px 0}.quest_goldenknight2,.quest_goldenknight3{background-image:url(spritesmith3.png);width:250px;height:150px}.quest_goldenknight3{background-position:-251px -1058px}.quest_gryphon{background-image:url(spritesmith3.png);background-position:-440px -844px;width:216px;height:177px}.quest_harpy{background-position:0 0;height:219px}.quest_harpy,.quest_hedgehog{background-image:url(spritesmith3.png);width:219px}.quest_hedgehog{background-position:-660px -437px;height:186px}.quest_moonstone1_moonstone{background-image:url(spritesmith3.png);background-position:-657px -953px;width:30px;height:30px}.quest_moonstone2{background-image:url(spritesmith3.png);background-position:-440px -440px;width:219px;height:219px}.quest_moonstone3{background-position:-220px -660px;width:219px;height:219px}.quest_moonstone3,.quest_octopus{background-image:url(spritesmith3.png)}.quest_octopus{background-position:-880px 0;width:222px;height:177px}.quest_owl{background-position:0 -660px;width:219px;height:219px}.quest_owl,.quest_penguin{background-image:url(spritesmith3.png)}.quest_penguin{background-position:-440px -660px;width:190px;height:183px}.quest_rat{background-position:-660px 0;width:219px;height:219px}.quest_rat,.quest_rock{background-image:url(spritesmith3.png)}.quest_rock{background-position:-660px -220px;width:216px;height:216px}.quest_rooster{background-position:-880px -534px;width:213px;height:174px}.quest_rooster,.quest_spider{background-image:url(spritesmith3.png)}.quest_spider{background-position:-657px -802px;width:250px;height:150px}.quest_stressbeast{background-position:-440px -220px}.quest_stressbeast,.quest_stressbeast_bailey{background-image:url(spritesmith3.png);width:219px;height:219px}.quest_stressbeast_bailey{background-position:-440px 0}.quest_stressbeast_guide{background-position:0 -440px}.quest_stressbeast_guide,.quest_stressbeast_stables{background-image:url(spritesmith3.png);width:219px;height:219px}.quest_stressbeast_stables{background-position:-220px -220px}.quest_trex{background-image:url(spritesmith3.png);background-position:-660px -624px;width:204px;height:177px}.quest_trex_undead{background-position:-880px -356px}.quest_trex_undead,.quest_vice1{background-image:url(spritesmith3.png);width:216px;height:177px}.quest_vice1{background-position:-880px -178px}.quest_vice2_lightCrystal{background-image:url(spritesmith3.png);background-position:-727px -1778px;width:40px;height:40px}.quest_vice3{background-position:-217px -880px;width:216px;height:177px}.quest_vice3,.shop_copper{background-image:url(spritesmith3.png)}.shop_copper{background-position:-1167px -151px;width:32px;height:22px}.shop_eyes{background-position:-1162px -1531px;width:40px;height:40px}.shop_eyes,.shop_gold{background-image:url(spritesmith3.png)}.shop_gold{background-position:-865px -776px;width:32px;height:22px}.shop_opaquePotion{background-position:-1923px 0}.shop_opaquePotion,.shop_potion{background-image:url(spritesmith3.png);width:40px;height:40px}.shop_potion{background-position:-1923px -41px}.shop_reroll{background-position:-1778px -734px;width:40px;height:40px}.shop_reroll,.shop_silver{background-image:url(spritesmith3.png)}.shop_silver{background-position:-1134px -151px;width:32px;height:22px}.shop_snowball{background-position:-467px -1022px}.shop_snowball,.shop_spookDust{background-image:url(spritesmith3.png);width:32px;height:32px}.shop_spookDust{background-position:-434px -1022px}.Pet_Egg_BearCub{background-position:-91px -1799px}.Pet_Egg_BearCub,.Pet_Egg_Cactus{background-image:url(spritesmith3.png);width:48px;height:51px}.Pet_Egg_Cactus{background-position:-876px -1573px}.Pet_Egg_Deer{background-position:-1381px -1154px}.Pet_Egg_Deer,.Pet_Egg_Dragon{background-image:url(spritesmith3.png);width:48px;height:51px}.Pet_Egg_Dragon{background-position:-280px -1775px}.Pet_Egg_Egg{background-position:-446px -1735px}.Pet_Egg_Egg,.Pet_Egg_FlyingPig{background-image:url(spritesmith3.png);width:48px;height:51px}.Pet_Egg_FlyingPig{background-position:-231px -1775px}.Pet_Egg_Fox{background-position:-1731px -455px}.Pet_Egg_Fox,.Pet_Egg_Gryphon{background-image:url(spritesmith3.png);width:48px;height:51px}.Pet_Egg_Gryphon{background-position:-1647px -692px}.Pet_Egg_Hedgehog{background-position:-1193px -1329px}.Pet_Egg_Hedgehog,.Pet_Egg_LionCub{background-image:url(spritesmith3.png);width:48px;height:51px}.Pet_Egg_LionCub{background-position:-182px -1775px}.Pet_Egg_Octopus{background-position:-1472px -1008px}.Pet_Egg_Octopus,.Pet_Egg_Owl{background-image:url(spritesmith3.png);width:48px;height:51px}.Pet_Egg_Owl{background-position:-744px -1644px}.Pet_Egg_PandaCub{background-position:-495px -1735px}.Pet_Egg_PandaCub,.Pet_Egg_Parrot{background-image:url(spritesmith3.png);width:48px;height:51px}.Pet_Egg_Parrot{background-position:-1731px -507px} \ No newline at end of file +.head_special_nye { + background-image: url(spritesmith3.png); + background-position: -1098px -1285px; + width: 90px; + height: 90px; +} +.head_special_nye2014 { + background-image: url(spritesmith3.png); + background-position: -1536px -1001px; + width: 90px; + height: 90px; +} +.head_special_ski { + background-image: url(spritesmith3.png); + background-position: -1445px 0px; + width: 90px; + height: 90px; +} +.head_special_snowflake { + background-image: url(spritesmith3.png); + background-position: -1189px -1285px; + width: 90px; + height: 90px; +} +.head_special_winter2015Healer { + background-image: url(spritesmith3.png); + background-position: -1280px -1285px; + width: 90px; + height: 90px; +} +.head_special_winter2015Mage { + background-image: url(spritesmith3.png); + background-position: -1445px -1274px; + width: 90px; + height: 90px; +} +.head_special_winter2015Rogue { + background-image: url(spritesmith3.png); + background-position: 0px -1467px; + width: 96px; + height: 90px; +} +.head_special_winter2015Warrior { + background-image: url(spritesmith3.png); + background-position: -1536px -364px; + width: 90px; + height: 90px; +} +.head_special_yeti { + background-image: url(spritesmith3.png); + background-position: -1007px -1194px; + width: 90px; + height: 90px; +} +.shield_special_ski { + background-image: url(spritesmith3.png); + background-position: -1098px -1194px; + width: 104px; + height: 90px; +} +.shield_special_snowflake { + background-image: url(spritesmith3.png); + background-position: -1203px -1194px; + width: 90px; + height: 90px; +} +.shield_special_winter2015Healer { + background-image: url(spritesmith3.png); + background-position: -1354px 0px; + width: 90px; + height: 90px; +} +.shield_special_winter2015Rogue { + background-image: url(spritesmith3.png); + background-position: 0px -1285px; + width: 96px; + height: 90px; +} +.shield_special_winter2015Warrior { + background-image: url(spritesmith3.png); + background-position: -916px -1285px; + width: 90px; + height: 90px; +} +.shield_special_yeti { + background-image: url(spritesmith3.png); + background-position: -1007px -1285px; + width: 90px; + height: 90px; +} +.shop_armor_special_candycane { + background-image: url(spritesmith3.png); + background-position: -1302px -550px; + width: 40px; + height: 40px; +} +.shop_armor_special_ski { + background-image: url(spritesmith3.png); + background-position: -1311px -740px; + width: 40px; + height: 40px; +} +.shop_armor_special_snowflake { + background-image: url(spritesmith3.png); + background-position: -1517px -1701px; + width: 40px; + height: 40px; +} +.shop_armor_special_winter2015Healer { + background-image: url(spritesmith3.png); + background-position: -1759px -574px; + width: 40px; + height: 40px; +} +.shop_armor_special_winter2015Mage { + background-image: url(spritesmith3.png); + background-position: -1759px -656px; + width: 40px; + height: 40px; +} +.shop_armor_special_winter2015Rogue { + background-image: url(spritesmith3.png); + background-position: -1759px -820px; + width: 40px; + height: 40px; +} +.shop_armor_special_winter2015Warrior { + background-image: url(spritesmith3.png); + background-position: -1759px -861px; + width: 40px; + height: 40px; +} +.shop_armor_special_yeti { + background-image: url(spritesmith3.png); + background-position: -1759px -902px; + width: 40px; + height: 40px; +} +.shop_head_special_candycane { + background-image: url(spritesmith3.png); + background-position: -1759px -1107px; + width: 40px; + height: 40px; +} +.shop_head_special_nye { + background-image: url(spritesmith3.png); + background-position: -1759px -1066px; + width: 40px; + height: 40px; +} +.shop_head_special_nye2014 { + background-image: url(spritesmith3.png); + background-position: -1759px -1025px; + width: 40px; + height: 40px; +} +.shop_head_special_ski { + background-image: url(spritesmith3.png); + background-position: -1759px -984px; + width: 40px; + height: 40px; +} +.shop_head_special_snowflake { + background-image: url(spritesmith3.png); + background-position: -1759px -943px; + width: 40px; + height: 40px; +} +.shop_head_special_winter2015Healer { + background-image: url(spritesmith3.png); + background-position: -1759px -533px; + width: 40px; + height: 40px; +} +.shop_head_special_winter2015Mage { + background-image: url(spritesmith3.png); + background-position: -1759px -451px; + width: 40px; + height: 40px; +} +.shop_head_special_winter2015Rogue { + background-image: url(spritesmith3.png); + background-position: -1759px -410px; + width: 40px; + height: 40px; +} +.shop_head_special_winter2015Warrior { + background-image: url(spritesmith3.png); + background-position: -1759px -369px; + width: 40px; + height: 40px; +} +.shop_head_special_yeti { + background-image: url(spritesmith3.png); + background-position: -1759px -328px; + width: 40px; + height: 40px; +} +.shop_shield_special_ski { + background-image: url(spritesmith3.png); + background-position: -1759px -287px; + width: 40px; + height: 40px; +} +.shop_shield_special_snowflake { + background-image: url(spritesmith3.png); + background-position: -1759px -246px; + width: 40px; + height: 40px; +} +.shop_shield_special_winter2015Healer { + background-image: url(spritesmith3.png); + background-position: -1759px -205px; + width: 40px; + height: 40px; +} +.shop_shield_special_winter2015Rogue { + background-image: url(spritesmith3.png); + background-position: -1759px -164px; + width: 40px; + height: 40px; +} +.shop_shield_special_winter2015Warrior { + background-image: url(spritesmith3.png); + background-position: -1759px -123px; + width: 40px; + height: 40px; +} +.shop_shield_special_yeti { + background-image: url(spritesmith3.png); + background-position: -1759px -82px; + width: 40px; + height: 40px; +} +.shop_weapon_special_candycane { + background-image: url(spritesmith3.png); + background-position: -1759px -41px; + width: 40px; + height: 40px; +} +.shop_weapon_special_ski { + background-image: url(spritesmith3.png); + background-position: -1759px 0px; + width: 40px; + height: 40px; +} +.shop_weapon_special_snowflake { + background-image: url(spritesmith3.png); + background-position: -1681px -1701px; + width: 40px; + height: 40px; +} +.shop_weapon_special_winter2015Healer { + background-image: url(spritesmith3.png); + background-position: -1640px -1701px; + width: 40px; + height: 40px; +} +.shop_weapon_special_winter2015Mage { + background-image: url(spritesmith3.png); + background-position: -1599px -1701px; + width: 40px; + height: 40px; +} +.shop_weapon_special_winter2015Rogue { + background-image: url(spritesmith3.png); + background-position: -1558px -1701px; + width: 40px; + height: 40px; +} +.shop_weapon_special_winter2015Warrior { + background-image: url(spritesmith3.png); + background-position: -1476px -1701px; + width: 40px; + height: 40px; +} +.shop_weapon_special_yeti { + background-image: url(spritesmith3.png); + background-position: -1435px -1701px; + width: 40px; + height: 40px; +} +.slim_armor_special_candycane { + background-image: url(spritesmith3.png); + background-position: -1536px -546px; + width: 90px; + height: 90px; +} +.slim_armor_special_ski { + background-image: url(spritesmith3.png); + background-position: -1536px -637px; + width: 90px; + height: 90px; +} +.slim_armor_special_snowflake { + background-image: url(spritesmith3.png); + background-position: -1536px -728px; + width: 90px; + height: 90px; +} +.slim_armor_special_winter2015Healer { + background-image: url(spritesmith3.png); + background-position: -1536px -819px; + width: 90px; + height: 90px; +} +.slim_armor_special_winter2015Mage { + background-image: url(spritesmith3.png); + background-position: -1536px -910px; + width: 90px; + height: 90px; +} +.slim_armor_special_winter2015Rogue { + background-image: url(spritesmith3.png); + background-position: -324px -1467px; + width: 96px; + height: 90px; +} +.slim_armor_special_winter2015Warrior { + background-image: url(spritesmith3.png); + background-position: -1536px -1183px; + width: 90px; + height: 90px; +} +.slim_armor_special_yeti { + background-image: url(spritesmith3.png); + background-position: -868px -1055px; + width: 90px; + height: 90px; +} +.weapon_special_candycane { + background-image: url(spritesmith3.png); + background-position: -959px -1055px; + width: 90px; + height: 90px; +} +.weapon_special_ski { + background-image: url(spritesmith3.png); + background-position: -1050px -1055px; + width: 90px; + height: 90px; +} +.weapon_special_snowflake { + background-image: url(spritesmith3.png); + background-position: -1141px -1055px; + width: 90px; + height: 90px; +} +.weapon_special_winter2015Healer { + background-image: url(spritesmith3.png); + background-position: -1232px -1055px; + width: 90px; + height: 90px; +} +.weapon_special_winter2015Mage { + background-image: url(spritesmith3.png); + background-position: 0px -1194px; + width: 90px; + height: 90px; +} +.weapon_special_winter2015Rogue { + background-image: url(spritesmith3.png); + background-position: -91px -1194px; + width: 96px; + height: 90px; +} +.weapon_special_winter2015Warrior { + background-image: url(spritesmith3.png); + background-position: -188px -1194px; + width: 90px; + height: 90px; +} +.weapon_special_yeti { + background-image: url(spritesmith3.png); + background-position: -279px -1194px; + width: 90px; + height: 90px; +} +.back_special_wondercon_black { + background-image: url(spritesmith3.png); + background-position: -370px -1194px; + width: 90px; + height: 90px; +} +.back_special_wondercon_red { + background-image: url(spritesmith3.png); + background-position: -461px -1194px; + width: 90px; + height: 90px; +} +.body_special_wondercon_black { + background-image: url(spritesmith3.png); + background-position: -552px -1194px; + width: 90px; + height: 90px; +} +.body_special_wondercon_gold { + background-image: url(spritesmith3.png); + background-position: -643px -1194px; + width: 90px; + height: 90px; +} +.body_special_wondercon_red { + background-image: url(spritesmith3.png); + background-position: -734px -1194px; + width: 90px; + height: 90px; +} +.eyewear_special_wondercon_black { + background-image: url(spritesmith3.png); + background-position: -825px -1194px; + width: 90px; + height: 90px; +} +.eyewear_special_wondercon_red { + background-image: url(spritesmith3.png); + background-position: -916px -1194px; + width: 90px; + height: 90px; +} +.shop_back_special_wondercon_black { + background-image: url(spritesmith3.png); + background-position: -1394px -1701px; + width: 40px; + height: 40px; +} +.shop_back_special_wondercon_red { + background-image: url(spritesmith3.png); + background-position: -1353px -1701px; + width: 40px; + height: 40px; +} +.shop_body_special_wondercon_black { + background-image: url(spritesmith3.png); + background-position: -1312px -1701px; + width: 40px; + height: 40px; +} +.shop_body_special_wondercon_gold { + background-image: url(spritesmith3.png); + background-position: -1271px -1701px; + width: 40px; + height: 40px; +} +.shop_body_special_wondercon_red { + background-image: url(spritesmith3.png); + background-position: -1230px -1701px; + width: 40px; + height: 40px; +} +.shop_eyewear_special_wondercon_black { + background-image: url(spritesmith3.png); + background-position: -1189px -1701px; + width: 40px; + height: 40px; +} +.shop_eyewear_special_wondercon_red { + background-image: url(spritesmith3.png); + background-position: -1148px -1701px; + width: 40px; + height: 40px; +} +.head_0 { + background-image: url(spritesmith3.png); + background-position: -1354px -91px; + width: 90px; + height: 90px; +} +.customize-option.head_0 { + background-image: url(spritesmith3.png); + background-position: -1379px -106px; + width: 60px; + height: 60px; +} +.head_healer_1 { + background-image: url(spritesmith3.png); + background-position: -1354px -182px; + width: 90px; + height: 90px; +} +.head_healer_2 { + background-image: url(spritesmith3.png); + background-position: -1354px -273px; + width: 90px; + height: 90px; +} +.head_healer_3 { + background-image: url(spritesmith3.png); + background-position: -1354px -364px; + width: 90px; + height: 90px; +} +.head_healer_4 { + background-image: url(spritesmith3.png); + background-position: -1354px -455px; + width: 90px; + height: 90px; +} +.head_healer_5 { + background-image: url(spritesmith3.png); + background-position: -1354px -546px; + width: 90px; + height: 90px; +} +.head_rogue_1 { + background-image: url(spritesmith3.png); + background-position: -1354px -637px; + width: 90px; + height: 90px; +} +.head_rogue_2 { + background-image: url(spritesmith3.png); + background-position: -1354px -728px; + width: 90px; + height: 90px; +} +.head_rogue_3 { + background-image: url(spritesmith3.png); + background-position: -1354px -819px; + width: 90px; + height: 90px; +} +.head_rogue_4 { + background-image: url(spritesmith3.png); + background-position: -1354px -910px; + width: 90px; + height: 90px; +} +.head_rogue_5 { + background-image: url(spritesmith3.png); + background-position: -1354px -1001px; + width: 90px; + height: 90px; +} +.head_special_2 { + background-image: url(spritesmith3.png); + background-position: -1354px -1092px; + width: 90px; + height: 90px; +} +.head_warrior_1 { + background-image: url(spritesmith3.png); + background-position: -1354px -1183px; + width: 90px; + height: 90px; +} +.head_warrior_2 { + background-image: url(spritesmith3.png); + background-position: -97px -1285px; + width: 90px; + height: 90px; +} +.head_warrior_3 { + background-image: url(spritesmith3.png); + background-position: -188px -1285px; + width: 90px; + height: 90px; +} +.head_warrior_4 { + background-image: url(spritesmith3.png); + background-position: -279px -1285px; + width: 90px; + height: 90px; +} +.head_warrior_5 { + background-image: url(spritesmith3.png); + background-position: -370px -1285px; + width: 90px; + height: 90px; +} +.head_wizard_1 { + background-image: url(spritesmith3.png); + background-position: -461px -1285px; + width: 90px; + height: 90px; +} +.head_wizard_2 { + background-image: url(spritesmith3.png); + background-position: -552px -1285px; + width: 90px; + height: 90px; +} +.head_wizard_3 { + background-image: url(spritesmith3.png); + background-position: -643px -1285px; + width: 90px; + height: 90px; +} +.head_wizard_4 { + background-image: url(spritesmith3.png); + background-position: -734px -1285px; + width: 90px; + height: 90px; +} +.head_wizard_5 { + background-image: url(spritesmith3.png); + background-position: -825px -1285px; + width: 90px; + height: 90px; +} +.shop_head_healer_1 { + background-image: url(spritesmith3.png); + background-position: -1107px -1701px; + width: 40px; + height: 40px; +} +.shop_head_healer_2 { + background-image: url(spritesmith3.png); + background-position: -1066px -1701px; + width: 40px; + height: 40px; +} +.shop_head_healer_3 { + background-image: url(spritesmith3.png); + background-position: -1025px -1701px; + width: 40px; + height: 40px; +} +.shop_head_healer_4 { + background-image: url(spritesmith3.png); + background-position: -984px -1701px; + width: 40px; + height: 40px; +} +.shop_head_healer_5 { + background-image: url(spritesmith3.png); + background-position: -943px -1701px; + width: 40px; + height: 40px; +} +.shop_head_rogue_1 { + background-image: url(spritesmith3.png); + background-position: -902px -1701px; + width: 40px; + height: 40px; +} +.shop_head_rogue_2 { + background-image: url(spritesmith3.png); + background-position: -861px -1701px; + width: 40px; + height: 40px; +} +.shop_head_rogue_3 { + background-image: url(spritesmith3.png); + background-position: -820px -1701px; + width: 40px; + height: 40px; +} +.shop_head_rogue_4 { + background-image: url(spritesmith3.png); + background-position: -779px -1701px; + width: 40px; + height: 40px; +} +.shop_head_rogue_5 { + background-image: url(spritesmith3.png); + background-position: -738px -1701px; + width: 40px; + height: 40px; +} +.shop_head_special_0 { + background-image: url(spritesmith3.png); + background-position: -697px -1701px; + width: 40px; + height: 40px; +} +.shop_head_special_1 { + background-image: url(spritesmith3.png); + background-position: -656px -1701px; + width: 40px; + height: 40px; +} +.shop_head_special_2 { + background-image: url(spritesmith3.png); + background-position: -615px -1701px; + width: 40px; + height: 40px; +} +.shop_head_warrior_1 { + background-image: url(spritesmith3.png); + background-position: -574px -1701px; + width: 40px; + height: 40px; +} +.shop_head_warrior_2 { + background-image: url(spritesmith3.png); + background-position: -533px -1701px; + width: 40px; + height: 40px; +} +.shop_head_warrior_3 { + background-image: url(spritesmith3.png); + background-position: -1676px -1253px; + width: 40px; + height: 40px; +} +.shop_head_warrior_4 { + background-image: url(spritesmith3.png); + background-position: -451px -1701px; + width: 40px; + height: 40px; +} +.shop_head_warrior_5 { + background-image: url(spritesmith3.png); + background-position: -410px -1701px; + width: 40px; + height: 40px; +} +.shop_head_wizard_1 { + background-image: url(spritesmith3.png); + background-position: -369px -1701px; + width: 40px; + height: 40px; +} +.shop_head_wizard_2 { + background-image: url(spritesmith3.png); + background-position: -328px -1701px; + width: 40px; + height: 40px; +} +.shop_head_wizard_3 { + background-image: url(spritesmith3.png); + background-position: -287px -1701px; + width: 40px; + height: 40px; +} +.shop_head_wizard_4 { + background-image: url(spritesmith3.png); + background-position: -246px -1701px; + width: 40px; + height: 40px; +} +.shop_head_wizard_5 { + background-image: url(spritesmith3.png); + background-position: -205px -1701px; + width: 40px; + height: 40px; +} +.shield_healer_1 { + background-image: url(spritesmith3.png); + background-position: -1445px -91px; + width: 90px; + height: 90px; +} +.shield_healer_2 { + background-image: url(spritesmith3.png); + background-position: -1445px -182px; + width: 90px; + height: 90px; +} +.shield_healer_3 { + background-image: url(spritesmith3.png); + background-position: -1445px -273px; + width: 90px; + height: 90px; +} +.shield_healer_4 { + background-image: url(spritesmith3.png); + background-position: -1445px -364px; + width: 90px; + height: 90px; +} +.shield_healer_5 { + background-image: url(spritesmith3.png); + background-position: -1445px -455px; + width: 90px; + height: 90px; +} +.shield_rogue_0 { + background-image: url(spritesmith3.png); + background-position: -1445px -546px; + width: 90px; + height: 90px; +} +.shield_rogue_1 { + background-image: url(spritesmith3.png); + background-position: 0px -1376px; + width: 103px; + height: 90px; +} +.shield_rogue_2 { + background-image: url(spritesmith3.png); + background-position: -104px -1376px; + width: 103px; + height: 90px; +} +.shield_rogue_3 { + background-image: url(spritesmith3.png); + background-position: -208px -1376px; + width: 114px; + height: 90px; +} +.shield_rogue_4 { + background-image: url(spritesmith3.png); + background-position: -323px -1376px; + width: 96px; + height: 90px; +} +.shield_rogue_5 { + background-image: url(spritesmith3.png); + background-position: -420px -1376px; + width: 114px; + height: 90px; +} +.shield_rogue_6 { + background-image: url(spritesmith3.png); + background-position: -535px -1376px; + width: 114px; + height: 90px; +} +.shield_special_1 { + background-image: url(spritesmith3.png); + background-position: -1445px -637px; + width: 90px; + height: 90px; +} +.shield_special_goldenknight { + background-image: url(spritesmith3.png); + background-position: -650px -1376px; + width: 111px; + height: 90px; +} +.shield_warrior_1 { + background-image: url(spritesmith3.png); + background-position: -1445px -728px; + width: 90px; + height: 90px; +} +.shield_warrior_2 { + background-image: url(spritesmith3.png); + background-position: -1445px -819px; + width: 90px; + height: 90px; +} +.shield_warrior_3 { + background-image: url(spritesmith3.png); + background-position: -1445px -910px; + width: 90px; + height: 90px; +} +.shield_warrior_4 { + background-image: url(spritesmith3.png); + background-position: -1445px -1001px; + width: 90px; + height: 90px; +} +.shield_warrior_5 { + background-image: url(spritesmith3.png); + background-position: -1445px -1092px; + width: 90px; + height: 90px; +} +.shop_shield_healer_1 { + background-image: url(spritesmith3.png); + background-position: -164px -1701px; + width: 40px; + height: 40px; +} +.shop_shield_healer_2 { + background-image: url(spritesmith3.png); + background-position: -123px -1701px; + width: 40px; + height: 40px; +} +.shop_shield_healer_3 { + background-image: url(spritesmith3.png); + background-position: -82px -1701px; + width: 40px; + height: 40px; +} +.shop_shield_healer_4 { + background-image: url(spritesmith3.png); + background-position: -41px -1701px; + width: 40px; + height: 40px; +} +.shop_shield_healer_5 { + background-image: url(spritesmith3.png); + background-position: 0px -1701px; + width: 40px; + height: 40px; +} +.shop_shield_rogue_0 { + background-image: url(spritesmith3.png); + background-position: -1718px -1640px; + width: 40px; + height: 40px; +} +.shop_shield_rogue_1 { + background-image: url(spritesmith3.png); + background-position: -1718px -1599px; + width: 40px; + height: 40px; +} +.shop_shield_rogue_2 { + background-image: url(spritesmith3.png); + background-position: -1718px -1558px; + width: 40px; + height: 40px; +} +.shop_shield_rogue_3 { + background-image: url(spritesmith3.png); + background-position: -1718px -1517px; + width: 40px; + height: 40px; +} +.shop_shield_rogue_4 { + background-image: url(spritesmith3.png); + background-position: -1718px -1476px; + width: 40px; + height: 40px; +} +.shop_shield_rogue_5 { + background-image: url(spritesmith3.png); + background-position: -1718px -1435px; + width: 40px; + height: 40px; +} +.shop_shield_rogue_6 { + background-image: url(spritesmith3.png); + background-position: -1718px -1394px; + width: 40px; + height: 40px; +} +.shop_shield_special_0 { + background-image: url(spritesmith3.png); + background-position: -1718px -1353px; + width: 40px; + height: 40px; +} +.shop_shield_special_1 { + background-image: url(spritesmith3.png); + background-position: -1718px -1312px; + width: 40px; + height: 40px; +} +.shop_shield_special_goldenknight { + background-image: url(spritesmith3.png); + background-position: -1718px -1271px; + width: 40px; + height: 40px; +} +.shop_shield_warrior_1 { + background-image: url(spritesmith3.png); + background-position: -1718px -1230px; + width: 40px; + height: 40px; +} +.shop_shield_warrior_2 { + background-image: url(spritesmith3.png); + background-position: -1718px -1189px; + width: 40px; + height: 40px; +} +.shop_shield_warrior_3 { + background-image: url(spritesmith3.png); + background-position: -1718px -1148px; + width: 40px; + height: 40px; +} +.shop_shield_warrior_4 { + background-image: url(spritesmith3.png); + background-position: -1718px -1107px; + width: 40px; + height: 40px; +} +.shop_shield_warrior_5 { + background-image: url(spritesmith3.png); + background-position: -1718px -1066px; + width: 40px; + height: 40px; +} +.shop_weapon_healer_0 { + background-image: url(spritesmith3.png); + background-position: -1718px -1025px; + width: 40px; + height: 40px; +} +.shop_weapon_healer_1 { + background-image: url(spritesmith3.png); + background-position: -1718px -984px; + width: 40px; + height: 40px; +} +.shop_weapon_healer_2 { + background-image: url(spritesmith3.png); + background-position: -1718px -902px; + width: 40px; + height: 40px; +} +.shop_weapon_healer_3 { + background-image: url(spritesmith3.png); + background-position: -1718px -861px; + width: 40px; + height: 40px; +} +.shop_weapon_healer_4 { + background-image: url(spritesmith3.png); + background-position: -1718px -820px; + width: 40px; + height: 40px; +} +.shop_weapon_healer_5 { + background-image: url(spritesmith3.png); + background-position: -1718px -779px; + width: 40px; + height: 40px; +} +.shop_weapon_healer_6 { + background-image: url(spritesmith3.png); + background-position: -1718px -738px; + width: 40px; + height: 40px; +} +.shop_weapon_rogue_0 { + background-image: url(spritesmith3.png); + background-position: -1718px -697px; + width: 40px; + height: 40px; +} +.shop_weapon_rogue_1 { + background-image: url(spritesmith3.png); + background-position: -1718px -656px; + width: 40px; + height: 40px; +} +.shop_weapon_rogue_2 { + background-image: url(spritesmith3.png); + background-position: -1718px -615px; + width: 40px; + height: 40px; +} +.shop_weapon_rogue_3 { + background-image: url(spritesmith3.png); + background-position: -1718px -574px; + width: 40px; + height: 40px; +} +.shop_weapon_rogue_4 { + background-image: url(spritesmith3.png); + background-position: -1718px -533px; + width: 40px; + height: 40px; +} +.shop_weapon_rogue_5 { + background-image: url(spritesmith3.png); + background-position: -1718px -492px; + width: 40px; + height: 40px; +} +.shop_weapon_rogue_6 { + background-image: url(spritesmith3.png); + background-position: -1718px -451px; + width: 40px; + height: 40px; +} +.shop_weapon_special_0 { + background-image: url(spritesmith3.png); + background-position: -1718px -410px; + width: 40px; + height: 40px; +} +.shop_weapon_special_1 { + background-image: url(spritesmith3.png); + background-position: -1718px -369px; + width: 40px; + height: 40px; +} +.shop_weapon_special_2 { + background-image: url(spritesmith3.png); + background-position: -1718px -328px; + width: 40px; + height: 40px; +} +.shop_weapon_special_3 { + background-image: url(spritesmith3.png); + background-position: -1718px -287px; + width: 40px; + height: 40px; +} +.shop_weapon_special_critical { + background-image: url(spritesmith3.png); + background-position: -1718px -246px; + width: 40px; + height: 40px; +} +.shop_weapon_warrior_0 { + background-image: url(spritesmith3.png); + background-position: -1718px -205px; + width: 40px; + height: 40px; +} +.shop_weapon_warrior_1 { + background-image: url(spritesmith3.png); + background-position: -1718px -164px; + width: 40px; + height: 40px; +} +.shop_weapon_warrior_2 { + background-image: url(spritesmith3.png); + background-position: -1718px -123px; + width: 40px; + height: 40px; +} +.shop_weapon_warrior_3 { + background-image: url(spritesmith3.png); + background-position: -1718px -82px; + width: 40px; + height: 40px; +} +.shop_weapon_warrior_4 { + background-image: url(spritesmith3.png); + background-position: -1718px -943px; + width: 40px; + height: 40px; +} +.shop_weapon_warrior_5 { + background-image: url(spritesmith3.png); + background-position: -1718px -41px; + width: 40px; + height: 40px; +} +.shop_weapon_warrior_6 { + background-image: url(spritesmith3.png); + background-position: -1718px 0px; + width: 40px; + height: 40px; +} +.shop_weapon_wizard_0 { + background-image: url(spritesmith3.png); + background-position: -1677px -1649px; + width: 40px; + height: 40px; +} +.shop_weapon_wizard_1 { + background-image: url(spritesmith3.png); + background-position: -1677px -1558px; + width: 40px; + height: 40px; +} +.shop_weapon_wizard_2 { + background-image: url(spritesmith3.png); + background-position: -1062px -959px; + width: 40px; + height: 40px; +} +.shop_weapon_wizard_3 { + background-image: url(spritesmith3.png); + background-position: -1062px -918px; + width: 40px; + height: 40px; +} +.shop_weapon_wizard_4 { + background-image: url(spritesmith3.png); + background-position: -1062px -877px; + width: 40px; + height: 40px; +} +.shop_weapon_wizard_5 { + background-image: url(spritesmith3.png); + background-position: -1311px -822px; + width: 40px; + height: 40px; +} +.shop_weapon_wizard_6 { + background-image: url(spritesmith3.png); + background-position: -1311px -781px; + width: 40px; + height: 40px; +} +.weapon_healer_0 { + background-image: url(spritesmith3.png); + background-position: -694px -1467px; + width: 90px; + height: 90px; +} +.weapon_healer_1 { + background-image: url(spritesmith3.png); + background-position: -785px -1467px; + width: 90px; + height: 90px; +} +.weapon_healer_2 { + background-image: url(spritesmith3.png); + background-position: -876px -1467px; + width: 90px; + height: 90px; +} +.weapon_healer_3 { + background-image: url(spritesmith3.png); + background-position: -967px -1467px; + width: 90px; + height: 90px; +} +.weapon_healer_4 { + background-image: url(spritesmith3.png); + background-position: -1058px -1467px; + width: 90px; + height: 90px; +} +.weapon_healer_5 { + background-image: url(spritesmith3.png); + background-position: -1149px -1467px; + width: 90px; + height: 90px; +} +.weapon_healer_6 { + background-image: url(spritesmith3.png); + background-position: -1240px -1467px; + width: 90px; + height: 90px; +} +.weapon_rogue_0 { + background-image: url(spritesmith3.png); + background-position: -1331px -1467px; + width: 90px; + height: 90px; +} +.weapon_rogue_1 { + background-image: url(spritesmith3.png); + background-position: -1422px -1467px; + width: 90px; + height: 90px; +} +.weapon_rogue_2 { + background-image: url(spritesmith3.png); + background-position: -1513px -1467px; + width: 90px; + height: 90px; +} +.weapon_rogue_3 { + background-image: url(spritesmith3.png); + background-position: -1627px 0px; + width: 90px; + height: 90px; +} +.weapon_rogue_4 { + background-image: url(spritesmith3.png); + background-position: -1627px -91px; + width: 90px; + height: 90px; +} +.weapon_rogue_5 { + background-image: url(spritesmith3.png); + background-position: -1627px -182px; + width: 90px; + height: 90px; +} +.weapon_rogue_6 { + background-image: url(spritesmith3.png); + background-position: -1627px -273px; + width: 90px; + height: 90px; +} +.weapon_special_1 { + background-image: url(spritesmith3.png); + background-position: 0px -1558px; + width: 102px; + height: 90px; +} +.weapon_special_2 { + background-image: url(spritesmith3.png); + background-position: -1627px -364px; + width: 90px; + height: 90px; +} +.weapon_special_3 { + background-image: url(spritesmith3.png); + background-position: -1627px -455px; + width: 90px; + height: 90px; +} +.weapon_warrior_0 { + background-image: url(spritesmith3.png); + background-position: -1627px -546px; + width: 90px; + height: 90px; +} +.weapon_warrior_1 { + background-image: url(spritesmith3.png); + background-position: -1627px -637px; + width: 90px; + height: 90px; +} +.weapon_warrior_2 { + background-image: url(spritesmith3.png); + background-position: -1627px -728px; + width: 90px; + height: 90px; +} +.weapon_warrior_3 { + background-image: url(spritesmith3.png); + background-position: -1627px -819px; + width: 90px; + height: 90px; +} +.weapon_warrior_4 { + background-image: url(spritesmith3.png); + background-position: -603px -1467px; + width: 90px; + height: 90px; +} +.weapon_warrior_5 { + background-image: url(spritesmith3.png); + background-position: -512px -1467px; + width: 90px; + height: 90px; +} +.weapon_warrior_6 { + background-image: url(spritesmith3.png); + background-position: -421px -1467px; + width: 90px; + height: 90px; +} +.weapon_wizard_0 { + background-image: url(spritesmith3.png); + background-position: -1536px -1092px; + width: 90px; + height: 90px; +} +.weapon_wizard_1 { + background-image: url(spritesmith3.png); + background-position: -1536px 0px; + width: 90px; + height: 90px; +} +.weapon_wizard_2 { + background-image: url(spritesmith3.png); + background-position: -1435px -1376px; + width: 90px; + height: 90px; +} +.weapon_wizard_3 { + background-image: url(spritesmith3.png); + background-position: -1253px -1376px; + width: 90px; + height: 90px; +} +.weapon_wizard_4 { + background-image: url(spritesmith3.png); + background-position: -1071px -1376px; + width: 90px; + height: 90px; +} +.weapon_wizard_5 { + background-image: url(spritesmith3.png); + background-position: -980px -1376px; + width: 90px; + height: 90px; +} +.weapon_wizard_6 { + background-image: url(spritesmith3.png); + background-position: -1445px -1183px; + width: 90px; + height: 90px; +} +.GrimReaper { + background-image: url(spritesmith3.png); + background-position: -1627px -1122px; + width: 57px; + height: 66px; +} +.Pet_Currency_Gem { + background-image: url(spritesmith3.png); + background-position: 0px -1742px; + width: 45px; + height: 39px; +} +.Pet_Currency_Gem1x { + background-image: url(spritesmith3.png); + background-position: -1759px -1341px; + width: 15px; + height: 13px; +} +.Pet_Currency_Gem2x { + background-image: url(spritesmith3.png); + background-position: -1759px -1245px; + width: 30px; + height: 26px; +} +.PixelPaw-Gold { + background-image: url(spritesmith3.png); + background-position: -1127px -1649px; + width: 51px; + height: 51px; +} +.PixelPaw { + background-image: url(spritesmith3.png); + background-position: -1179px -1649px; + width: 51px; + height: 51px; +} +.PixelPaw002 { + background-image: url(spritesmith3.png); + background-position: -1231px -1649px; + width: 51px; + height: 51px; +} +.inventory_present { + background-image: url(spritesmith3.png); + background-position: -1283px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll { + background-image: url(spritesmith3.png); + background-position: -1332px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_locked { + background-image: url(spritesmith3.png); + background-position: -1381px -1649px; + width: 48px; + height: 51px; +} +.inventory_special_fortify { + background-image: url(spritesmith3.png); + background-position: -1294px -1194px; + width: 57px; + height: 54px; +} +.inventory_special_nye { + background-image: url(spritesmith3.png); + background-position: -1293px -653px; + width: 57px; + height: 54px; +} +.inventory_special_opaquePotion { + background-image: url(spritesmith3.png); + background-position: -492px -1701px; + width: 40px; + height: 40px; +} +.inventory_special_snowball { + background-image: url(spritesmith3.png); + background-position: -1293px -598px; + width: 57px; + height: 54px; +} +.inventory_special_spookDust { + background-image: url(spritesmith3.png); + background-position: -1627px -1482px; + width: 57px; + height: 54px; +} +.inventory_special_trinket { + background-image: url(spritesmith3.png); + background-position: -1040px -1558px; + width: 48px; + height: 51px; +} +.inventory_special_valentine { + background-image: url(spritesmith3.png); + background-position: -1627px -1317px; + width: 57px; + height: 54px; +} +.pet_key { + background-image: url(spritesmith3.png); + background-position: -1627px -1427px; + width: 57px; + height: 54px; +} +.rebirth_orb { + background-image: url(spritesmith3.png); + background-position: -1627px -1372px; + width: 57px; + height: 54px; +} +.snowman { + background-image: url(spritesmith3.png); + background-position: -1536px -1365px; + width: 90px; + height: 90px; +} +.spookman { + background-image: url(spritesmith3.png); + background-position: -1536px -1274px; + width: 90px; + height: 90px; +} +.zzz { + background-image: url(spritesmith3.png); + background-position: -1595px -1649px; + width: 40px; + height: 40px; +} +.zzz_light { + background-image: url(spritesmith3.png); + background-position: -1636px -1649px; + width: 40px; + height: 40px; +} +.just_head { + background-image: url(spritesmith3.png); + background-position: -1302px -453px; + width: 36px; + height: 96px; +} +.npc_alex { + background-image: url(spritesmith3.png); + background-position: -1103px -879px; + width: 162px; + height: 138px; +} +.npc_bailey { + background-image: url(spritesmith3.png); + background-position: -1627px -910px; + width: 60px; + height: 72px; +} +.npc_daniel { + background-image: url(spritesmith3.png); + background-position: -315px -1055px; + width: 135px; + height: 123px; +} +.npc_justin { + background-image: url(spritesmith3.png); + background-position: -1266px -879px; + width: 84px; + height: 120px; +} +.npc_matt { + background-image: url(spritesmith3.png); + background-position: -1103px -453px; + width: 198px; + height: 144px; +} +.npc_timetravelers { + background-image: url(spritesmith3.png); + background-position: 0px -1055px; + width: 195px; + height: 138px; +} +.npc_timetravelers_active { + background-image: url(spritesmith3.png); + background-position: -880px -712px; + width: 195px; + height: 138px; +} +.npc_tyler { + background-image: url(spritesmith3.png); + background-position: -1536px -455px; + width: 90px; + height: 90px; +} +.seasonalshop_closed { + background-image: url(spritesmith3.png); + background-position: -899px -877px; + width: 162px; + height: 138px; +} +.2014_Fall_HealerPROMO2 { + background-image: url(spritesmith3.png); + background-position: -1536px -273px; + width: 90px; + height: 90px; +} +.2014_Fall_Mage_PROMO9 { + background-image: url(spritesmith3.png); + background-position: -203px -1467px; + width: 120px; + height: 90px; +} +.2014_Fall_RoguePROMO3 { + background-image: url(spritesmith3.png); + background-position: -97px -1467px; + width: 105px; + height: 90px; +} +.2014_Fall_Warrior_PROMO { + background-image: url(spritesmith3.png); + background-position: -1536px -182px; + width: 90px; + height: 90px; +} +.promo_mystery_201405 { + background-image: url(spritesmith3.png); + background-position: -1536px -91px; + width: 90px; + height: 90px; +} +.promo_mystery_201406 { + background-image: url(spritesmith3.png); + background-position: -777px -1055px; + width: 90px; + height: 96px; +} +.promo_mystery_201407 { + background-image: url(spritesmith3.png); + background-position: -1670px -1055px; + width: 42px; + height: 62px; +} +.promo_mystery_201408 { + background-image: url(spritesmith3.png); + background-position: -1627px -983px; + width: 60px; + height: 71px; +} +.promo_mystery_201409 { + background-image: url(spritesmith3.png); + background-position: -1344px -1376px; + width: 90px; + height: 90px; +} +.promo_mystery_201410 { + background-image: url(spritesmith3.png); + background-position: -1627px -1189px; + width: 72px; + height: 63px; +} +.promo_mystery_201411 { + background-image: url(spritesmith3.png); + background-position: -1162px -1376px; + width: 90px; + height: 90px; +} +.promo_mystery_201412 { + background-image: url(spritesmith3.png); + background-position: -1627px -1055px; + width: 42px; + height: 66px; +} +.promo_mystery_201501 { + background-image: url(spritesmith3.png); + background-position: -1627px -1253px; + width: 48px; + height: 63px; +} +.promo_mystery_3014 { + background-image: url(spritesmith3.png); + background-position: -762px -1376px; + width: 217px; + height: 90px; +} +.promo_partyhats { + background-image: url(spritesmith3.png); + background-position: -1479px -1649px; + width: 115px; + height: 47px; +} +.promo_winterclasses2015 { + background-image: url(spritesmith3.png); + background-position: -451px -1055px; + width: 325px; + height: 110px; +} +.promo_winteryhair { + background-image: url(spritesmith3.png); + background-position: -103px -1558px; + width: 152px; + height: 75px; +} +.customize-option.promo_winteryhair { + background-image: url(spritesmith3.png); + background-position: -128px -1573px; + width: 60px; + height: 60px; +} +.inventory_quest_scroll_atom1 { + background-image: url(spritesmith3.png); + background-position: -392px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_atom2 { + background-image: url(spritesmith3.png); + background-position: -343px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_atom2_locked { + background-image: url(spritesmith3.png); + background-position: -294px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_atom3 { + background-image: url(spritesmith3.png); + background-position: -245px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_atom3_locked { + background-image: url(spritesmith3.png); + background-position: -196px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_basilist { + background-image: url(spritesmith3.png); + background-position: -147px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_dilatory_derby { + background-image: url(spritesmith3.png); + background-position: -98px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_egg { + background-image: url(spritesmith3.png); + background-position: -49px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_evilsanta { + background-image: url(spritesmith3.png); + background-position: 0px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_evilsanta2 { + background-image: url(spritesmith3.png); + background-position: -1628px -1558px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_ghost_stag { + background-image: url(spritesmith3.png); + background-position: -1579px -1558px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_goldenknight1 { + background-image: url(spritesmith3.png); + background-position: -1530px -1558px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_goldenknight2 { + background-image: url(spritesmith3.png); + background-position: -1481px -1558px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_goldenknight2_locked { + background-image: url(spritesmith3.png); + background-position: -1432px -1558px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_goldenknight3 { + background-image: url(spritesmith3.png); + background-position: -1383px -1558px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_goldenknight3_locked { + background-image: url(spritesmith3.png); + background-position: -1334px -1558px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_gryphon { + background-image: url(spritesmith3.png); + background-position: -1285px -1558px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_harpy { + background-image: url(spritesmith3.png); + background-position: -1236px -1558px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_hedgehog { + background-image: url(spritesmith3.png); + background-position: -1187px -1558px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_moonstone1 { + background-image: url(spritesmith3.png); + background-position: -1138px -1558px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_moonstone2 { + background-image: url(spritesmith3.png); + background-position: -1078px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_moonstone2_locked { + background-image: url(spritesmith3.png); + background-position: -1029px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_moonstone3 { + background-image: url(spritesmith3.png); + background-position: -980px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_moonstone3_locked { + background-image: url(spritesmith3.png); + background-position: -931px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_octopus { + background-image: url(spritesmith3.png); + background-position: -882px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_owl { + background-image: url(spritesmith3.png); + background-position: -833px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_penguin { + background-image: url(spritesmith3.png); + background-position: -784px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_rat { + background-image: url(spritesmith3.png); + background-position: -735px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_rooster { + background-image: url(spritesmith3.png); + background-position: -686px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_spider { + background-image: url(spritesmith3.png); + background-position: -637px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_trex { + background-image: url(spritesmith3.png); + background-position: -588px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_trex_undead { + background-image: url(spritesmith3.png); + background-position: -539px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_vice1 { + background-image: url(spritesmith3.png); + background-position: -490px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_vice2 { + background-image: url(spritesmith3.png); + background-position: -441px -1649px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_vice2_locked { + background-image: url(spritesmith3.png); + background-position: -1089px -1558px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_vice3 { + background-image: url(spritesmith3.png); + background-position: -991px -1558px; + width: 48px; + height: 51px; +} +.inventory_quest_scroll_vice3_locked { + background-image: url(spritesmith3.png); + background-position: -942px -1558px; + width: 48px; + height: 51px; +} +.quest_atom1 { + background-image: url(spritesmith3.png); + background-position: -1103px 0px; + width: 250px; + height: 150px; +} +.quest_atom2 { + background-image: url(spritesmith3.png); + background-position: -1103px -740px; + width: 207px; + height: 138px; +} +.quest_atom3 { + background-image: url(spritesmith3.png); + background-position: -628px -660px; + width: 216px; + height: 180px; +} +.quest_basilist { + background-image: url(spritesmith3.png); + background-position: -1103px -598px; + width: 189px; + height: 141px; +} +.quest_dilatory { + background-image: url(spritesmith3.png); + background-position: -220px 0px; + width: 219px; + height: 219px; +} +.quest_dilatory_derby { + background-image: url(spritesmith3.png); + background-position: -220px -440px; + width: 219px; + height: 219px; +} +.quest_egg_plainEgg { + background-image: url(spritesmith3.png); + background-position: -305px -1558px; + width: 48px; + height: 51px; +} +.quest_evilsanta { + background-image: url(spritesmith3.png); + background-position: -196px -1055px; + width: 118px; + height: 131px; +} +.quest_ghost_stag { + background-image: url(spritesmith3.png); + background-position: 0px -220px; + width: 219px; + height: 219px; +} +.quest_goldenknight1_testimony { + background-image: url(spritesmith3.png); + background-position: -1430px -1649px; + width: 48px; + height: 51px; +} +.quest_goldenknight2 { + background-image: url(spritesmith3.png); + background-position: -1103px -302px; + width: 250px; + height: 150px; +} +.quest_goldenknight3 { + background-image: url(spritesmith3.png); + background-position: -1103px -151px; + width: 250px; + height: 150px; +} +.quest_gryphon { + background-image: url(spritesmith3.png); + background-position: -217px -877px; + width: 216px; + height: 177px; +} +.quest_harpy { + background-image: url(spritesmith3.png); + background-position: 0px 0px; + width: 219px; + height: 219px; +} +.quest_hedgehog { + background-image: url(spritesmith3.png); + background-position: -217px -660px; + width: 219px; + height: 186px; +} +.quest_moonstone1_moonstone { + background-image: url(spritesmith3.png); + background-position: -1759px -1214px; + width: 30px; + height: 30px; +} +.quest_moonstone2 { + background-image: url(spritesmith3.png); + background-position: -440px -440px; + width: 219px; + height: 219px; +} +.quest_moonstone3 { + background-image: url(spritesmith3.png); + background-position: -660px -440px; + width: 219px; + height: 219px; +} +.quest_octopus { + background-image: url(spritesmith3.png); + background-position: -880px 0px; + width: 222px; + height: 177px; +} +.quest_owl { + background-image: url(spritesmith3.png); + background-position: -660px -220px; + width: 219px; + height: 219px; +} +.quest_penguin { + background-image: url(spritesmith3.png); + background-position: -437px -660px; + width: 190px; + height: 183px; +} +.quest_rat { + background-image: url(spritesmith3.png); + background-position: -660px 0px; + width: 219px; + height: 219px; +} +.quest_rock { + background-image: url(spritesmith3.png); + background-position: 0px -660px; + width: 216px; + height: 216px; +} +.quest_rooster { + background-image: url(spritesmith3.png); + background-position: -434px -877px; + width: 213px; + height: 174px; +} +.quest_spider { + background-image: url(spritesmith3.png); + background-position: -648px -877px; + width: 250px; + height: 150px; +} +.quest_stressbeast { + background-image: url(spritesmith3.png); + background-position: 0px -440px; + width: 219px; + height: 219px; +} +.quest_stressbeast_bailey { + background-image: url(spritesmith3.png); + background-position: -440px -220px; + width: 219px; + height: 219px; +} +.quest_stressbeast_guide { + background-image: url(spritesmith3.png); + background-position: -440px 0px; + width: 219px; + height: 219px; +} +.quest_stressbeast_stables { + background-image: url(spritesmith3.png); + background-position: -220px -220px; + width: 219px; + height: 219px; +} +.quest_trex { + background-image: url(spritesmith3.png); + background-position: -880px -534px; + width: 204px; + height: 177px; +} +.quest_trex_undead { + background-image: url(spritesmith3.png); + background-position: 0px -877px; + width: 216px; + height: 177px; +} +.quest_vice1 { + background-image: url(spritesmith3.png); + background-position: -880px -178px; + width: 216px; + height: 177px; +} +.quest_vice2_lightCrystal { + background-image: url(spritesmith3.png); + background-position: -1759px -492px; + width: 40px; + height: 40px; +} +.quest_vice3 { + background-image: url(spritesmith3.png); + background-position: -880px -356px; + width: 216px; + height: 177px; +} +.shop_copper { + background-image: url(spritesmith3.png); + background-position: -1759px -1318px; + width: 32px; + height: 22px; +} +.shop_eyes { + background-image: url(spritesmith3.png); + background-position: -1759px -615px; + width: 40px; + height: 40px; +} +.shop_gold { + background-image: url(spritesmith3.png); + background-position: -1759px -1295px; + width: 32px; + height: 22px; +} +.shop_opaquePotion { + background-image: url(spritesmith3.png); + background-position: -1759px -697px; + width: 40px; + height: 40px; +} +.shop_potion { + background-image: url(spritesmith3.png); + background-position: -1759px -738px; + width: 40px; + height: 40px; +} +.shop_reroll { + background-image: url(spritesmith3.png); + background-position: -1759px -779px; + width: 40px; + height: 40px; +} +.shop_silver { + background-image: url(spritesmith3.png); + background-position: -1759px -1272px; + width: 32px; + height: 22px; +} +.shop_snowball { + background-image: url(spritesmith3.png); + background-position: -1759px -1181px; + width: 32px; + height: 32px; +} +.shop_spookDust { + background-image: url(spritesmith3.png); + background-position: -1759px -1148px; + width: 32px; + height: 32px; +} +.Pet_Egg_BearCub { + background-image: url(spritesmith3.png); + background-position: -746px -1558px; + width: 48px; + height: 51px; +} +.Pet_Egg_Cactus { + background-image: url(spritesmith3.png); + background-position: -697px -1558px; + width: 48px; + height: 51px; +} +.Pet_Egg_Deer { + background-image: url(spritesmith3.png); + background-position: -648px -1558px; + width: 48px; + height: 51px; +} +.Pet_Egg_Dragon { + background-image: url(spritesmith3.png); + background-position: -599px -1558px; + width: 48px; + height: 51px; +} +.Pet_Egg_Egg { + background-image: url(spritesmith3.png); + background-position: -550px -1558px; + width: 48px; + height: 51px; +} +.Pet_Egg_FlyingPig { + background-image: url(spritesmith3.png); + background-position: -501px -1558px; + width: 48px; + height: 51px; +} +.Pet_Egg_Fox { + background-image: url(spritesmith3.png); + background-position: -452px -1558px; + width: 48px; + height: 51px; +} +.Pet_Egg_Gryphon { + background-image: url(spritesmith3.png); + background-position: -403px -1558px; + width: 48px; + height: 51px; +} +.Pet_Egg_Hedgehog { + background-image: url(spritesmith3.png); + background-position: -354px -1558px; + width: 48px; + height: 51px; +} +.Pet_Egg_LionCub { + background-image: url(spritesmith3.png); + background-position: -256px -1558px; + width: 48px; + height: 51px; +} +.Pet_Egg_Octopus { + background-image: url(spritesmith3.png); + background-position: -1371px -1285px; + width: 48px; + height: 51px; +} +.Pet_Egg_Owl { + background-image: url(spritesmith3.png); + background-position: -893px -1558px; + width: 48px; + height: 51px; +} +.Pet_Egg_PandaCub { + background-image: url(spritesmith3.png); + background-position: -844px -1558px; + width: 48px; + height: 51px; +} +.Pet_Egg_Parrot { + background-image: url(spritesmith3.png); + background-position: -795px -1558px; + width: 48px; + height: 51px; +} diff --git a/common/dist/sprites/spritesmith3.png b/common/dist/sprites/spritesmith3.png index 3659f0c64f..5789e22825 100644 Binary files a/common/dist/sprites/spritesmith3.png and b/common/dist/sprites/spritesmith3.png differ diff --git a/common/dist/sprites/spritesmith4.css b/common/dist/sprites/spritesmith4.css index cdcfc7f87d..98a668b106 100644 --- a/common/dist/sprites/spritesmith4.css +++ b/common/dist/sprites/spritesmith4.css @@ -1 +1,2214 @@ -.Pet_Egg_Penguin{background-image:url(spritesmith4.png);background-position:-1802px -1218px;width:48px;height:51px}.Pet_Egg_PolarBear{background-position:0 -2122px}.Pet_Egg_PolarBear,.Pet_Egg_Rat{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Egg_Rat{background-position:-791px -2014px}.Pet_Egg_Rock{background-position:-2014px -794px}.Pet_Egg_Rock,.Pet_Egg_Rooster{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Egg_Rooster{background-position:-2120px -474px}.Pet_Egg_Seahorse{background-position:-1215px -1802px}.Pet_Egg_Seahorse,.Pet_Egg_Spider{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Egg_Spider{background-position:0 -2174px}.Pet_Egg_TRex{background-position:-49px -2174px}.Pet_Egg_TRex,.Pet_Egg_TigerCub{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Egg_TigerCub{background-position:-1484px -1590px}.Pet_Egg_Wolf{background-position:-1590px -1484px;width:48px;height:51px}.Pet_Egg_Wolf,.Pet_Food_Cake_Base{background-image:url(spritesmith4.png)}.Pet_Food_Cake_Base{background-position:-2183px 0;width:43px;height:43px}.Pet_Food_Cake_CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1908px -1058px;width:42px;height:44px}.Pet_Food_Cake_CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1957px -954px;width:43px;height:45px}.Pet_Food_Cake_Desert{background-position:-141px -2174px;height:44px}.Pet_Food_Cake_Desert,.Pet_Food_Cake_Golden{background-image:url(spritesmith4.png);width:43px}.Pet_Food_Cake_Golden{background-position:-2183px -44px;height:42px}.Pet_Food_Cake_Red{background-position:-840px -2014px}.Pet_Food_Cake_Red,.Pet_Food_Cake_Shade{background-image:url(spritesmith4.png);width:43px;height:44px}.Pet_Food_Cake_Shade{background-position:-954px -1960px}.Pet_Food_Cake_Skeleton{background-image:url(spritesmith4.png);background-position:-98px -2174px;width:42px;height:47px}.Pet_Food_Cake_White{background-position:-318px -2156px;width:44px}.Pet_Food_Cake_White,.Pet_Food_Cake_Zombie{background-image:url(spritesmith4.png);height:44px}.Pet_Food_Cake_Zombie{background-position:-1052px -1908px;width:45px}.Pet_Food_Candy_Base{background-position:-2120px -422px}.Pet_Food_Candy_Base,.Pet_Food_Candy_CottonCandyBlue{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Food_Candy_CottonCandyBlue{background-position:-1696px -1272px}.Pet_Food_Candy_CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1908px -1006px;width:48px;height:51px}.Pet_Food_Candy_Desert{background-position:-1003px -1908px}.Pet_Food_Candy_Desert,.Pet_Food_Candy_Golden{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Food_Candy_Golden{background-position:-2120px -370px}.Pet_Food_Candy_Red{background-position:-1696px -1324px}.Pet_Food_Candy_Red,.Pet_Food_Candy_Shade{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Food_Candy_Shade{background-position:-1166px -1802px}.Pet_Food_Candy_Skeleton{background-position:-2014px -742px}.Pet_Food_Candy_Skeleton,.Pet_Food_Candy_White{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Food_Candy_White{background-position:-742px -2014px}.Pet_Food_Candy_Zombie{background-position:-1802px -1166px}.Pet_Food_Candy_Zombie,.Pet_Food_Chocolate{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Food_Chocolate{background-position:-2120px -318px}.Pet_Food_CottonCandyBlue{background-position:-367px -2104px}.Pet_Food_CottonCandyBlue,.Pet_Food_CottonCandyPink{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Food_CottonCandyPink{background-position:-2134px -52px}.Pet_Food_Fish{background-position:-2134px 0}.Pet_Food_Fish,.Pet_Food_Honey{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Food_Honey{background-position:-1908px -954px}.Pet_Food_Meat{background-position:-954px -1908px}.Pet_Food_Meat,.Pet_Food_Milk{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Food_Milk{background-position:-318px -2104px}.Pet_Food_Potatoe{background-position:-147px -2122px}.Pet_Food_Potatoe,.Pet_Food_RottenMeat{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Food_RottenMeat{background-position:-98px -2122px}.Pet_Food_Saddle{background-position:-49px -2122px}.Pet_Food_Saddle,.Pet_Food_Strawberry{background-image:url(spritesmith4.png);width:48px;height:51px}.Pet_Food_Strawberry{background-position:-1745px -1272px}.Mount_Body_BearCub-Base{background-image:url(spritesmith4.png);background-position:-212px -726px;width:105px;height:105px}.Mount_Body_BearCub-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-636px -424px;width:105px;height:105px}.Mount_Body_BearCub-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-530px -560px;width:105px;height:105px}.Mount_Body_BearCub-Desert{background-position:-424px -666px}.Mount_Body_BearCub-Desert,.Mount_Body_BearCub-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_BearCub-Golden{background-position:-318px -726px}.Mount_Body_BearCub-Polar{background-position:-742px -318px}.Mount_Body_BearCub-Polar,.Mount_Body_BearCub-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_BearCub-Red{background-position:-636px -530px}.Mount_Body_BearCub-Shade{background-position:-832px -106px}.Mount_Body_BearCub-Shade,.Mount_Body_BearCub-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_BearCub-Skeleton{background-position:0 -850px}.Mount_Body_BearCub-White{background-position:-530px -666px}.Mount_Body_BearCub-White,.Mount_Body_BearCub-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_BearCub-Zombie{background-position:-742px -424px}.Mount_Body_Cactus-Base{background-position:-106px -850px}.Mount_Body_Cactus-Base,.Mount_Body_Cactus-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Cactus-CottonCandyBlue{background-position:-212px -832px}.Mount_Body_Cactus-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-832px -212px;width:105px;height:105px}.Mount_Body_Cactus-Desert{background-image:url(spritesmith4.png);background-position:-862px 0;width:105px;height:105px}.Mount_Body_Cactus-Golden{background-position:-424px -772px}.Mount_Body_Cactus-Golden,.Mount_Body_Cactus-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Cactus-Red{background-position:-318px -832px}.Mount_Body_Cactus-Shade{background-position:-636px -636px}.Mount_Body_Cactus-Shade,.Mount_Body_Cactus-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Cactus-Skeleton{background-position:-848px -318px}.Mount_Body_Cactus-White{background-position:-742px -530px}.Mount_Body_Cactus-White,.Mount_Body_Cactus-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Cactus-Zombie{background-position:-530px -772px}.Mount_Body_Deer-Base{background-position:-938px -106px}.Mount_Body_Deer-Base,.Mount_Body_Deer-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Deer-CottonCandyBlue{background-position:-848px -424px}.Mount_Body_Deer-CottonCandyPink{background-position:0 -956px}.Mount_Body_Deer-CottonCandyPink,.Mount_Body_Deer-Desert{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Deer-Desert{background-position:-938px -212px}.Mount_Body_Deer-Golden{background-position:-212px -938px}.Mount_Body_Deer-Golden,.Mount_Body_Deer-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Deer-Red{background-position:-106px -956px}.Mount_Body_Deer-Shade{background-position:-968px 0}.Mount_Body_Deer-Shade,.Mount_Body_Deer-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Deer-Skeleton{background-position:-424px -878px}.Mount_Body_Deer-White{background-position:-636px -742px}.Mount_Body_Deer-White,.Mount_Body_Deer-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Deer-Zombie{background-position:-742px -636px}.Mount_Body_Dragon-Base{background-position:-318px -938px}.Mount_Body_Dragon-Base,.Mount_Body_Dragon-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Dragon-CottonCandyBlue{background-position:-848px -530px}.Mount_Body_Dragon-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-954px -318px;width:105px;height:105px}.Mount_Body_Dragon-Desert{background-position:-530px -878px}.Mount_Body_Dragon-Desert,.Mount_Body_Dragon-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Dragon-Golden{background-position:-954px -424px}.Mount_Body_Dragon-Red{background-position:-742px -742px}.Mount_Body_Dragon-Red,.Mount_Body_Dragon-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Dragon-Shade{background-position:-1044px -106px}.Mount_Body_Dragon-Skeleton{background-position:-848px -636px}.Mount_Body_Dragon-Skeleton,.Mount_Body_Dragon-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Dragon-White{background-position:-636px -848px}.Mount_Body_Dragon-Zombie{background-position:0 -1062px}.Mount_Body_Dragon-Zombie,.Mount_Body_FlyingPig-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_FlyingPig-Base{background-position:-212px -1044px}.Mount_Body_FlyingPig-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1044px -212px;width:105px;height:105px}.Mount_Body_FlyingPig-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-106px -1062px;width:105px;height:105px}.Mount_Body_FlyingPig-Desert{background-image:url(spritesmith4.png);background-position:-424px -984px;width:105px;height:105px}.Mount_Body_FlyingPig-Golden{background-position:-1074px 0}.Mount_Body_FlyingPig-Golden,.Mount_Body_FlyingPig-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_FlyingPig-Red{background-position:-954px -530px}.Mount_Body_FlyingPig-Shade{background-position:-318px -1044px}.Mount_Body_FlyingPig-Shade,.Mount_Body_FlyingPig-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_FlyingPig-Skeleton{background-position:-1060px -318px}.Mount_Body_FlyingPig-White{background-position:-530px -984px}.Mount_Body_FlyingPig-White,.Mount_Body_FlyingPig-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_FlyingPig-Zombie{background-position:-742px -848px}.Mount_Body_Fox-Base{background-position:-848px -742px}.Mount_Body_Fox-Base,.Mount_Body_Fox-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Fox-CottonCandyBlue{background-position:-1060px -424px}.Mount_Body_Fox-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-636px -954px;width:105px;height:105px}.Mount_Body_Fox-Desert{background-position:-954px -636px}.Mount_Body_Fox-Desert,.Mount_Body_Fox-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Fox-Golden{background-position:-1150px -106px}.Mount_Body_Fox-Red{background-position:0 -1168px}.Mount_Body_Fox-Red,.Mount_Body_Fox-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Fox-Shade{background-position:-1150px -212px}.Mount_Body_Fox-Skeleton{background-position:-212px -1150px}.Mount_Body_Fox-Skeleton,.Mount_Body_Fox-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Fox-White{background-position:-424px -1090px}.Mount_Body_Fox-Zombie{background-position:-106px -1168px}.Mount_Body_Fox-Zombie,.Mount_Body_Gryphon-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Gryphon-Base{background-position:-1180px 0}.Mount_Body_Gryphon-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1060px -530px;width:105px;height:105px}.Mount_Body_Gryphon-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-318px -1150px;width:105px;height:105px}.Mount_Body_Gryphon-Desert{background-position:-848px -848px}.Mount_Body_Gryphon-Desert,.Mount_Body_Gryphon-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Gryphon-Golden{background-position:-954px -742px}.Mount_Body_Gryphon-Red{background-position:-1166px -318px}.Mount_Body_Gryphon-Red,.Mount_Body_Gryphon-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Gryphon-Shade{background-position:-742px -954px}.Mount_Body_Gryphon-Skeleton{background-position:-530px -1090px}.Mount_Body_Gryphon-Skeleton,.Mount_Body_Gryphon-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Gryphon-White{background-position:-1060px -636px}.Mount_Body_Gryphon-Zombie{background-position:-636px -1060px}.Mount_Body_Gryphon-Zombie,.Mount_Body_Hedgehog-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Hedgehog-Base{background-position:-1166px -424px}.Mount_Body_Hedgehog-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1256px -106px;width:105px;height:105px}.Mount_Body_Hedgehog-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-424px -1196px;width:105px;height:105px}.Mount_Body_Hedgehog-Desert{background-position:-1256px -212px}.Mount_Body_Hedgehog-Desert,.Mount_Body_Hedgehog-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Hedgehog-Golden{background-position:-212px -1256px}.Mount_Body_Hedgehog-Red{background-position:0 -1274px}.Mount_Body_Hedgehog-Red,.Mount_Body_Hedgehog-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Hedgehog-Shade{background-position:-954px -848px}.Mount_Body_Hedgehog-Skeleton{background-position:-848px -954px}.Mount_Body_Hedgehog-Skeleton,.Mount_Body_Hedgehog-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Hedgehog-White{background-position:-106px -1274px}.Mount_Body_Hedgehog-Zombie{background-position:-1166px -530px}.Mount_Body_Hedgehog-Zombie,.Mount_Body_LionCub-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_LionCub-Base{background-position:-1286px 0}.Mount_Body_LionCub-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1060px -742px;width:105px;height:105px}.Mount_Body_LionCub-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-742px -1060px;width:105px;height:105px}.Mount_Body_LionCub-Desert{background-position:-318px -1256px}.Mount_Body_LionCub-Desert,.Mount_Body_LionCub-Ethereal{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_LionCub-Ethereal{background-position:-530px -1196px}.Mount_Body_LionCub-Golden{background-position:-1272px -318px}.Mount_Body_LionCub-Golden,.Mount_Body_LionCub-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_LionCub-Red{background-position:-636px -1166px}.Mount_Body_LionCub-Shade{background-position:-1166px -636px}.Mount_Body_LionCub-Shade,.Mount_Body_LionCub-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_LionCub-Skeleton{background-position:-1272px -424px}.Mount_Body_LionCub-White{background-position:-954px -954px}.Mount_Body_LionCub-White,.Mount_Body_LionCub-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_LionCub-Zombie{background-position:-848px -1060px}.Mount_Body_Mammoth-Base{background-image:url(spritesmith4.png);background-position:-106px -408px;width:105px;height:123px}.Mount_Body_MantisShrimp-Base{background-image:url(spritesmith4.png);background-position:-1362px -106px;width:108px;height:105px}.Mount_Body_Octopus-Base{background-image:url(spritesmith4.png);background-position:-424px -1302px;width:105px;height:105px}.Mount_Body_Octopus-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1272px -530px;width:105px;height:105px}.Mount_Body_Octopus-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-212px -1362px;width:105px;height:105px}.Mount_Body_Octopus-Desert{background-image:url(spritesmith4.png);background-position:-1362px -212px;width:105px;height:105px}.Mount_Body_Octopus-Golden{background-position:0 -1380px}.Mount_Body_Octopus-Golden,.Mount_Body_Octopus-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Octopus-Red{background-position:-742px -1166px}.Mount_Body_Octopus-Shade{background-position:-1166px -742px}.Mount_Body_Octopus-Shade,.Mount_Body_Octopus-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Octopus-Skeleton{background-position:-106px -1380px}.Mount_Body_Octopus-White{background-position:-1392px 0}.Mount_Body_Octopus-White,.Mount_Body_Octopus-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Octopus-Zombie{background-position:-318px -1362px}.Mount_Body_Owl-Base{background-position:-530px -1302px}.Mount_Body_Owl-Base,.Mount_Body_Owl-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Owl-CottonCandyBlue{background-position:-1378px -318px}.Mount_Body_Owl-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1272px -636px;width:105px;height:105px}.Mount_Body_Owl-Desert{background-position:-636px -1272px}.Mount_Body_Owl-Desert,.Mount_Body_Owl-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Owl-Golden{background-position:-954px -1060px}.Mount_Body_Owl-Red{background-position:-1060px -954px}.Mount_Body_Owl-Red,.Mount_Body_Owl-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Owl-Shade{background-position:-1378px -424px}.Mount_Body_Owl-Skeleton{background-position:-848px -1166px}.Mount_Body_Owl-Skeleton,.Mount_Body_Owl-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Owl-White{background-position:-1166px -848px}.Mount_Body_Owl-Zombie{background-position:-424px -1408px}.Mount_Body_Owl-Zombie,.Mount_Body_PandaCub-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_PandaCub-Base{background-position:-742px -1272px}.Mount_Body_PandaCub-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1272px -742px;width:105px;height:105px}.Mount_Body_PandaCub-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1471px -106px;width:105px;height:105px}.Mount_Body_PandaCub-Desert{background-image:url(spritesmith4.png);background-position:-1378px -530px;width:105px;height:105px}.Mount_Body_PandaCub-Golden{background-position:-1468px -212px}.Mount_Body_PandaCub-Golden,.Mount_Body_PandaCub-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_PandaCub-Red{background-position:-212px -1468px}.Mount_Body_PandaCub-Shade{background-position:0 -1486px}.Mount_Body_PandaCub-Shade,.Mount_Body_PandaCub-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_PandaCub-Skeleton{background-position:-106px -1486px}.Mount_Body_PandaCub-White{background-position:-1498px 0}.Mount_Body_PandaCub-White,.Mount_Body_PandaCub-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_PandaCub-Zombie{background-position:-1060px -1060px}.Mount_Body_Parrot-Base{background-position:-318px -1468px}.Mount_Body_Parrot-Base,.Mount_Body_Parrot-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Parrot-CottonCandyBlue{background-position:-530px -1408px}.Mount_Body_Parrot-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1166px -954px;width:105px;height:105px}.Mount_Body_Parrot-Desert{background-position:-954px -1166px}.Mount_Body_Parrot-Desert,.Mount_Body_Parrot-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Parrot-Golden{background-position:-636px -1378px}.Mount_Body_Parrot-Red{background-position:-1378px -636px}.Mount_Body_Parrot-Red,.Mount_Body_Parrot-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Parrot-Shade{background-position:-1484px -318px}.Mount_Body_Parrot-Skeleton{background-position:-1272px -848px}.Mount_Body_Parrot-Skeleton,.Mount_Body_Parrot-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Parrot-White{background-position:-848px -1272px}.Mount_Body_Parrot-Zombie{background-position:-1484px -424px}.Mount_Body_Parrot-Zombie,.Mount_Body_Penguin-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Penguin-Base{background-position:-742px -1378px}.Mount_Body_Penguin-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1378px -742px;width:105px;height:105px}.Mount_Body_Penguin-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-424px -1514px;width:105px;height:105px}.Mount_Body_Penguin-Desert{background-image:url(spritesmith4.png);background-position:-1484px -530px;width:105px;height:105px}.Mount_Body_Penguin-Golden{background-position:-1060px -1166px}.Mount_Body_Penguin-Golden,.Mount_Body_Penguin-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Penguin-Red{background-position:-1166px -1060px}.Mount_Body_Penguin-Shade{background-position:-1577px -106px}.Mount_Body_Penguin-Shade,.Mount_Body_Penguin-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Penguin-Skeleton{background-position:-212px -1574px}.Mount_Body_Penguin-White{background-position:-1574px -212px}.Mount_Body_Penguin-White,.Mount_Body_Penguin-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Penguin-Zombie{background-position:-408px -136px}.Mount_Body_Rat-Base{background-position:-1272px -954px}.Mount_Body_Rat-Base,.Mount_Body_Rat-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rat-CottonCandyBlue{background-position:0 -1592px}.Mount_Body_Rat-CottonCandyPink{background-position:-106px -1592px}.Mount_Body_Rat-CottonCandyPink,.Mount_Body_Rat-Desert{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rat-Desert{background-position:-1604px 0}.Mount_Body_Rat-Golden{background-position:-530px -1514px}.Mount_Body_Rat-Golden,.Mount_Body_Rat-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rat-Red{background-position:-318px -1574px}.Mount_Body_Rat-Shade{background-position:-1484px -636px}.Mount_Body_Rat-Shade,.Mount_Body_Rat-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rat-Skeleton{background-position:-636px -1484px}.Mount_Body_Rat-White{background-position:-848px -1378px}.Mount_Body_Rat-White,.Mount_Body_Rat-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rat-Zombie{background-position:-1378px -848px}.Mount_Body_Rock-Base{background-position:-1590px -318px}.Mount_Body_Rock-Base,.Mount_Body_Rock-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rock-CottonCandyBlue{background-position:-1590px -424px}.Mount_Body_Rock-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1166px -1166px;width:105px;height:105px}.Mount_Body_Rock-Desert{background-position:-1272px -1060px}.Mount_Body_Rock-Desert,.Mount_Body_Rock-Gold{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rock-Gold{background-position:-1060px -1272px}.Mount_Body_Rock-Red{background-position:-742px -1484px}.Mount_Body_Rock-Red,.Mount_Body_Rock-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rock-Shade{background-position:-1484px -742px}.Mount_Body_Rock-Skeleton{background-position:-424px -1620px}.Mount_Body_Rock-Skeleton,.Mount_Body_Rock-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rock-White{background-position:-1590px -530px}.Mount_Body_Rock-Zombie{background-position:-954px -1378px}.Mount_Body_Rock-Zombie,.Mount_Body_Rooster-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rooster-Base{background-position:-1378px -954px}.Mount_Body_Rooster-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1683px -106px;width:105px;height:105px}.Mount_Body_Rooster-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1680px -212px;width:105px;height:105px}.Mount_Body_Rooster-Desert{background-position:-212px -1680px}.Mount_Body_Rooster-Desert,.Mount_Body_Rooster-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rooster-Golden{background-position:0 -1698px}.Mount_Body_Rooster-Red{background-position:-106px -1698px}.Mount_Body_Rooster-Red,.Mount_Body_Rooster-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rooster-Shade{background-position:-530px -1620px}.Mount_Body_Rooster-Skeleton{background-position:-1484px -848px}.Mount_Body_Rooster-Skeleton,.Mount_Body_Rooster-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Rooster-White{background-position:-848px -1484px}.Mount_Body_Rooster-Zombie{background-position:-318px -1680px}.Mount_Body_Rooster-Zombie,.Mount_Body_Seahorse-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Seahorse-Base{background-position:-1710px 0}.Mount_Body_Seahorse-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1590px -636px;width:105px;height:105px}.Mount_Body_Seahorse-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-636px -1590px;width:105px;height:105px}.Mount_Body_Seahorse-Desert{background-image:url(spritesmith4.png);background-position:-1166px -1272px;width:105px;height:105px}.Mount_Body_Seahorse-Golden{background-position:-1272px -1166px}.Mount_Body_Seahorse-Golden,.Mount_Body_Seahorse-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Seahorse-Red{background-position:-1696px -318px}.Mount_Body_Seahorse-Shade{background-position:-1060px -1378px}.Mount_Body_Seahorse-Shade,.Mount_Body_Seahorse-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Seahorse-Skeleton{background-position:-1378px -1060px}.Mount_Body_Seahorse-White{background-position:-1696px -424px}.Mount_Body_Seahorse-White,.Mount_Body_Seahorse-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Seahorse-Zombie{background-position:-742px -1590px}.Mount_Body_Spider-Base{background-position:-1590px -742px}.Mount_Body_Spider-Base,.Mount_Body_Spider-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Spider-CottonCandyBlue{background-position:-954px -1484px}.Mount_Body_Spider-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1484px -954px;width:105px;height:105px}.Mount_Body_Spider-Desert{background-image:url(spritesmith4.png);background-position:-1696px -530px;width:105px;height:105px}.Mount_Body_Spider-Golden{background-position:-424px -1726px}.Mount_Body_Spider-Golden,.Mount_Body_Spider-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Spider-Red{background-position:-1789px -106px}.Mount_Body_Spider-Shade{background-position:-212px -1786px}.Mount_Body_Spider-Shade,.Mount_Body_Spider-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Spider-Skeleton{background-position:-1786px -212px}.Mount_Body_Spider-White{background-position:-1272px -1272px}.Mount_Body_Spider-White,.Mount_Body_Spider-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Spider-Zombie{background-position:-848px -1590px}.Mount_Body_TRex-Base{background-position:-136px -136px}.Mount_Body_TRex-Base,.Mount_Body_TRex-CottonCandyBlue{background-image:url(spritesmith4.png);width:135px;height:135px}.Mount_Body_TRex-CottonCandyBlue{background-position:0 -272px}.Mount_Body_TRex-CottonCandyPink{background-position:-272px 0}.Mount_Body_TRex-CottonCandyPink,.Mount_Body_TRex-Desert{background-image:url(spritesmith4.png);width:135px;height:135px}.Mount_Body_TRex-Desert{background-position:0 0}.Mount_Body_TRex-Golden{background-position:-136px -272px}.Mount_Body_TRex-Golden,.Mount_Body_TRex-Red{background-image:url(spritesmith4.png);width:135px;height:135px}.Mount_Body_TRex-Red{background-position:-272px -272px}.Mount_Body_TRex-Shade{background-position:-408px 0}.Mount_Body_TRex-Shade,.Mount_Body_TRex-Skeleton{background-image:url(spritesmith4.png);width:135px;height:135px}.Mount_Body_TRex-Skeleton{background-position:-272px -136px}.Mount_Body_TRex-White{background-position:0 -136px}.Mount_Body_TRex-White,.Mount_Body_TRex-Zombie{background-image:url(spritesmith4.png);width:135px;height:135px}.Mount_Body_TRex-Zombie{background-position:-136px 0}.Mount_Body_TigerCub-Base{background-image:url(spritesmith4.png);background-position:-1484px -1060px;width:105px;height:105px}.Mount_Body_TigerCub-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1060px -1484px;width:105px;height:105px}.Mount_Body_TigerCub-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1802px -318px;width:105px;height:105px}.Mount_Body_TigerCub-Desert{background-position:-1802px -424px}.Mount_Body_TigerCub-Desert,.Mount_Body_TigerCub-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_TigerCub-Golden{background-position:-1696px -742px}.Mount_Body_TigerCub-Red{background-position:-742px -1696px}.Mount_Body_TigerCub-Red,.Mount_Body_TigerCub-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_TigerCub-Shade{background-position:-1590px -954px}.Mount_Body_TigerCub-Skeleton{background-position:-954px -1590px}.Mount_Body_TigerCub-Skeleton,.Mount_Body_TigerCub-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_TigerCub-White{background-position:-1378px -1272px}.Mount_Body_TigerCub-Zombie{background-position:-1272px -1378px}.Mount_Body_TigerCub-Zombie,.Mount_Body_Turkey-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Turkey-Base{background-position:-1802px -530px}.Mount_Body_Wolf-Base{background-position:-424px -1832px}.Mount_Body_Wolf-Base,.Mount_Body_Wolf-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Wolf-CottonCandyBlue{background-position:-1166px -1484px}.Mount_Body_Wolf-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1484px -1166px;width:105px;height:105px}.Mount_Body_Wolf-Desert{background-position:-1696px -848px}.Mount_Body_Wolf-Desert,.Mount_Body_Wolf-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Wolf-Golden{background-position:-848px -1696px}.Mount_Body_Wolf-Red{background-position:-1895px -106px}.Mount_Body_Wolf-Red,.Mount_Body_Wolf-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Wolf-Shade{background-position:-212px -1892px}.Mount_Body_Wolf-Skeleton{background-position:-1892px -212px}.Mount_Body_Wolf-Skeleton,.Mount_Body_Wolf-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Body_Wolf-White{background-position:-530px -1832px}.Mount_Body_Wolf-Zombie{background-position:0 -1910px}.Mount_Body_Wolf-Zombie,.Mount_Head_BearCub-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_BearCub-Base{background-position:-1060px -1590px}.Mount_Head_BearCub-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-636px -1802px;width:105px;height:105px}.Mount_Head_BearCub-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1590px -1060px;width:105px;height:105px}.Mount_Head_BearCub-Desert{background-position:-106px -1910px}.Mount_Head_BearCub-Desert,.Mount_Head_BearCub-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_BearCub-Golden{background-position:-1805px -636px}.Mount_Head_BearCub-Polar{background-position:-318px -1892px}.Mount_Head_BearCub-Polar,.Mount_Head_BearCub-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_BearCub-Red{background-position:-1922px 0}.Mount_Head_BearCub-Shade{background-position:-1908px -318px}.Mount_Head_BearCub-Shade,.Mount_Head_BearCub-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_BearCub-Skeleton{background-position:-954px -1696px}.Mount_Head_BearCub-White{background-position:-1696px -954px}.Mount_Head_BearCub-White,.Mount_Head_BearCub-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_BearCub-Zombie{background-position:-1802px -742px}.Mount_Head_Cactus-Base{background-position:-742px -1802px}.Mount_Head_Cactus-Base,.Mount_Head_Cactus-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Cactus-CottonCandyBlue{background-position:-1378px -1378px}.Mount_Head_Cactus-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1272px -1484px;width:105px;height:105px}.Mount_Head_Cactus-Desert{background-image:url(spritesmith4.png);background-position:-1908px -424px;width:105px;height:105px}.Mount_Head_Cactus-Golden{background-position:-1484px -1272px}.Mount_Head_Cactus-Golden,.Mount_Head_Cactus-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Cactus-Red{background-position:-1590px -1166px}.Mount_Head_Cactus-Shade{background-position:-1166px -1590px}.Mount_Head_Cactus-Shade,.Mount_Head_Cactus-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Cactus-Skeleton{background-position:-1908px -530px}.Mount_Head_Cactus-White{background-position:-424px -1938px}.Mount_Head_Cactus-White,.Mount_Head_Cactus-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Cactus-Zombie{background-position:-848px -1802px}.Mount_Head_Deer-Base{background-position:-1802px -848px}.Mount_Head_Deer-Base,.Mount_Head_Deer-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Deer-CottonCandyBlue{background-position:-1696px -1060px}.Mount_Head_Deer-CottonCandyPink{background-position:-1060px -1696px}.Mount_Head_Deer-CottonCandyPink,.Mount_Head_Deer-Desert{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Deer-Desert{background-position:-2001px -106px}.Mount_Head_Deer-Golden{background-position:-530px -1938px}.Mount_Head_Deer-Golden,.Mount_Head_Deer-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Deer-Red{background-position:-212px -1998px}.Mount_Head_Deer-Shade{background-position:-1998px -212px}.Mount_Head_Deer-Shade,.Mount_Head_Deer-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Deer-Skeleton{background-position:-636px -1908px}.Mount_Head_Deer-White{background-position:-1911px -636px}.Mount_Head_Deer-White,.Mount_Head_Deer-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Deer-Zombie{background-position:0 -2016px}.Mount_Head_Dragon-Base{background-position:-106px -2016px}.Mount_Head_Dragon-Base,.Mount_Head_Dragon-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Dragon-CottonCandyBlue{background-position:-318px -1998px}.Mount_Head_Dragon-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1378px -1484px;width:105px;height:105px}.Mount_Head_Dragon-Desert{background-position:-1484px -1378px}.Mount_Head_Dragon-Desert,.Mount_Head_Dragon-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Dragon-Golden{background-position:-2028px 0}.Mount_Head_Dragon-Red{background-position:-1272px -1590px}.Mount_Head_Dragon-Red,.Mount_Head_Dragon-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Dragon-Shade{background-position:-1590px -1272px}.Mount_Head_Dragon-Skeleton{background-position:-2014px -318px}.Mount_Head_Dragon-Skeleton,.Mount_Head_Dragon-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Dragon-White{background-position:-1802px -954px}.Mount_Head_Dragon-Zombie{background-position:-954px -1802px}.Mount_Head_Dragon-Zombie,.Mount_Head_FlyingPig-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_FlyingPig-Base{background-position:-1908px -742px}.Mount_Head_FlyingPig-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-742px -1908px;width:105px;height:105px}.Mount_Head_FlyingPig-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1696px -1166px;width:105px;height:105px}.Mount_Head_FlyingPig-Desert{background-image:url(spritesmith4.png);background-position:-2014px -424px;width:105px;height:105px}.Mount_Head_FlyingPig-Golden{background-position:-1166px -1696px}.Mount_Head_FlyingPig-Golden,.Mount_Head_FlyingPig-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_FlyingPig-Red{background-position:-2014px -530px}.Mount_Head_FlyingPig-Shade{background-position:-424px -2044px}.Mount_Head_FlyingPig-Shade,.Mount_Head_FlyingPig-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_FlyingPig-Skeleton{background-position:-848px -1908px}.Mount_Head_FlyingPig-White{background-position:-1908px -848px}.Mount_Head_FlyingPig-White,.Mount_Head_FlyingPig-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_FlyingPig-Zombie{background-position:-1060px -1802px}.Mount_Head_Fox-Base{background-position:-1802px -1060px}.Mount_Head_Fox-Base,.Mount_Head_Fox-CottonCandyBlue{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Fox-CottonCandyBlue{background-position:-1484px -1484px}.Mount_Head_Fox-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1590px -1378px;width:105px;height:105px}.Mount_Head_Fox-Desert{background-position:-1378px -1590px}.Mount_Head_Fox-Desert,.Mount_Head_Fox-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Fox-Golden{background-position:-2107px -106px}.Mount_Head_Fox-Red{background-position:-530px -2044px}.Mount_Head_Fox-Red,.Mount_Head_Fox-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Fox-Shade{background-position:-636px -2014px}.Mount_Head_Fox-Skeleton{background-position:-2104px -212px}.Mount_Head_Fox-Skeleton,.Mount_Head_Fox-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Fox-White{background-position:-212px -2104px}.Mount_Head_Fox-Zombie{background-position:-2017px -636px}.Mount_Head_Fox-Zombie,.Mount_Head_Gryphon-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Gryphon-Base{background-position:-1272px -1696px}.Mount_Head_Gryphon-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-954px -1272px;width:105px;height:105px}.Mount_Head_Gryphon-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-726px -212px;width:105px;height:105px}.Mount_Head_Gryphon-Desert{background-position:-756px 0}.Mount_Head_Gryphon-Desert,.Mount_Head_Gryphon-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Gryphon-Golden{background-position:-106px -744px}.Mount_Head_Gryphon-Red{background-position:0 -744px}.Mount_Head_Gryphon-Red,.Mount_Head_Gryphon-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Gryphon-Shade{background-position:-726px -106px}.Mount_Head_Gryphon-Skeleton{background-position:-636px -318px}.Mount_Head_Gryphon-Skeleton,.Mount_Head_Gryphon-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Gryphon-White{background-position:-424px -560px}.Mount_Head_Gryphon-Zombie{background-position:-530px -454px}.Mount_Head_Gryphon-Zombie,.Mount_Head_Hedgehog-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Hedgehog-Base{background-position:-318px -620px}.Mount_Head_Hedgehog-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-620px -212px;width:105px;height:105px}.Mount_Head_Hedgehog-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-212px -620px;width:105px;height:105px}.Mount_Head_Hedgehog-Desert{background-position:-650px 0}.Mount_Head_Hedgehog-Desert,.Mount_Head_Hedgehog-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Hedgehog-Golden{background-position:-106px -638px}.Mount_Head_Hedgehog-Red{background-position:0 -638px}.Mount_Head_Hedgehog-Red,.Mount_Head_Hedgehog-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Hedgehog-Shade{background-position:-530px -348px}.Mount_Head_Hedgehog-Skeleton{background-position:-620px -106px}.Mount_Head_Hedgehog-Skeleton,.Mount_Head_Hedgehog-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Hedgehog-White{background-position:-424px -454px}.Mount_Head_Hedgehog-Zombie{background-position:-318px -514px}.Mount_Head_Hedgehog-Zombie,.Mount_Head_LionCub-Base{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_LionCub-Base{background-position:-514px -242px}.Mount_Head_LionCub-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-212px -514px;width:105px;height:105px}.Mount_Head_LionCub-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-424px -348px;width:105px;height:105px}.Mount_Head_LionCub-Desert{background-position:-544px 0}.Mount_Head_LionCub-Desert,.Mount_Head_LionCub-Ethereal{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_LionCub-Ethereal{background-position:-106px -532px}.Mount_Head_LionCub-Golden{background-position:0 -532px}.Mount_Head_LionCub-Golden,.Mount_Head_LionCub-Red{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_LionCub-Red{background-position:-514px -136px}.Mount_Head_LionCub-Shade{background-position:-318px -408px}.Mount_Head_LionCub-Shade,.Mount_Head_LionCub-Skeleton{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_LionCub-Skeleton{background-position:-408px -242px}.Mount_Head_LionCub-White{background-position:-212px -408px}.Mount_Head_LionCub-White,.Mount_Head_LionCub-Zombie{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_LionCub-Zombie{background-position:-1816px 0}.Mount_Head_Mammoth-Base{background-image:url(spritesmith4.png);background-position:0 -408px;width:105px;height:123px}.Mount_Head_MantisShrimp-Base{background-image:url(spritesmith4.png);background-position:-1696px -636px;width:108px;height:105px}.Mount_Head_Octopus-Base{background-image:url(spritesmith4.png);background-position:-636px -1696px;width:105px;height:105px}.Mount_Head_Octopus-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-106px -1804px;width:105px;height:105px}.Mount_Head_Octopus-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-530px -1726px;width:105px;height:105px}.Mount_Head_Octopus-Desert{background-position:-1166px -1378px}.Mount_Head_Octopus-Desert,.Mount_Head_Octopus-Golden{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Octopus-Golden{background-position:-1378px -1166px}.Mount_Head_Octopus-Red{background-position:0 -1804px}.Mount_Head_Octopus-Red,.Mount_Head_Octopus-Shade{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Octopus-Shade{background-position:-1590px -848px}.Mount_Head_Octopus-Skeleton{background-position:-1060px -848px}.Mount_Head_Octopus-Skeleton,.Mount_Head_Octopus-White{background-image:url(spritesmith4.png);width:105px;height:105px}.Mount_Head_Octopus-White{background-position:-318px -1786px} \ No newline at end of file +.Pet_Egg_Penguin { + background-image: url(spritesmith4.png); + background-position: -946px -1892px; + width: 48px; + height: 51px; +} +.Pet_Egg_PolarBear { + background-image: url(spritesmith4.png); + background-position: -1971px -1802px; + width: 48px; + height: 51px; +} +.Pet_Egg_Rat { + background-image: url(spritesmith4.png); + background-position: -756px -636px; + width: 48px; + height: 51px; +} +.Pet_Egg_Rock { + background-image: url(spritesmith4.png); + background-position: -805px -636px; + width: 48px; + height: 51px; +} +.Pet_Egg_Rooster { + background-image: url(spritesmith4.png); + background-position: -650px -530px; + width: 48px; + height: 51px; +} +.Pet_Egg_Seahorse { + background-image: url(spritesmith4.png); + background-position: -699px -530px; + width: 48px; + height: 51px; +} +.Pet_Egg_Spider { + background-image: url(spritesmith4.png); + background-position: -544px -424px; + width: 48px; + height: 51px; +} +.Pet_Egg_TRex { + background-image: url(spritesmith4.png); + background-position: -593px -424px; + width: 48px; + height: 51px; +} +.Pet_Egg_TigerCub { + background-image: url(spritesmith4.png); + background-position: -848px -1892px; + width: 48px; + height: 51px; +} +.Pet_Egg_Wolf { + background-image: url(spritesmith4.png); + background-position: -897px -1892px; + width: 48px; + height: 51px; +} +.Pet_Food_Cake_Base { + background-image: url(spritesmith4.png); + background-position: -1348px -1892px; + width: 43px; + height: 43px; +} +.Pet_Food_Cake_CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -1261px -1892px; + width: 42px; + height: 44px; +} +.Pet_Food_Cake_CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -1038px -1892px; + width: 43px; + height: 45px; +} +.Pet_Food_Cake_Desert { + background-image: url(spritesmith4.png); + background-position: -1082px -1892px; + width: 43px; + height: 44px; +} +.Pet_Food_Cake_Golden { + background-image: url(spritesmith4.png); + background-position: -1392px -1892px; + width: 43px; + height: 42px; +} +.Pet_Food_Cake_Red { + background-image: url(spritesmith4.png); + background-position: -1304px -1892px; + width: 43px; + height: 44px; +} +.Pet_Food_Cake_Shade { + background-image: url(spritesmith4.png); + background-position: -1217px -1892px; + width: 43px; + height: 44px; +} +.Pet_Food_Cake_Skeleton { + background-image: url(spritesmith4.png); + background-position: -995px -1892px; + width: 42px; + height: 47px; +} +.Pet_Food_Cake_White { + background-image: url(spritesmith4.png); + background-position: -1172px -1892px; + width: 44px; + height: 44px; +} +.Pet_Food_Cake_Zombie { + background-image: url(spritesmith4.png); + background-position: -1126px -1892px; + width: 45px; + height: 44px; +} +.Pet_Food_Candy_Base { + background-image: url(spritesmith4.png); + background-position: -911px -742px; + width: 48px; + height: 51px; +} +.Pet_Food_Candy_CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -1922px -1802px; + width: 48px; + height: 51px; +} +.Pet_Food_Candy_CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -1017px -848px; + width: 48px; + height: 51px; +} +.Pet_Food_Candy_Desert { + background-image: url(spritesmith4.png); + background-position: -968px -848px; + width: 48px; + height: 51px; +} +.Pet_Food_Candy_Golden { + background-image: url(spritesmith4.png); + background-position: -1123px -954px; + width: 48px; + height: 51px; +} +.Pet_Food_Candy_Red { + background-image: url(spritesmith4.png); + background-position: -1074px -954px; + width: 48px; + height: 51px; +} +.Pet_Food_Candy_Shade { + background-image: url(spritesmith4.png); + background-position: -1229px -1060px; + width: 48px; + height: 51px; +} +.Pet_Food_Candy_Skeleton { + background-image: url(spritesmith4.png); + background-position: -1180px -1060px; + width: 48px; + height: 51px; +} +.Pet_Food_Candy_White { + background-image: url(spritesmith4.png); + background-position: -1335px -1166px; + width: 48px; + height: 51px; +} +.Pet_Food_Candy_Zombie { + background-image: url(spritesmith4.png); + background-position: -1286px -1166px; + width: 48px; + height: 51px; +} +.Pet_Food_Chocolate { + background-image: url(spritesmith4.png); + background-position: -1441px -1272px; + width: 48px; + height: 51px; +} +.Pet_Food_CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -1392px -1272px; + width: 48px; + height: 51px; +} +.Pet_Food_CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -1547px -1378px; + width: 48px; + height: 51px; +} +.Pet_Food_Fish { + background-image: url(spritesmith4.png); + background-position: -1498px -1378px; + width: 48px; + height: 51px; +} +.Pet_Food_Honey { + background-image: url(spritesmith4.png); + background-position: -1653px -1484px; + width: 48px; + height: 51px; +} +.Pet_Food_Meat { + background-image: url(spritesmith4.png); + background-position: -1604px -1484px; + width: 48px; + height: 51px; +} +.Pet_Food_Milk { + background-image: url(spritesmith4.png); + background-position: -1759px -1590px; + width: 48px; + height: 51px; +} +.Pet_Food_Potatoe { + background-image: url(spritesmith4.png); + background-position: -1710px -1590px; + width: 48px; + height: 51px; +} +.Pet_Food_RottenMeat { + background-image: url(spritesmith4.png); + background-position: -1865px -1696px; + width: 48px; + height: 51px; +} +.Pet_Food_Saddle { + background-image: url(spritesmith4.png); + background-position: -1816px -1696px; + width: 48px; + height: 51px; +} +.Pet_Food_Strawberry { + background-image: url(spritesmith4.png); + background-position: -862px -742px; + width: 48px; + height: 51px; +} +.Mount_Body_BearCub-Base { + background-image: url(spritesmith4.png); + background-position: -756px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -756px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -756px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-Desert { + background-image: url(spritesmith4.png); + background-position: -756px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-Golden { + background-image: url(spritesmith4.png); + background-position: 0px -726px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-Polar { + background-image: url(spritesmith4.png); + background-position: -106px -726px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-Red { + background-image: url(spritesmith4.png); + background-position: -212px -726px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-Shade { + background-image: url(spritesmith4.png); + background-position: -318px -726px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-Skeleton { + background-image: url(spritesmith4.png); + background-position: -424px -726px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-White { + background-image: url(spritesmith4.png); + background-position: -530px -726px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-Zombie { + background-image: url(spritesmith4.png); + background-position: -636px -726px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-Base { + background-image: url(spritesmith4.png); + background-position: -742px -726px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -862px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -862px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-Desert { + background-image: url(spritesmith4.png); + background-position: -862px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-Golden { + background-image: url(spritesmith4.png); + background-position: -862px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-Red { + background-image: url(spritesmith4.png); + background-position: -862px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-Shade { + background-image: url(spritesmith4.png); + background-position: -862px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-Skeleton { + background-image: url(spritesmith4.png); + background-position: -862px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-White { + background-image: url(spritesmith4.png); + background-position: 0px -832px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-Zombie { + background-image: url(spritesmith4.png); + background-position: -106px -832px; + width: 105px; + height: 105px; +} +.Mount_Body_Deer-Base { + background-image: url(spritesmith4.png); + background-position: -212px -832px; + width: 105px; + height: 105px; +} +.Mount_Body_Deer-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -318px -832px; + width: 105px; + height: 105px; +} +.Mount_Body_Deer-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -424px -832px; + width: 105px; + height: 105px; +} +.Mount_Body_Deer-Desert { + background-image: url(spritesmith4.png); + background-position: -530px -832px; + width: 105px; + height: 105px; +} +.Mount_Body_Deer-Golden { + background-image: url(spritesmith4.png); + background-position: -636px -832px; + width: 105px; + height: 105px; +} +.Mount_Body_Deer-Red { + background-image: url(spritesmith4.png); + background-position: -742px -832px; + width: 105px; + height: 105px; +} +.Mount_Body_Deer-Shade { + background-image: url(spritesmith4.png); + background-position: -848px -832px; + width: 105px; + height: 105px; +} +.Mount_Body_Deer-Skeleton { + background-image: url(spritesmith4.png); + background-position: -968px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Deer-White { + background-image: url(spritesmith4.png); + background-position: -968px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Deer-Zombie { + background-image: url(spritesmith4.png); + background-position: -968px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Dragon-Base { + background-image: url(spritesmith4.png); + background-position: -968px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Dragon-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -968px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Dragon-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -968px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Dragon-Desert { + background-image: url(spritesmith4.png); + background-position: -968px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Dragon-Golden { + background-image: url(spritesmith4.png); + background-position: -968px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_Dragon-Red { + background-image: url(spritesmith4.png); + background-position: 0px -938px; + width: 105px; + height: 105px; +} +.Mount_Body_Dragon-Shade { + background-image: url(spritesmith4.png); + background-position: -106px -938px; + width: 105px; + height: 105px; +} +.Mount_Body_Dragon-Skeleton { + background-image: url(spritesmith4.png); + background-position: -212px -938px; + width: 105px; + height: 105px; +} +.Mount_Body_Dragon-White { + background-image: url(spritesmith4.png); + background-position: -318px -938px; + width: 105px; + height: 105px; +} +.Mount_Body_Dragon-Zombie { + background-image: url(spritesmith4.png); + background-position: -424px -938px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Base { + background-image: url(spritesmith4.png); + background-position: -530px -938px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -636px -938px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -742px -938px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Desert { + background-image: url(spritesmith4.png); + background-position: -848px -938px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Golden { + background-image: url(spritesmith4.png); + background-position: -954px -938px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Red { + background-image: url(spritesmith4.png); + background-position: -1074px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Shade { + background-image: url(spritesmith4.png); + background-position: -1074px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Skeleton { + background-image: url(spritesmith4.png); + background-position: -1074px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-White { + background-image: url(spritesmith4.png); + background-position: -1074px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Zombie { + background-image: url(spritesmith4.png); + background-position: -1074px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Base { + background-image: url(spritesmith4.png); + background-position: -1074px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -1074px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -1074px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Desert { + background-image: url(spritesmith4.png); + background-position: -1074px -848px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Golden { + background-image: url(spritesmith4.png); + background-position: 0px -1044px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Red { + background-image: url(spritesmith4.png); + background-position: -106px -1044px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Shade { + background-image: url(spritesmith4.png); + background-position: -212px -1044px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Skeleton { + background-image: url(spritesmith4.png); + background-position: -318px -1044px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-White { + background-image: url(spritesmith4.png); + background-position: -424px -1044px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Zombie { + background-image: url(spritesmith4.png); + background-position: -530px -1044px; + width: 105px; + height: 105px; +} +.Mount_Body_Gryphon-Base { + background-image: url(spritesmith4.png); + background-position: -636px -1044px; + width: 105px; + height: 105px; +} +.Mount_Body_Gryphon-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -742px -1044px; + width: 105px; + height: 105px; +} +.Mount_Body_Gryphon-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -848px -1044px; + width: 105px; + height: 105px; +} +.Mount_Body_Gryphon-Desert { + background-image: url(spritesmith4.png); + background-position: -954px -1044px; + width: 105px; + height: 105px; +} +.Mount_Body_Gryphon-Golden { + background-image: url(spritesmith4.png); + background-position: -1060px -1044px; + width: 105px; + height: 105px; +} +.Mount_Body_Gryphon-Red { + background-image: url(spritesmith4.png); + background-position: -1180px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Gryphon-Shade { + background-image: url(spritesmith4.png); + background-position: -1180px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Gryphon-Skeleton { + background-image: url(spritesmith4.png); + background-position: -1180px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Gryphon-White { + background-image: url(spritesmith4.png); + background-position: -1180px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Gryphon-Zombie { + background-image: url(spritesmith4.png); + background-position: -1180px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Hedgehog-Base { + background-image: url(spritesmith4.png); + background-position: -1180px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Hedgehog-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -1180px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Hedgehog-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -1180px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_Hedgehog-Desert { + background-image: url(spritesmith4.png); + background-position: -1180px -848px; + width: 105px; + height: 105px; +} +.Mount_Body_Hedgehog-Golden { + background-image: url(spritesmith4.png); + background-position: -1180px -954px; + width: 105px; + height: 105px; +} +.Mount_Body_Hedgehog-Red { + background-image: url(spritesmith4.png); + background-position: 0px -1150px; + width: 105px; + height: 105px; +} +.Mount_Body_Hedgehog-Shade { + background-image: url(spritesmith4.png); + background-position: -106px -1150px; + width: 105px; + height: 105px; +} +.Mount_Body_Hedgehog-Skeleton { + background-image: url(spritesmith4.png); + background-position: -212px -1150px; + width: 105px; + height: 105px; +} +.Mount_Body_Hedgehog-White { + background-image: url(spritesmith4.png); + background-position: -318px -1150px; + width: 105px; + height: 105px; +} +.Mount_Body_Hedgehog-Zombie { + background-image: url(spritesmith4.png); + background-position: -424px -1150px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-Base { + background-image: url(spritesmith4.png); + background-position: -530px -1150px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -636px -1150px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -742px -1150px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-Desert { + background-image: url(spritesmith4.png); + background-position: -848px -1150px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-Ethereal { + background-image: url(spritesmith4.png); + background-position: -954px -1150px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-Golden { + background-image: url(spritesmith4.png); + background-position: -1060px -1150px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-Red { + background-image: url(spritesmith4.png); + background-position: -1166px -1150px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-Shade { + background-image: url(spritesmith4.png); + background-position: -1286px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-Skeleton { + background-image: url(spritesmith4.png); + background-position: -1286px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-White { + background-image: url(spritesmith4.png); + background-position: -1286px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-Zombie { + background-image: url(spritesmith4.png); + background-position: -1286px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Mammoth-Base { + background-image: url(spritesmith4.png); + background-position: -408px -260px; + width: 105px; + height: 123px; +} +.Mount_Body_MantisShrimp-Base { + background-image: url(spritesmith4.png); + background-position: 0px -1256px; + width: 108px; + height: 105px; +} +.Mount_Body_Octopus-Base { + background-image: url(spritesmith4.png); + background-position: -1286px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Octopus-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -1286px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Octopus-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -1286px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_Octopus-Desert { + background-image: url(spritesmith4.png); + background-position: -1286px -848px; + width: 105px; + height: 105px; +} +.Mount_Body_Octopus-Golden { + background-image: url(spritesmith4.png); + background-position: -1286px -954px; + width: 105px; + height: 105px; +} +.Mount_Body_Octopus-Red { + background-image: url(spritesmith4.png); + background-position: -1286px -1060px; + width: 105px; + height: 105px; +} +.Mount_Body_Octopus-Shade { + background-image: url(spritesmith4.png); + background-position: -109px -1256px; + width: 105px; + height: 105px; +} +.Mount_Body_Octopus-Skeleton { + background-image: url(spritesmith4.png); + background-position: -215px -1256px; + width: 105px; + height: 105px; +} +.Mount_Body_Octopus-White { + background-image: url(spritesmith4.png); + background-position: -321px -1256px; + width: 105px; + height: 105px; +} +.Mount_Body_Octopus-Zombie { + background-image: url(spritesmith4.png); + background-position: -427px -1256px; + width: 105px; + height: 105px; +} +.Mount_Body_Owl-Base { + background-image: url(spritesmith4.png); + background-position: -533px -1256px; + width: 105px; + height: 105px; +} +.Mount_Body_Owl-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -639px -1256px; + width: 105px; + height: 105px; +} +.Mount_Body_Owl-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -745px -1256px; + width: 105px; + height: 105px; +} +.Mount_Body_Owl-Desert { + background-image: url(spritesmith4.png); + background-position: -851px -1256px; + width: 105px; + height: 105px; +} +.Mount_Body_Owl-Golden { + background-image: url(spritesmith4.png); + background-position: -957px -1256px; + width: 105px; + height: 105px; +} +.Mount_Body_Owl-Red { + background-image: url(spritesmith4.png); + background-position: -1063px -1256px; + width: 105px; + height: 105px; +} +.Mount_Body_Owl-Shade { + background-image: url(spritesmith4.png); + background-position: -1169px -1256px; + width: 105px; + height: 105px; +} +.Mount_Body_Owl-Skeleton { + background-image: url(spritesmith4.png); + background-position: -1275px -1256px; + width: 105px; + height: 105px; +} +.Mount_Body_Owl-White { + background-image: url(spritesmith4.png); + background-position: -1392px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Owl-Zombie { + background-image: url(spritesmith4.png); + background-position: -1392px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_PandaCub-Base { + background-image: url(spritesmith4.png); + background-position: -1392px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_PandaCub-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -1392px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_PandaCub-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -1392px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_PandaCub-Desert { + background-image: url(spritesmith4.png); + background-position: -1392px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_PandaCub-Golden { + background-image: url(spritesmith4.png); + background-position: -1392px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_PandaCub-Red { + background-image: url(spritesmith4.png); + background-position: -1392px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_PandaCub-Shade { + background-image: url(spritesmith4.png); + background-position: -1392px -848px; + width: 105px; + height: 105px; +} +.Mount_Body_PandaCub-Skeleton { + background-image: url(spritesmith4.png); + background-position: -1392px -954px; + width: 105px; + height: 105px; +} +.Mount_Body_PandaCub-White { + background-image: url(spritesmith4.png); + background-position: -1392px -1060px; + width: 105px; + height: 105px; +} +.Mount_Body_PandaCub-Zombie { + background-image: url(spritesmith4.png); + background-position: -1392px -1166px; + width: 105px; + height: 105px; +} +.Mount_Body_Parrot-Base { + background-image: url(spritesmith4.png); + background-position: 0px -1362px; + width: 105px; + height: 105px; +} +.Mount_Body_Parrot-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -106px -1362px; + width: 105px; + height: 105px; +} +.Mount_Body_Parrot-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -212px -1362px; + width: 105px; + height: 105px; +} +.Mount_Body_Parrot-Desert { + background-image: url(spritesmith4.png); + background-position: -318px -1362px; + width: 105px; + height: 105px; +} +.Mount_Body_Parrot-Golden { + background-image: url(spritesmith4.png); + background-position: -424px -1362px; + width: 105px; + height: 105px; +} +.Mount_Body_Parrot-Red { + background-image: url(spritesmith4.png); + background-position: -530px -1362px; + width: 105px; + height: 105px; +} +.Mount_Body_Parrot-Shade { + background-image: url(spritesmith4.png); + background-position: -636px -1362px; + width: 105px; + height: 105px; +} +.Mount_Body_Parrot-Skeleton { + background-image: url(spritesmith4.png); + background-position: -742px -1362px; + width: 105px; + height: 105px; +} +.Mount_Body_Parrot-White { + background-image: url(spritesmith4.png); + background-position: -848px -1362px; + width: 105px; + height: 105px; +} +.Mount_Body_Parrot-Zombie { + background-image: url(spritesmith4.png); + background-position: -954px -1362px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-Base { + background-image: url(spritesmith4.png); + background-position: -1060px -1362px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -1166px -1362px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -1272px -1362px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-Desert { + background-image: url(spritesmith4.png); + background-position: -1378px -1362px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-Golden { + background-image: url(spritesmith4.png); + background-position: -1498px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-Red { + background-image: url(spritesmith4.png); + background-position: -1498px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-Shade { + background-image: url(spritesmith4.png); + background-position: -1498px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-Skeleton { + background-image: url(spritesmith4.png); + background-position: -1498px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-White { + background-image: url(spritesmith4.png); + background-position: -1498px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-Zombie { + background-image: url(spritesmith4.png); + background-position: 0px -408px; + width: 105px; + height: 105px; +} +.Mount_Body_Rat-Base { + background-image: url(spritesmith4.png); + background-position: -1498px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Rat-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -1498px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_Rat-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -1498px -848px; + width: 105px; + height: 105px; +} +.Mount_Body_Rat-Desert { + background-image: url(spritesmith4.png); + background-position: -1498px -954px; + width: 105px; + height: 105px; +} +.Mount_Body_Rat-Golden { + background-image: url(spritesmith4.png); + background-position: -1498px -1060px; + width: 105px; + height: 105px; +} +.Mount_Body_Rat-Red { + background-image: url(spritesmith4.png); + background-position: -1498px -1166px; + width: 105px; + height: 105px; +} +.Mount_Body_Rat-Shade { + background-image: url(spritesmith4.png); + background-position: -1498px -1272px; + width: 105px; + height: 105px; +} +.Mount_Body_Rat-Skeleton { + background-image: url(spritesmith4.png); + background-position: 0px -1468px; + width: 105px; + height: 105px; +} +.Mount_Body_Rat-White { + background-image: url(spritesmith4.png); + background-position: -106px -1468px; + width: 105px; + height: 105px; +} +.Mount_Body_Rat-Zombie { + background-image: url(spritesmith4.png); + background-position: -212px -1468px; + width: 105px; + height: 105px; +} +.Mount_Body_Rock-Base { + background-image: url(spritesmith4.png); + background-position: -318px -1468px; + width: 105px; + height: 105px; +} +.Mount_Body_Rock-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -424px -1468px; + width: 105px; + height: 105px; +} +.Mount_Body_Rock-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -530px -1468px; + width: 105px; + height: 105px; +} +.Mount_Body_Rock-Desert { + background-image: url(spritesmith4.png); + background-position: -636px -1468px; + width: 105px; + height: 105px; +} +.Mount_Body_Rock-Gold { + background-image: url(spritesmith4.png); + background-position: -742px -1468px; + width: 105px; + height: 105px; +} +.Mount_Body_Rock-Red { + background-image: url(spritesmith4.png); + background-position: -848px -1468px; + width: 105px; + height: 105px; +} +.Mount_Body_Rock-Shade { + background-image: url(spritesmith4.png); + background-position: -954px -1468px; + width: 105px; + height: 105px; +} +.Mount_Body_Rock-Skeleton { + background-image: url(spritesmith4.png); + background-position: -1060px -1468px; + width: 105px; + height: 105px; +} +.Mount_Body_Rock-White { + background-image: url(spritesmith4.png); + background-position: -1166px -1468px; + width: 105px; + height: 105px; +} +.Mount_Body_Rock-Zombie { + background-image: url(spritesmith4.png); + background-position: -1272px -1468px; + width: 105px; + height: 105px; +} +.Mount_Body_Rooster-Base { + background-image: url(spritesmith4.png); + background-position: -1378px -1468px; + width: 105px; + height: 105px; +} +.Mount_Body_Rooster-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -1484px -1468px; + width: 105px; + height: 105px; +} +.Mount_Body_Rooster-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -1604px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Rooster-Desert { + background-image: url(spritesmith4.png); + background-position: -1604px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Rooster-Golden { + background-image: url(spritesmith4.png); + background-position: -1604px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Rooster-Red { + background-image: url(spritesmith4.png); + background-position: -1604px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Rooster-Shade { + background-image: url(spritesmith4.png); + background-position: -1604px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Rooster-Skeleton { + background-image: url(spritesmith4.png); + background-position: -1604px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Rooster-White { + background-image: url(spritesmith4.png); + background-position: -1604px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Rooster-Zombie { + background-image: url(spritesmith4.png); + background-position: -1604px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Base { + background-image: url(spritesmith4.png); + background-position: -1604px -848px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -1604px -954px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -1604px -1060px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Desert { + background-image: url(spritesmith4.png); + background-position: -1604px -1166px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Golden { + background-image: url(spritesmith4.png); + background-position: -1604px -1272px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Red { + background-image: url(spritesmith4.png); + background-position: -1604px -1378px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Shade { + background-image: url(spritesmith4.png); + background-position: 0px -1574px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Skeleton { + background-image: url(spritesmith4.png); + background-position: -106px -1574px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-White { + background-image: url(spritesmith4.png); + background-position: -212px -1574px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Zombie { + background-image: url(spritesmith4.png); + background-position: -318px -1574px; + width: 105px; + height: 105px; +} +.Mount_Body_Spider-Base { + background-image: url(spritesmith4.png); + background-position: -424px -1574px; + width: 105px; + height: 105px; +} +.Mount_Body_Spider-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -530px -1574px; + width: 105px; + height: 105px; +} +.Mount_Body_Spider-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -636px -1574px; + width: 105px; + height: 105px; +} +.Mount_Body_Spider-Desert { + background-image: url(spritesmith4.png); + background-position: -742px -1574px; + width: 105px; + height: 105px; +} +.Mount_Body_Spider-Golden { + background-image: url(spritesmith4.png); + background-position: -848px -1574px; + width: 105px; + height: 105px; +} +.Mount_Body_Spider-Red { + background-image: url(spritesmith4.png); + background-position: -954px -1574px; + width: 105px; + height: 105px; +} +.Mount_Body_Spider-Shade { + background-image: url(spritesmith4.png); + background-position: -1060px -1574px; + width: 105px; + height: 105px; +} +.Mount_Body_Spider-Skeleton { + background-image: url(spritesmith4.png); + background-position: -1166px -1574px; + width: 105px; + height: 105px; +} +.Mount_Body_Spider-White { + background-image: url(spritesmith4.png); + background-position: -1272px -1574px; + width: 105px; + height: 105px; +} +.Mount_Body_Spider-Zombie { + background-image: url(spritesmith4.png); + background-position: -1378px -1574px; + width: 105px; + height: 105px; +} +.Mount_Body_TRex-Base { + background-image: url(spritesmith4.png); + background-position: -136px -136px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -272px 0px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -272px -136px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-Desert { + background-image: url(spritesmith4.png); + background-position: 0px 0px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-Golden { + background-image: url(spritesmith4.png); + background-position: -136px -272px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-Red { + background-image: url(spritesmith4.png); + background-position: -272px -272px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-Shade { + background-image: url(spritesmith4.png); + background-position: -408px 0px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-Skeleton { + background-image: url(spritesmith4.png); + background-position: 0px -272px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-White { + background-image: url(spritesmith4.png); + background-position: 0px -136px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-Zombie { + background-image: url(spritesmith4.png); + background-position: -136px 0px; + width: 135px; + height: 135px; +} +.Mount_Body_TigerCub-Base { + background-image: url(spritesmith4.png); + background-position: -1710px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -1710px -848px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -1710px -954px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Desert { + background-image: url(spritesmith4.png); + background-position: -1710px -1060px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Golden { + background-image: url(spritesmith4.png); + background-position: -1710px -1166px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Red { + background-image: url(spritesmith4.png); + background-position: -1710px -1272px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Shade { + background-image: url(spritesmith4.png); + background-position: -1710px -1378px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Skeleton { + background-image: url(spritesmith4.png); + background-position: -1710px -1484px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-White { + background-image: url(spritesmith4.png); + background-position: -109px -1680px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Zombie { + background-image: url(spritesmith4.png); + background-position: -215px -1680px; + width: 105px; + height: 105px; +} +.Mount_Body_Turkey-Base { + background-image: url(spritesmith4.png); + background-position: -321px -1680px; + width: 105px; + height: 105px; +} +.Mount_Body_Wolf-Base { + background-image: url(spritesmith4.png); + background-position: -427px -1680px; + width: 105px; + height: 105px; +} +.Mount_Body_Wolf-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -533px -1680px; + width: 105px; + height: 105px; +} +.Mount_Body_Wolf-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -639px -1680px; + width: 105px; + height: 105px; +} +.Mount_Body_Wolf-Desert { + background-image: url(spritesmith4.png); + background-position: -745px -1680px; + width: 105px; + height: 105px; +} +.Mount_Body_Wolf-Golden { + background-image: url(spritesmith4.png); + background-position: -851px -1680px; + width: 105px; + height: 105px; +} +.Mount_Body_Wolf-Red { + background-image: url(spritesmith4.png); + background-position: -957px -1680px; + width: 105px; + height: 105px; +} +.Mount_Body_Wolf-Shade { + background-image: url(spritesmith4.png); + background-position: -1063px -1680px; + width: 105px; + height: 105px; +} +.Mount_Body_Wolf-Skeleton { + background-image: url(spritesmith4.png); + background-position: -1169px -1680px; + width: 105px; + height: 105px; +} +.Mount_Body_Wolf-White { + background-image: url(spritesmith4.png); + background-position: -1275px -1680px; + width: 105px; + height: 105px; +} +.Mount_Body_Wolf-Zombie { + background-image: url(spritesmith4.png); + background-position: -1381px -1680px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-Base { + background-image: url(spritesmith4.png); + background-position: -1487px -1680px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -1593px -1680px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -1699px -1680px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-Desert { + background-image: url(spritesmith4.png); + background-position: -1816px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-Golden { + background-image: url(spritesmith4.png); + background-position: -1816px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-Polar { + background-image: url(spritesmith4.png); + background-position: -1816px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-Red { + background-image: url(spritesmith4.png); + background-position: -1816px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-Shade { + background-image: url(spritesmith4.png); + background-position: -1816px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-Skeleton { + background-image: url(spritesmith4.png); + background-position: -1816px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-White { + background-image: url(spritesmith4.png); + background-position: -1816px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-Zombie { + background-image: url(spritesmith4.png); + background-position: -1816px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-Base { + background-image: url(spritesmith4.png); + background-position: -1816px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -1816px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -1816px -1060px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-Desert { + background-image: url(spritesmith4.png); + background-position: -1816px -1166px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-Golden { + background-image: url(spritesmith4.png); + background-position: -1816px -1272px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-Red { + background-image: url(spritesmith4.png); + background-position: -1816px -1378px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-Shade { + background-image: url(spritesmith4.png); + background-position: -1816px -1484px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-Skeleton { + background-image: url(spritesmith4.png); + background-position: -1816px -1590px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-White { + background-image: url(spritesmith4.png); + background-position: 0px -1786px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-Zombie { + background-image: url(spritesmith4.png); + background-position: -106px -1786px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-Base { + background-image: url(spritesmith4.png); + background-position: -212px -1786px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -318px -1786px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -424px -1786px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-Desert { + background-image: url(spritesmith4.png); + background-position: -530px -1786px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-Golden { + background-image: url(spritesmith4.png); + background-position: -636px -1786px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-Red { + background-image: url(spritesmith4.png); + background-position: -742px -1786px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-Shade { + background-image: url(spritesmith4.png); + background-position: -848px -1786px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-Skeleton { + background-image: url(spritesmith4.png); + background-position: -954px -1786px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-White { + background-image: url(spritesmith4.png); + background-position: -1060px -1786px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-Zombie { + background-image: url(spritesmith4.png); + background-position: -1166px -1786px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Base { + background-image: url(spritesmith4.png); + background-position: -1272px -1786px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -1378px -1786px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -1484px -1786px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Desert { + background-image: url(spritesmith4.png); + background-position: -1590px -1786px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Golden { + background-image: url(spritesmith4.png); + background-position: -1696px -1786px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Red { + background-image: url(spritesmith4.png); + background-position: -1802px -1786px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Shade { + background-image: url(spritesmith4.png); + background-position: -1922px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Skeleton { + background-image: url(spritesmith4.png); + background-position: -1922px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-White { + background-image: url(spritesmith4.png); + background-position: -1922px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Zombie { + background-image: url(spritesmith4.png); + background-position: -1922px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Base { + background-image: url(spritesmith4.png); + background-position: -1922px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -1922px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -1922px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Desert { + background-image: url(spritesmith4.png); + background-position: -1922px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Golden { + background-image: url(spritesmith4.png); + background-position: -1922px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Red { + background-image: url(spritesmith4.png); + background-position: -1922px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Shade { + background-image: url(spritesmith4.png); + background-position: -1922px -1060px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Skeleton { + background-image: url(spritesmith4.png); + background-position: -1922px -1166px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-White { + background-image: url(spritesmith4.png); + background-position: -1922px -1272px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Zombie { + background-image: url(spritesmith4.png); + background-position: -1922px -1378px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Base { + background-image: url(spritesmith4.png); + background-position: -1922px -1484px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -1922px -1590px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -1922px -1696px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Desert { + background-image: url(spritesmith4.png); + background-position: 0px -1892px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Golden { + background-image: url(spritesmith4.png); + background-position: -106px -1892px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Red { + background-image: url(spritesmith4.png); + background-position: -212px -1892px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Shade { + background-image: url(spritesmith4.png); + background-position: -318px -1892px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Skeleton { + background-image: url(spritesmith4.png); + background-position: -424px -1892px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-White { + background-image: url(spritesmith4.png); + background-position: -530px -1892px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Zombie { + background-image: url(spritesmith4.png); + background-position: -636px -1892px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Base { + background-image: url(spritesmith4.png); + background-position: -742px -1892px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -1498px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -756px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Desert { + background-image: url(spritesmith4.png); + background-position: -756px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Golden { + background-image: url(spritesmith4.png); + background-position: -636px -620px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Red { + background-image: url(spritesmith4.png); + background-position: -530px -620px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Shade { + background-image: url(spritesmith4.png); + background-position: -424px -620px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Skeleton { + background-image: url(spritesmith4.png); + background-position: -318px -620px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-White { + background-image: url(spritesmith4.png); + background-position: -212px -620px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Zombie { + background-image: url(spritesmith4.png); + background-position: -106px -620px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Base { + background-image: url(spritesmith4.png); + background-position: 0px -620px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -650px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -650px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Desert { + background-image: url(spritesmith4.png); + background-position: -650px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Golden { + background-image: url(spritesmith4.png); + background-position: -650px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Red { + background-image: url(spritesmith4.png); + background-position: -650px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Shade { + background-image: url(spritesmith4.png); + background-position: -530px -514px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Skeleton { + background-image: url(spritesmith4.png); + background-position: -424px -514px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-White { + background-image: url(spritesmith4.png); + background-position: -318px -514px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Zombie { + background-image: url(spritesmith4.png); + background-position: -212px -514px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Base { + background-image: url(spritesmith4.png); + background-position: -106px -514px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: 0px -514px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -544px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Desert { + background-image: url(spritesmith4.png); + background-position: -544px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Ethereal { + background-image: url(spritesmith4.png); + background-position: -544px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Golden { + background-image: url(spritesmith4.png); + background-position: -544px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Red { + background-image: url(spritesmith4.png); + background-position: -424px -408px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Shade { + background-image: url(spritesmith4.png); + background-position: -318px -408px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Skeleton { + background-image: url(spritesmith4.png); + background-position: -212px -408px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-White { + background-image: url(spritesmith4.png); + background-position: -106px -408px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Zombie { + background-image: url(spritesmith4.png); + background-position: -1710px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Mammoth-Base { + background-image: url(spritesmith4.png); + background-position: -408px -136px; + width: 105px; + height: 123px; +} +.Mount_Head_MantisShrimp-Base { + background-image: url(spritesmith4.png); + background-position: 0px -1680px; + width: 108px; + height: 105px; +} +.Mount_Head_Octopus-Base { + background-image: url(spritesmith4.png); + background-position: -1710px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-CottonCandyBlue { + background-image: url(spritesmith4.png); + background-position: -1710px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-CottonCandyPink { + background-image: url(spritesmith4.png); + background-position: -1710px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Desert { + background-image: url(spritesmith4.png); + background-position: -1710px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Golden { + background-image: url(spritesmith4.png); + background-position: -1710px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Red { + background-image: url(spritesmith4.png); + background-position: -1590px -1574px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Shade { + background-image: url(spritesmith4.png); + background-position: -1484px -1574px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Skeleton { + background-image: url(spritesmith4.png); + background-position: -1286px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-White { + background-image: url(spritesmith4.png); + background-position: -1710px -530px; + width: 105px; + height: 105px; +} diff --git a/common/dist/sprites/spritesmith4.png b/common/dist/sprites/spritesmith4.png index f5e2713d5b..5e23b20352 100644 Binary files a/common/dist/sprites/spritesmith4.png and b/common/dist/sprites/spritesmith4.png differ diff --git a/common/dist/sprites/spritesmith5.css b/common/dist/sprites/spritesmith5.css index 74a70156fa..04868f6391 100644 --- a/common/dist/sprites/spritesmith5.css +++ b/common/dist/sprites/spritesmith5.css @@ -1 +1,2214 @@ -.Mount_Head_Octopus-Zombie{background-image:url(spritesmith5.png);background-position:-530px -984px;width:105px;height:105px}.Mount_Head_Owl-Base{background-position:-1166px -530px}.Mount_Head_Owl-Base,.Mount_Head_Owl-CottonCandyBlue{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Owl-CottonCandyBlue{background-position:-530px -772px}.Mount_Head_Owl-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-742px -848px;width:105px;height:105px}.Mount_Head_Owl-Desert{background-position:-848px -742px}.Mount_Head_Owl-Desert,.Mount_Head_Owl-Golden{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Owl-Golden{background-position:-1060px -424px}.Mount_Head_Owl-Red{background-position:-636px -954px}.Mount_Head_Owl-Red,.Mount_Head_Owl-Shade{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Owl-Shade{background-position:-954px -636px}.Mount_Head_Owl-Skeleton{background-position:0 -1150px}.Mount_Head_Owl-Skeleton,.Mount_Head_Owl-White{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Owl-White{background-position:-106px -1150px}.Mount_Head_Owl-Zombie{background-position:-1150px -106px}.Mount_Head_Owl-Zombie,.Mount_Head_PandaCub-Base{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_PandaCub-Base{background-position:-1150px -212px}.Mount_Head_PandaCub-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-106px -408px;width:105px;height:105px}.Mount_Head_PandaCub-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-408px -136px;width:105px;height:105px}.Mount_Head_PandaCub-Desert{background-image:url(spritesmith5.png);background-position:-212px -408px;width:105px;height:105px}.Mount_Head_PandaCub-Golden{background-position:-408px -242px}.Mount_Head_PandaCub-Golden,.Mount_Head_PandaCub-Red{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_PandaCub-Red{background-position:0 -514px}.Mount_Head_PandaCub-Shade{background-position:-318px -408px}.Mount_Head_PandaCub-Shade,.Mount_Head_PandaCub-Skeleton{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_PandaCub-Skeleton{background-position:-106px -514px}.Mount_Head_PandaCub-White{background-position:-514px -136px}.Mount_Head_PandaCub-White,.Mount_Head_PandaCub-Zombie{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_PandaCub-Zombie{background-position:-544px 0}.Mount_Head_Parrot-Base{background-position:-424px -348px}.Mount_Head_Parrot-Base,.Mount_Head_Parrot-CottonCandyBlue{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Parrot-CottonCandyBlue{background-position:-212px -514px}.Mount_Head_Parrot-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-514px -242px;width:105px;height:105px}.Mount_Head_Parrot-Desert{background-position:-318px -514px}.Mount_Head_Parrot-Desert,.Mount_Head_Parrot-Golden{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Parrot-Golden{background-position:0 -620px}.Mount_Head_Parrot-Red{background-position:-424px -454px}.Mount_Head_Parrot-Red,.Mount_Head_Parrot-Shade{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Parrot-Shade{background-position:-106px -620px}.Mount_Head_Parrot-Skeleton{background-position:-620px -106px}.Mount_Head_Parrot-Skeleton,.Mount_Head_Parrot-White{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Parrot-White{background-position:-530px -348px}.Mount_Head_Parrot-Zombie{background-position:-650px 0}.Mount_Head_Parrot-Zombie,.Mount_Head_Penguin-Base{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Penguin-Base{background-position:-620px -212px}.Mount_Head_Penguin-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-212px -620px;width:105px;height:105px}.Mount_Head_Penguin-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-318px -620px;width:105px;height:105px}.Mount_Head_Penguin-Desert{background-image:url(spritesmith5.png);background-position:-530px -454px;width:105px;height:105px}.Mount_Head_Penguin-Golden{background-position:-424px -560px}.Mount_Head_Penguin-Golden,.Mount_Head_Penguin-Red{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Penguin-Red{background-position:-636px -318px}.Mount_Head_Penguin-Shade{background-position:0 -726px}.Mount_Head_Penguin-Shade,.Mount_Head_Penguin-Skeleton{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Penguin-Skeleton{background-position:-106px -726px}.Mount_Head_Penguin-White{background-position:-726px -106px}.Mount_Head_Penguin-White,.Mount_Head_Penguin-Zombie{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Penguin-Zombie{background-position:-756px 0}.Mount_Head_Rat-Base{background-position:-212px -726px}.Mount_Head_Rat-Base,.Mount_Head_Rat-CottonCandyBlue{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rat-CottonCandyBlue{background-position:-726px -212px}.Mount_Head_Rat-CottonCandyPink{background-position:-636px -424px}.Mount_Head_Rat-CottonCandyPink,.Mount_Head_Rat-Desert{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rat-Desert{background-position:-530px -560px}.Mount_Head_Rat-Golden{background-position:-424px -666px}.Mount_Head_Rat-Golden,.Mount_Head_Rat-Red{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rat-Red{background-position:-318px -726px}.Mount_Head_Rat-Shade{background-position:-742px -318px}.Mount_Head_Rat-Shade,.Mount_Head_Rat-Skeleton{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rat-Skeleton{background-position:-636px -530px}.Mount_Head_Rat-White{background-position:0 -832px}.Mount_Head_Rat-White,.Mount_Head_Rat-Zombie{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rat-Zombie{background-position:-106px -832px}.Mount_Head_Rock-Base{background-position:-832px -106px}.Mount_Head_Rock-Base,.Mount_Head_Rock-CottonCandyBlue{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rock-CottonCandyBlue{background-position:-530px -666px}.Mount_Head_Rock-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-742px -424px;width:105px;height:105px}.Mount_Head_Rock-Desert{background-position:-212px -832px}.Mount_Head_Rock-Desert,.Mount_Head_Rock-Gold{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rock-Gold{background-position:-832px -212px}.Mount_Head_Rock-Red{background-position:-862px 0}.Mount_Head_Rock-Red,.Mount_Head_Rock-Shade{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rock-Shade{background-position:-424px -772px}.Mount_Head_Rock-Skeleton{background-position:-318px -832px}.Mount_Head_Rock-Skeleton,.Mount_Head_Rock-White{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rock-White{background-position:-636px -636px}.Mount_Head_Rock-Zombie{background-position:-848px -318px}.Mount_Head_Rock-Zombie,.Mount_Head_Rooster-Base{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rooster-Base{background-position:-742px -530px}.Mount_Head_Rooster-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:0 -408px;width:105px;height:105px}.Mount_Head_Rooster-CottonCandyPink{background-image:url(spritesmith5.png);background-position:0 -938px;width:105px;height:105px}.Mount_Head_Rooster-Desert{background-position:-106px -938px}.Mount_Head_Rooster-Desert,.Mount_Head_Rooster-Golden{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rooster-Golden{background-position:-938px -106px}.Mount_Head_Rooster-Red{background-position:-848px -424px}.Mount_Head_Rooster-Red,.Mount_Head_Rooster-Shade{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rooster-Shade{background-position:-212px -938px}.Mount_Head_Rooster-Skeleton{background-position:-938px -212px}.Mount_Head_Rooster-Skeleton,.Mount_Head_Rooster-White{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Rooster-White{background-position:-968px 0}.Mount_Head_Rooster-Zombie{background-position:-424px -878px}.Mount_Head_Rooster-Zombie,.Mount_Head_Seahorse-Base{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Seahorse-Base{background-position:-742px -636px}.Mount_Head_Seahorse-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-636px -742px;width:105px;height:105px}.Mount_Head_Seahorse-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-318px -938px;width:105px;height:105px}.Mount_Head_Seahorse-Desert{background-image:url(spritesmith5.png);background-position:-848px -530px;width:105px;height:105px}.Mount_Head_Seahorse-Golden{background-position:-954px -318px}.Mount_Head_Seahorse-Golden,.Mount_Head_Seahorse-Red{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Seahorse-Red{background-position:-530px -878px}.Mount_Head_Seahorse-Shade{background-position:-954px -424px}.Mount_Head_Seahorse-Shade,.Mount_Head_Seahorse-Skeleton{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Seahorse-Skeleton{background-position:0 -1044px}.Mount_Head_Seahorse-White{background-position:-742px -742px}.Mount_Head_Seahorse-White,.Mount_Head_Seahorse-Zombie{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Seahorse-Zombie{background-position:-1044px -106px}.Mount_Head_Spider-Base{background-position:-106px -1044px}.Mount_Head_Spider-Base,.Mount_Head_Spider-CottonCandyBlue{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Spider-CottonCandyBlue{background-position:-848px -636px}.Mount_Head_Spider-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-636px -848px;width:105px;height:105px}.Mount_Head_Spider-Desert{background-image:url(spritesmith5.png);background-position:-1044px -212px;width:105px;height:105px}.Mount_Head_Spider-Golden{background-position:-212px -1044px}.Mount_Head_Spider-Golden,.Mount_Head_Spider-Red{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Spider-Red{background-position:-424px -984px}.Mount_Head_Spider-Shade{background-position:-1074px 0}.Mount_Head_Spider-Shade,.Mount_Head_Spider-Skeleton{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Spider-Skeleton{background-position:-954px -530px}.Mount_Head_Spider-White{background-position:-318px -1044px}.Mount_Head_Spider-White,.Mount_Head_Spider-Zombie{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Spider-Zombie{background-position:-1060px -318px}.Mount_Head_TRex-Base{background-position:-272px 0}.Mount_Head_TRex-Base,.Mount_Head_TRex-CottonCandyBlue{background-image:url(spritesmith5.png);width:135px;height:135px}.Mount_Head_TRex-CottonCandyBlue{background-position:0 -136px}.Mount_Head_TRex-CottonCandyPink{background-position:-136px -136px}.Mount_Head_TRex-CottonCandyPink,.Mount_Head_TRex-Desert{background-image:url(spritesmith5.png);width:135px;height:135px}.Mount_Head_TRex-Desert{background-position:0 -272px}.Mount_Head_TRex-Golden{background-position:0 0}.Mount_Head_TRex-Golden,.Mount_Head_TRex-Red{background-image:url(spritesmith5.png);width:135px;height:135px}.Mount_Head_TRex-Red{background-position:-272px -136px}.Mount_Head_TRex-Shade{background-position:-136px -272px}.Mount_Head_TRex-Shade,.Mount_Head_TRex-Skeleton{background-image:url(spritesmith5.png);width:135px;height:135px}.Mount_Head_TRex-Skeleton{background-position:-272px -272px}.Mount_Head_TRex-White{background-position:-408px 0}.Mount_Head_TRex-White,.Mount_Head_TRex-Zombie{background-image:url(spritesmith5.png);width:135px;height:135px}.Mount_Head_TRex-Zombie{background-position:-136px 0}.Mount_Head_TigerCub-Base{background-image:url(spritesmith5.png);background-position:-212px -1150px;width:105px;height:105px}.Mount_Head_TigerCub-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-424px -1090px;width:105px;height:105px}.Mount_Head_TigerCub-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1180px 0;width:105px;height:105px}.Mount_Head_TigerCub-Desert{background-position:-1060px -530px}.Mount_Head_TigerCub-Desert,.Mount_Head_TigerCub-Golden{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_TigerCub-Golden{background-position:-318px -1150px}.Mount_Head_TigerCub-Red{background-position:-848px -848px}.Mount_Head_TigerCub-Red,.Mount_Head_TigerCub-Shade{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_TigerCub-Shade{background-position:-1166px -318px}.Mount_Head_TigerCub-Skeleton{background-position:-954px -742px}.Mount_Head_TigerCub-Skeleton,.Mount_Head_TigerCub-White{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_TigerCub-White{background-position:-742px -954px}.Mount_Head_TigerCub-Zombie{background-position:-530px -1090px}.Mount_Head_TigerCub-Zombie,.Mount_Head_Turkey-Base{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Turkey-Base{background-position:-1060px -636px}.Mount_Head_Wolf-Base{background-position:-636px -1060px}.Mount_Head_Wolf-Base,.Mount_Head_Wolf-CottonCandyBlue{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Wolf-CottonCandyBlue{background-position:-1166px -424px}.Mount_Head_Wolf-CottonCandyPink{background-position:0 -1256px}.Mount_Head_Wolf-CottonCandyPink,.Mount_Head_Wolf-Desert{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Wolf-Desert{background-position:-106px -1256px}.Mount_Head_Wolf-Golden{background-position:-1256px -106px}.Mount_Head_Wolf-Golden,.Mount_Head_Wolf-Red{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Wolf-Red{background-position:-424px -1196px}.Mount_Head_Wolf-Shade{background-position:-1256px -212px}.Mount_Head_Wolf-Shade,.Mount_Head_Wolf-Skeleton{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Wolf-Skeleton{background-position:-212px -1256px}.Mount_Head_Wolf-White{background-position:-954px -848px}.Mount_Head_Wolf-White,.Mount_Head_Wolf-Zombie{background-image:url(spritesmith5.png);width:105px;height:105px}.Mount_Head_Wolf-Zombie{background-position:-848px -954px}.Pet-BearCub-Base{background-position:-1286px 0}.Pet-BearCub-Base,.Pet-BearCub-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-BearCub-CottonCandyBlue{background-position:-1060px -742px}.Pet-BearCub-CottonCandyPink{background-position:-742px -1060px}.Pet-BearCub-CottonCandyPink,.Pet-BearCub-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-BearCub-Desert{background-position:-318px -1256px}.Pet-BearCub-Golden{background-position:-530px -1196px}.Pet-BearCub-Golden,.Pet-BearCub-Polar{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-BearCub-Polar{background-position:-1272px -318px}.Pet-BearCub-Red{background-position:-636px -1166px}.Pet-BearCub-Red,.Pet-BearCub-Shade{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-BearCub-Shade{background-position:-1166px -636px}.Pet-BearCub-Skeleton{background-position:-1272px -418px}.Pet-BearCub-Skeleton,.Pet-BearCub-White{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-BearCub-White{background-position:-824px -1060px}.Pet-BearCub-Zombie{background-position:-954px -954px}.Pet-BearCub-Zombie,.Pet-Cactus-Base{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Cactus-Base{background-position:-1060px -842px}.Pet-Cactus-CottonCandyBlue{background-position:-1142px -742px}.Pet-Cactus-CottonCandyBlue,.Pet-Cactus-CottonCandyPink{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Cactus-CottonCandyPink{background-position:0 -1362px}.Pet-Cactus-Desert{background-position:-400px -1302px}.Pet-Cactus-Desert,.Pet-Cactus-Golden{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Cactus-Golden{background-position:-82px -1362px}.Pet-Cactus-Red{background-position:-1362px -100px}.Pet-Cactus-Red,.Pet-Cactus-Shade{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Cactus-Shade{background-position:-1368px 0}.Pet-Cactus-Skeleton{background-position:-718px -1166px}.Pet-Cactus-Skeleton,.Pet-Cactus-White{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Cactus-White{background-position:-164px -1362px}.Pet-Cactus-Zombie{background-position:-1272px -518px}.Pet-Cactus-Zombie,.Pet-Deer-Base{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Deer-Base{background-position:-1362px -200px}.Pet-Deer-CottonCandyBlue{background-position:-246px -1362px}.Pet-Deer-CottonCandyBlue,.Pet-Deer-CottonCandyPink{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Deer-CottonCandyPink{background-position:-482px -1302px}.Pet-Deer-Desert{background-position:-1354px -318px}.Pet-Deer-Desert,.Pet-Deer-Golden{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Deer-Golden{background-position:-906px -1060px}.Pet-Deer-Red{background-position:-1248px -636px}.Pet-Deer-Red,.Pet-Deer-Shade{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Deer-Shade{background-position:-612px -1266px}.Pet-Deer-Skeleton{background-position:-1036px -954px}.Pet-Deer-Skeleton,.Pet-Deer-White{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Deer-White{background-position:-800px -1160px}.Pet-Deer-Zombie{background-position:-1354px -418px}.Pet-Deer-Zombie,.Pet-Dragon-Base{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Dragon-Base{background-position:-1142px -842px}.Pet-Dragon-CottonCandyBlue{background-position:-1224px -736px}.Pet-Dragon-CottonCandyBlue,.Pet-Dragon-CottonCandyPink{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Dragon-CottonCandyPink{background-position:-328px -1402px}.Pet-Dragon-Desert{background-position:-694px -1266px}.Pet-Dragon-Desert,.Pet-Dragon-Golden{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Dragon-Golden{background-position:-988px -1054px}.Pet-Dragon-Hydra{background-position:-1444px -100px}.Pet-Dragon-Hydra,.Pet-Dragon-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Dragon-Red{background-position:-1354px -518px}.Pet-Dragon-Shade{background-position:-1450px 0}.Pet-Dragon-Shade,.Pet-Dragon-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Dragon-Skeleton{background-position:-882px -1160px}.Pet-Dragon-White{background-position:-1444px -200px}.Pet-Dragon-White,.Pet-Dragon-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Dragon-Zombie{background-position:-410px -1402px}.Pet-Egg-Base{background-position:-1118px -942px}.Pet-Egg-Base,.Pet-Egg-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Egg-CottonCandyBlue{background-position:0 -1462px}.Pet-Egg-CottonCandyPink{background-position:-82px -1462px}.Pet-Egg-CottonCandyPink,.Pet-Egg-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Egg-Desert{background-position:-1330px -618px}.Pet-Egg-Golden{background-position:-1436px -300px}.Pet-Egg-Golden,.Pet-Egg-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Egg-Red{background-position:-164px -1462px}.Pet-Egg-Shade{background-position:-564px -1366px}.Pet-Egg-Shade,.Pet-Egg-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Egg-Skeleton{background-position:-1224px -836px}.Pet-Egg-White{background-position:-246px -1462px}.Pet-Egg-White,.Pet-Egg-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Egg-Zombie{background-position:-776px -1266px}.Pet-FlyingPig-Base{background-position:-1436px -400px}.Pet-FlyingPig-Base,.Pet-FlyingPig-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-FlyingPig-CottonCandyBlue{background-position:-1306px -736px}.Pet-FlyingPig-CottonCandyPink{background-position:-1070px -1054px}.Pet-FlyingPig-CottonCandyPink,.Pet-FlyingPig-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-FlyingPig-Desert{background-position:-964px -1160px}.Pet-FlyingPig-Golden{background-position:-646px -1366px}.Pet-FlyingPig-Golden,.Pet-FlyingPig-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-FlyingPig-Red{background-position:-1436px -500px}.Pet-FlyingPig-Shade{background-position:-858px -1260px}.Pet-FlyingPig-Shade,.Pet-FlyingPig-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-FlyingPig-Skeleton{background-position:-1200px -942px}.Pet-FlyingPig-White{background-position:-1526px -100px}.Pet-FlyingPig-White,.Pet-FlyingPig-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-FlyingPig-Zombie{background-position:-1532px 0}.Pet-Fox-Base{background-position:-328px -1502px}.Pet-Fox-Base,.Pet-Fox-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Fox-CottonCandyBlue{background-position:-1526px -200px}.Pet-Fox-CottonCandyPink{background-position:-1412px -618px}.Pet-Fox-CottonCandyPink,.Pet-Fox-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Fox-Desert{background-position:-492px -1466px}.Pet-Fox-Golden{background-position:-1518px -300px}.Pet-Fox-Golden,.Pet-Fox-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Fox-Red{background-position:-728px -1366px}.Pet-Fox-Shade{background-position:-1306px -836px}.Pet-Fox-Shade,.Pet-Fox-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Fox-Skeleton{background-position:-1152px -1042px}.Pet-Fox-White{background-position:-410px -1502px}.Pet-Fox-White,.Pet-Fox-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Fox-Zombie{background-position:-1046px -1154px}.Pet-Gryphon-Base{background-position:0 -1562px}.Pet-Gryphon-Base,.Pet-Gryphon-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Gryphon-CottonCandyBlue{background-position:-1388px -718px}.Pet-Gryphon-CottonCandyPink{background-position:-82px -1562px}.Pet-Gryphon-CottonCandyPink,.Pet-Gryphon-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Gryphon-Desert{background-position:-1518px -400px}.Pet-Gryphon-Golden{background-position:-164px -1562px}.Pet-Gryphon-Golden,.Pet-Gryphon-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Gryphon-Red{background-position:-940px -1260px}.Pet-Gryphon-Shade{background-position:-574px -1466px}.Pet-Gryphon-Shade,.Pet-Gryphon-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Gryphon-Skeleton{background-position:-246px -1562px}.Pet-Gryphon-White{background-position:-1282px -936px}.Pet-Gryphon-White,.Pet-Gryphon-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Gryphon-Zombie{background-position:-810px -1366px}.Pet-Hedgehog-Base{background-position:-1518px -500px}.Pet-Hedgehog-Base,.Pet-Hedgehog-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Hedgehog-CottonCandyBlue{background-position:-656px -1466px}.Pet-Hedgehog-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1494px -600px;width:81px;height:99px}.Pet-Hedgehog-Desert{background-position:-1608px -100px}.Pet-Hedgehog-Desert,.Pet-Hedgehog-Golden{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Hedgehog-Golden{background-position:-1388px -818px}.Pet-Hedgehog-Red{background-position:-1128px -1154px}.Pet-Hedgehog-Red,.Pet-Hedgehog-Shade{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Hedgehog-Shade{background-position:-1614px 0}.Pet-Hedgehog-Skeleton{background-position:-1234px -1042px}.Pet-Hedgehog-Skeleton,.Pet-Hedgehog-White{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Hedgehog-White{background-position:-1608px -200px}.Pet-Hedgehog-Zombie{background-position:-1022px -1260px}.Pet-Hedgehog-Zombie,.Pet-JackOLantern-Base{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-JackOLantern-Base{background-position:-892px -1360px}.Pet-LionCub-Base{background-position:-1600px -300px}.Pet-LionCub-Base,.Pet-LionCub-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-LionCub-CottonCandyBlue{background-position:-328px -1602px}.Pet-LionCub-CottonCandyPink{background-position:-1470px -718px}.Pet-LionCub-CottonCandyPink,.Pet-LionCub-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-LionCub-Desert{background-position:-738px -1466px}.Pet-LionCub-Golden{background-position:-492px -1566px}.Pet-LionCub-Golden,.Pet-LionCub-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-LionCub-Red{background-position:-1600px -400px}.Pet-LionCub-Shade{background-position:-410px -1602px}.Pet-LionCub-Shade,.Pet-LionCub-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-LionCub-Skeleton{background-position:-1364px -936px}.Pet-LionCub-White{background-position:0 -1662px}.Pet-LionCub-White,.Pet-LionCub-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-LionCub-Zombie{background-position:-1210px -1142px}.Pet-Mammoth-Base{background-position:-82px -1662px}.Pet-Mammoth-Base,.Pet-MantisShrimp-Base{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-MantisShrimp-Base{background-position:-574px -1566px}.Pet-Octopus-Base{background-position:-164px -1662px}.Pet-Octopus-Base,.Pet-Octopus-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Octopus-CottonCandyBlue{background-position:-1104px -1254px}.Pet-Octopus-CottonCandyPink{background-position:-974px -1360px}.Pet-Octopus-CottonCandyPink,.Pet-Octopus-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Octopus-Desert{background-position:-1316px -1036px}.Pet-Octopus-Golden{background-position:-1600px -500px}.Pet-Octopus-Golden,.Pet-Octopus-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Octopus-Red{background-position:-820px -1466px}.Pet-Octopus-Shade{background-position:-246px -1662px}.Pet-Octopus-Shade,.Pet-Octopus-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Octopus-Skeleton{background-position:-1470px -818px}.Pet-Octopus-White{background-position:-1576px -600px}.Pet-Octopus-White,.Pet-Octopus-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Octopus-Zombie{background-position:-1690px -100px}.Pet-Owl-Base{background-position:-1696px 0}.Pet-Owl-Base,.Pet-Owl-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Owl-CottonCandyBlue{background-position:-656px -1566px}.Pet-Owl-CottonCandyPink{background-position:-1690px -200px}.Pet-Owl-CottonCandyPink,.Pet-Owl-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Owl-Desert{background-position:-1552px -700px}.Pet-Owl-Golden{background-position:-1682px -300px}.Pet-Owl-Golden,.Pet-Owl-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Owl-Red{background-position:-1446px -918px}.Pet-Owl-Shade{background-position:-902px -1460px}.Pet-Owl-Shade,.Pet-Owl-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Owl-Skeleton{background-position:-1056px -1360px}.Pet-Owl-White{background-position:-1292px -1142px}.Pet-Owl-White,.Pet-Owl-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Owl-Zombie{background-position:-1186px -1254px}.Pet-PandaCub-Base{background-position:-1682px -400px}.Pet-PandaCub-Base,.Pet-PandaCub-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-PandaCub-CottonCandyBlue{background-position:-738px -1566px}.Pet-PandaCub-CottonCandyPink{background-position:-328px -1702px}.Pet-PandaCub-CottonCandyPink,.Pet-PandaCub-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-PandaCub-Desert{background-position:-492px -1666px}.Pet-PandaCub-Golden{background-position:-1398px -1036px}.Pet-PandaCub-Golden,.Pet-PandaCub-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-PandaCub-Red{background-position:-1552px -800px}.Pet-PandaCub-Shade{background-position:-410px -1702px}.Pet-PandaCub-Shade,.Pet-PandaCub-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-PandaCub-Skeleton{background-position:-1682px -500px}.Pet-PandaCub-White{background-position:-984px -1460px}.Pet-PandaCub-White,.Pet-PandaCub-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-PandaCub-Zombie{background-position:0 -1762px}.Pet-Parrot-Base{background-position:-574px -1666px}.Pet-Parrot-Base,.Pet-Parrot-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Parrot-CottonCandyBlue{background-position:-1658px -600px}.Pet-Parrot-CottonCandyPink{background-position:-82px -1762px}.Pet-Parrot-CottonCandyPink,.Pet-Parrot-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Parrot-Desert{background-position:-820px -1566px}.Pet-Parrot-Golden{background-position:-1138px -1354px}.Pet-Parrot-Golden,.Pet-Parrot-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Parrot-Red{background-position:-164px -1762px}.Pet-Parrot-Shade{background-position:-1772px -100px}.Pet-Parrot-Shade,.Pet-Parrot-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Parrot-Skeleton{background-position:-1268px -1242px}.Pet-Parrot-White{background-position:-1634px -700px}.Pet-Parrot-White,.Pet-Parrot-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Parrot-Zombie{background-position:-1778px 0}.Pet-Penguin-Base{background-position:-246px -1762px}.Pet-Penguin-Base,.Pet-Penguin-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Penguin-CottonCandyBlue{background-position:-1528px -918px}.Pet-Penguin-CottonCandyPink{background-position:-1374px -1136px}.Pet-Penguin-CottonCandyPink,.Pet-Penguin-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Penguin-Desert{background-position:-1772px -200px}.Pet-Penguin-Golden{background-position:-1764px -300px}.Pet-Penguin-Golden,.Pet-Penguin-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Penguin-Red{background-position:-656px -1666px}.Pet-Penguin-Shade{background-position:-1480px -1018px}.Pet-Penguin-Shade,.Pet-Penguin-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Penguin-Skeleton{background-position:-902px -1560px}.Pet-Penguin-White{background-position:-1066px -1460px}.Pet-Penguin-White,.Pet-Penguin-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Penguin-Zombie{background-position:-1764px -400px}.Pet-Rat-Base{background-position:-1634px -800px}.Pet-Rat-Base,.Pet-Rat-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Rat-CottonCandyBlue{background-position:-738px -1666px}.Pet-Rat-CottonCandyPink{background-position:-1220px -1354px}.Pet-Rat-CottonCandyPink,.Pet-Rat-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Rat-Desert{background-position:-328px -1802px}.Pet-Rat-Golden{background-position:-492px -1766px}.Pet-Rat-Golden,.Pet-Rat-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Rat-Red{background-position:-1764px -500px}.Pet-Rat-Shade{background-position:-1350px -1242px}.Pet-Rat-Shade,.Pet-Rat-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Rat-Skeleton{background-position:-1740px -600px}.Pet-Rat-White{background-position:-984px -1560px}.Pet-Rat-White,.Pet-Rat-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Rat-Zombie{background-position:-1610px -900px}.Pet-Rock-Base{background-position:-492px -1966px}.Pet-Rock-Base,.Pet-Rock-CottonCandyBlue{background-image:url(spritesmith5.png);width:75px;height:93px}.Pet-Rock-CottonCandyBlue{background-position:-1702px -1100px}.Pet-Rock-CottonCandyPink{background-position:-1312px -1542px}.Pet-Rock-CottonCandyPink,.Pet-Rock-Desert{background-image:url(spritesmith5.png);width:75px;height:93px}.Pet-Rock-Desert{background-position:-2024px 0}.Pet-Rock-Gold{background-position:-2018px -100px}.Pet-Rock-Gold,.Pet-Rock-Red{background-image:url(spritesmith5.png);width:75px;height:93px}.Pet-Rock-Red{background-position:-984px -1760px}.Pet-Rock-Shade{background-position:-1148px -1654px}.Pet-Rock-Shade,.Pet-Rock-Skeleton{background-image:url(spritesmith5.png);width:75px;height:93px}.Pet-Rock-Skeleton{background-position:-1596px -1218px}.Pet-Rock-White{background-position:-2018px -194px}.Pet-Rock-White,.Pet-Rock-Zombie{background-image:url(spritesmith5.png);width:75px;height:93px}.Pet-Rock-Zombie{background-position:-738px -1866px}.Pet-Rooster-Base{background-position:-1562px -1018px}.Pet-Rooster-Base,.Pet-Rooster-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Rooster-CottonCandyBlue{background-position:-1854px -200px}.Pet-Rooster-CottonCandyPink{background-position:-164px -1862px}.Pet-Rooster-CottonCandyPink,.Pet-Rooster-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Rooster-Desert{background-position:-1302px -1342px}.Pet-Rooster-Golden{background-position:-1846px -300px}.Pet-Rooster-Golden,.Pet-Rooster-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Rooster-Red{background-position:-246px -1862px}.Pet-Rooster-Shade{background-position:-656px -1766px}.Pet-Rooster-Shade,.Pet-Rooster-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Rooster-Skeleton{background-position:-1846px -400px}.Pet-Rooster-White{background-position:-902px -1660px}.Pet-Rooster-White,.Pet-Rooster-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Rooster-Zombie{background-position:-1066px -1560px}.Pet-Seahorse-Base{background-position:-1432px -1236px}.Pet-Seahorse-Base,.Pet-Seahorse-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Seahorse-CottonCandyBlue{background-position:-1716px -800px}.Pet-Seahorse-CottonCandyPink{background-position:-1538px -1118px}.Pet-Seahorse-CottonCandyPink,.Pet-Seahorse-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Seahorse-Desert{background-position:-1230px -1454px}.Pet-Seahorse-Golden{background-position:-1846px -500px}.Pet-Seahorse-Golden,.Pet-Seahorse-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Seahorse-Red{background-position:-738px -1766px}.Pet-Seahorse-Shade{background-position:-1692px -900px}.Pet-Seahorse-Shade,.Pet-Seahorse-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Seahorse-Skeleton{background-position:-1822px -600px}.Pet-Seahorse-White{background-position:-1644px -1000px}.Pet-Seahorse-White,.Pet-Seahorse-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Seahorse-Zombie{background-position:-1384px -1342px}.Pet-Spider-Base{background-position:-1798px -700px}.Pet-Spider-Base,.Pet-Spider-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Spider-CottonCandyBlue{background-position:-984px -1660px}.Pet-Spider-CottonCandyPink{background-position:-492px -1866px}.Pet-Spider-CottonCandyPink,.Pet-Spider-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Spider-Desert{background-position:-328px -1902px}.Pet-Spider-Golden{background-position:-1148px -1554px}.Pet-Spider-Golden,.Pet-Spider-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Spider-Red{background-position:-1936px -100px}.Pet-Spider-Shade{background-position:-1942px 0}.Pet-Spider-Shade,.Pet-Spider-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Spider-Skeleton{background-position:-410px -1902px}.Pet-Spider-White{background-position:-1936px -200px}.Pet-Spider-White,.Pet-Spider-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Spider-Zombie{background-position:-820px -1766px}.Pet-TRex-Base{background-position:-1312px -1442px}.Pet-TRex-Base,.Pet-TRex-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-TRex-CottonCandyBlue{background-position:-1928px -300px}.Pet-TRex-CottonCandyPink{background-position:-574px -1866px}.Pet-TRex-CottonCandyPink,.Pet-TRex-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-TRex-Desert{background-position:-1514px -1236px}.Pet-TRex-Golden{background-position:0 -1962px}.Pet-TRex-Golden,.Pet-TRex-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-TRex-Red{background-position:-82px -1962px}.Pet-TRex-Shade{background-position:-1798px -800px}.Pet-TRex-Shade,.Pet-TRex-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-TRex-Skeleton{background-position:-1620px -1118px}.Pet-TRex-White{background-position:-164px -1962px}.Pet-TRex-White,.Pet-TRex-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-TRex-Zombie{background-position:-1928px -400px}.Pet-TigerCub-Base{background-position:-1066px -1660px}.Pet-TigerCub-Base,.Pet-TigerCub-CottonCandyBlue{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-TigerCub-CottonCandyBlue{background-position:-246px -1962px}.Pet-TigerCub-CottonCandyPink{background-position:-902px -1760px}.Pet-TigerCub-CottonCandyPink,.Pet-TigerCub-Desert{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-TigerCub-Desert{background-position:-656px -1866px}.Pet-TigerCub-Golden{background-position:-1230px -1554px}.Pet-TigerCub-Golden,.Pet-TigerCub-Red{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-TigerCub-Red{background-position:-1466px -1336px}.Pet-TigerCub-Shade{background-position:-1774px -900px}.Pet-TigerCub-Shade,.Pet-TigerCub-Skeleton{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-TigerCub-Skeleton{background-position:-1928px -500px}.Pet-TigerCub-White{background-position:-1726px -1000px}.Pet-TigerCub-White,.Pet-TigerCub-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-TigerCub-Zombie{background-position:-1904px -600px}.Pet-Turkey-Base{background-position:-1394px -1442px}.Pet-Turkey-Base,.Pet-Wolf-Base{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Wolf-Base{background-position:-1880px -700px}.Pet-Wolf-CottonCandyBlue{background-position:-82px -1862px}.Pet-Wolf-CottonCandyBlue,.Pet-Wolf-CottonCandyPink{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Wolf-CottonCandyPink{background-position:0 -1862px}.Pet-Wolf-Desert{background-position:-1860px 0}.Pet-Wolf-Desert,.Pet-Wolf-Golden{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Wolf-Golden{background-position:-574px -1766px}.Pet-Wolf-Red{background-position:-820px -1666px}.Pet-Wolf-Red,.Pet-Wolf-Shade{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Wolf-Shade{background-position:-1854px -100px}.Pet-Wolf-Skeleton{background-position:-1716px -700px}.Pet-Wolf-Skeleton,.Pet-Wolf-Veteran{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Wolf-Veteran{background-position:-1148px -1454px}.Pet-Wolf-White{background-position:-410px -1802px}.Pet-Wolf-White,.Pet-Wolf-Zombie{background-image:url(spritesmith5.png);width:81px;height:99px}.Pet-Wolf-Zombie{background-position:-1456px -1136px}.Pet_HatchingPotion_Base{background-image:url(spritesmith5.png);background-position:-426px -2002px;width:48px;height:51px}.Pet_HatchingPotion_CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-328px -2002px;width:48px;height:51px}.Pet_HatchingPotion_CottonCandyPink{background-image:url(spritesmith5.png);background-position:-2010px -300px;width:48px;height:51px}.Pet_HatchingPotion_Desert{background-image:url(spritesmith5.png);background-position:-814px -1866px;width:48px;height:51px}.Pet_HatchingPotion_Golden{background-position:-377px -2002px}.Pet_HatchingPotion_Golden,.Pet_HatchingPotion_Red{background-image:url(spritesmith5.png);width:48px;height:51px}.Pet_HatchingPotion_Red{background-position:-2010px -352px}.Pet_HatchingPotion_Shade{background-position:-1880px -800px}.Pet_HatchingPotion_Shade,.Pet_HatchingPotion_Skeleton{background-image:url(spritesmith5.png);width:48px;height:51px}.Pet_HatchingPotion_Skeleton{background-position:-1548px -1336px}.Pet_HatchingPotion_White{background-position:-568px -1966px}.Pet_HatchingPotion_White,.Pet_HatchingPotion_Zombie{background-image:url(spritesmith5.png);width:48px;height:51px}.Pet_HatchingPotion_Zombie{background-position:-492px -1402px} \ No newline at end of file +.Mount_Head_Octopus-Zombie { + background-image: url(spritesmith5.png); + background-position: -1074px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Base { + background-image: url(spritesmith5.png); + background-position: -424px -1150px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -106px -832px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -1074px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Desert { + background-image: url(spritesmith5.png); + background-position: -1074px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Golden { + background-image: url(spritesmith5.png); + background-position: -1074px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Red { + background-image: url(spritesmith5.png); + background-position: -1074px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Shade { + background-image: url(spritesmith5.png); + background-position: -1074px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Skeleton { + background-image: url(spritesmith5.png); + background-position: 0px -1044px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-White { + background-image: url(spritesmith5.png); + background-position: -106px -1044px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Zombie { + background-image: url(spritesmith5.png); + background-position: -212px -1044px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Base { + background-image: url(spritesmith5.png); + background-position: -318px -1044px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -408px -242px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: 0px -408px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Desert { + background-image: url(spritesmith5.png); + background-position: -106px -408px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Golden { + background-image: url(spritesmith5.png); + background-position: -212px -408px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Red { + background-image: url(spritesmith5.png); + background-position: -318px -408px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Shade { + background-image: url(spritesmith5.png); + background-position: -424px -408px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Skeleton { + background-image: url(spritesmith5.png); + background-position: -544px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-White { + background-image: url(spritesmith5.png); + background-position: -544px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Zombie { + background-image: url(spritesmith5.png); + background-position: -544px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Base { + background-image: url(spritesmith5.png); + background-position: -544px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: 0px -514px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -106px -514px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Desert { + background-image: url(spritesmith5.png); + background-position: -212px -514px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Golden { + background-image: url(spritesmith5.png); + background-position: -318px -514px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Red { + background-image: url(spritesmith5.png); + background-position: -424px -514px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Shade { + background-image: url(spritesmith5.png); + background-position: -530px -514px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Skeleton { + background-image: url(spritesmith5.png); + background-position: -650px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-White { + background-image: url(spritesmith5.png); + background-position: -650px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Zombie { + background-image: url(spritesmith5.png); + background-position: -650px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Base { + background-image: url(spritesmith5.png); + background-position: -650px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -650px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: 0px -620px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Desert { + background-image: url(spritesmith5.png); + background-position: -106px -620px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Golden { + background-image: url(spritesmith5.png); + background-position: -212px -620px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Red { + background-image: url(spritesmith5.png); + background-position: -318px -620px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Shade { + background-image: url(spritesmith5.png); + background-position: -424px -620px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Skeleton { + background-image: url(spritesmith5.png); + background-position: -530px -620px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-White { + background-image: url(spritesmith5.png); + background-position: -636px -620px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Zombie { + background-image: url(spritesmith5.png); + background-position: -756px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Base { + background-image: url(spritesmith5.png); + background-position: -756px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -756px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -756px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Desert { + background-image: url(spritesmith5.png); + background-position: -756px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Golden { + background-image: url(spritesmith5.png); + background-position: -756px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Red { + background-image: url(spritesmith5.png); + background-position: 0px -726px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Shade { + background-image: url(spritesmith5.png); + background-position: -106px -726px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Skeleton { + background-image: url(spritesmith5.png); + background-position: -212px -726px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-White { + background-image: url(spritesmith5.png); + background-position: -318px -726px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Zombie { + background-image: url(spritesmith5.png); + background-position: -424px -726px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Base { + background-image: url(spritesmith5.png); + background-position: -530px -726px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -636px -726px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -742px -726px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Desert { + background-image: url(spritesmith5.png); + background-position: -862px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Gold { + background-image: url(spritesmith5.png); + background-position: -862px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Red { + background-image: url(spritesmith5.png); + background-position: -862px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Shade { + background-image: url(spritesmith5.png); + background-position: -862px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Skeleton { + background-image: url(spritesmith5.png); + background-position: -862px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-White { + background-image: url(spritesmith5.png); + background-position: -862px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Zombie { + background-image: url(spritesmith5.png); + background-position: -862px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-Base { + background-image: url(spritesmith5.png); + background-position: 0px -832px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -408px -136px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -212px -832px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-Desert { + background-image: url(spritesmith5.png); + background-position: -318px -832px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-Golden { + background-image: url(spritesmith5.png); + background-position: -424px -832px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-Red { + background-image: url(spritesmith5.png); + background-position: -530px -832px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-Shade { + background-image: url(spritesmith5.png); + background-position: -636px -832px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-Skeleton { + background-image: url(spritesmith5.png); + background-position: -742px -832px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-White { + background-image: url(spritesmith5.png); + background-position: -848px -832px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-Zombie { + background-image: url(spritesmith5.png); + background-position: -968px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-Base { + background-image: url(spritesmith5.png); + background-position: -968px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -968px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -968px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-Desert { + background-image: url(spritesmith5.png); + background-position: -968px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-Golden { + background-image: url(spritesmith5.png); + background-position: -968px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-Red { + background-image: url(spritesmith5.png); + background-position: -968px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-Shade { + background-image: url(spritesmith5.png); + background-position: -968px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-Skeleton { + background-image: url(spritesmith5.png); + background-position: 0px -938px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-White { + background-image: url(spritesmith5.png); + background-position: -106px -938px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-Zombie { + background-image: url(spritesmith5.png); + background-position: -212px -938px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Base { + background-image: url(spritesmith5.png); + background-position: -318px -938px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -424px -938px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -530px -938px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Desert { + background-image: url(spritesmith5.png); + background-position: -636px -938px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Golden { + background-image: url(spritesmith5.png); + background-position: -742px -938px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Red { + background-image: url(spritesmith5.png); + background-position: -848px -938px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Shade { + background-image: url(spritesmith5.png); + background-position: -954px -938px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Skeleton { + background-image: url(spritesmith5.png); + background-position: -1074px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-White { + background-image: url(spritesmith5.png); + background-position: -1074px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Zombie { + background-image: url(spritesmith5.png); + background-position: -1074px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_TRex-Base { + background-image: url(spritesmith5.png); + background-position: -272px -136px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: 0px -136px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -136px -136px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-Desert { + background-image: url(spritesmith5.png); + background-position: -272px 0px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-Golden { + background-image: url(spritesmith5.png); + background-position: 0px 0px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-Red { + background-image: url(spritesmith5.png); + background-position: 0px -272px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-Shade { + background-image: url(spritesmith5.png); + background-position: -136px -272px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-Skeleton { + background-image: url(spritesmith5.png); + background-position: -272px -272px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-White { + background-image: url(spritesmith5.png); + background-position: -408px 0px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-Zombie { + background-image: url(spritesmith5.png); + background-position: -136px 0px; + width: 135px; + height: 135px; +} +.Mount_Head_TigerCub-Base { + background-image: url(spritesmith5.png); + background-position: -424px -1044px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -530px -1044px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -636px -1044px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Desert { + background-image: url(spritesmith5.png); + background-position: -742px -1044px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Golden { + background-image: url(spritesmith5.png); + background-position: -848px -1044px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Red { + background-image: url(spritesmith5.png); + background-position: -954px -1044px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Shade { + background-image: url(spritesmith5.png); + background-position: -1060px -1044px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Skeleton { + background-image: url(spritesmith5.png); + background-position: -1180px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-White { + background-image: url(spritesmith5.png); + background-position: -1180px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Zombie { + background-image: url(spritesmith5.png); + background-position: -1180px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Turkey-Base { + background-image: url(spritesmith5.png); + background-position: -1180px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Wolf-Base { + background-image: url(spritesmith5.png); + background-position: -1180px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Wolf-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -1180px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Wolf-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -1180px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Wolf-Desert { + background-image: url(spritesmith5.png); + background-position: -1180px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Wolf-Golden { + background-image: url(spritesmith5.png); + background-position: -1180px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Wolf-Red { + background-image: url(spritesmith5.png); + background-position: -1180px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_Wolf-Shade { + background-image: url(spritesmith5.png); + background-position: 0px -1150px; + width: 105px; + height: 105px; +} +.Mount_Head_Wolf-Skeleton { + background-image: url(spritesmith5.png); + background-position: -106px -1150px; + width: 105px; + height: 105px; +} +.Mount_Head_Wolf-White { + background-image: url(spritesmith5.png); + background-position: -212px -1150px; + width: 105px; + height: 105px; +} +.Mount_Head_Wolf-Zombie { + background-image: url(spritesmith5.png); + background-position: -318px -1150px; + width: 105px; + height: 105px; +} +.Pet-BearCub-Base { + background-image: url(spritesmith5.png); + background-position: -530px -1150px; + width: 81px; + height: 99px; +} +.Pet-BearCub-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -612px -1150px; + width: 81px; + height: 99px; +} +.Pet-BearCub-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -694px -1150px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Desert { + background-image: url(spritesmith5.png); + background-position: -776px -1150px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Golden { + background-image: url(spritesmith5.png); + background-position: -858px -1150px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Polar { + background-image: url(spritesmith5.png); + background-position: -940px -1150px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Red { + background-image: url(spritesmith5.png); + background-position: -1022px -1150px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Shade { + background-image: url(spritesmith5.png); + background-position: -1104px -1150px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Skeleton { + background-image: url(spritesmith5.png); + background-position: -1186px -1150px; + width: 81px; + height: 99px; +} +.Pet-BearCub-White { + background-image: url(spritesmith5.png); + background-position: -1286px 0px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Zombie { + background-image: url(spritesmith5.png); + background-position: -1286px -100px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Base { + background-image: url(spritesmith5.png); + background-position: -1286px -200px; + width: 81px; + height: 99px; +} +.Pet-Cactus-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -1286px -300px; + width: 81px; + height: 99px; +} +.Pet-Cactus-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -1286px -400px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Desert { + background-image: url(spritesmith5.png); + background-position: -1286px -500px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Golden { + background-image: url(spritesmith5.png); + background-position: -1286px -600px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Red { + background-image: url(spritesmith5.png); + background-position: -1286px -700px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Shade { + background-image: url(spritesmith5.png); + background-position: -1286px -800px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Skeleton { + background-image: url(spritesmith5.png); + background-position: -1286px -900px; + width: 81px; + height: 99px; +} +.Pet-Cactus-White { + background-image: url(spritesmith5.png); + background-position: -1286px -1000px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Zombie { + background-image: url(spritesmith5.png); + background-position: -1286px -1100px; + width: 81px; + height: 99px; +} +.Pet-Deer-Base { + background-image: url(spritesmith5.png); + background-position: 0px -1256px; + width: 81px; + height: 99px; +} +.Pet-Deer-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -82px -1256px; + width: 81px; + height: 99px; +} +.Pet-Deer-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -164px -1256px; + width: 81px; + height: 99px; +} +.Pet-Deer-Desert { + background-image: url(spritesmith5.png); + background-position: -246px -1256px; + width: 81px; + height: 99px; +} +.Pet-Deer-Golden { + background-image: url(spritesmith5.png); + background-position: -328px -1256px; + width: 81px; + height: 99px; +} +.Pet-Deer-Red { + background-image: url(spritesmith5.png); + background-position: -410px -1256px; + width: 81px; + height: 99px; +} +.Pet-Deer-Shade { + background-image: url(spritesmith5.png); + background-position: -492px -1256px; + width: 81px; + height: 99px; +} +.Pet-Deer-Skeleton { + background-image: url(spritesmith5.png); + background-position: -574px -1256px; + width: 81px; + height: 99px; +} +.Pet-Deer-White { + background-image: url(spritesmith5.png); + background-position: -656px -1256px; + width: 81px; + height: 99px; +} +.Pet-Deer-Zombie { + background-image: url(spritesmith5.png); + background-position: -738px -1256px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Base { + background-image: url(spritesmith5.png); + background-position: -820px -1256px; + width: 81px; + height: 99px; +} +.Pet-Dragon-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -902px -1256px; + width: 81px; + height: 99px; +} +.Pet-Dragon-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -984px -1256px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Desert { + background-image: url(spritesmith5.png); + background-position: -1066px -1256px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Golden { + background-image: url(spritesmith5.png); + background-position: -1148px -1256px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Hydra { + background-image: url(spritesmith5.png); + background-position: -1230px -1256px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Red { + background-image: url(spritesmith5.png); + background-position: -1368px 0px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Shade { + background-image: url(spritesmith5.png); + background-position: -1368px -100px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Skeleton { + background-image: url(spritesmith5.png); + background-position: -1368px -200px; + width: 81px; + height: 99px; +} +.Pet-Dragon-White { + background-image: url(spritesmith5.png); + background-position: -1368px -300px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Zombie { + background-image: url(spritesmith5.png); + background-position: -1368px -400px; + width: 81px; + height: 99px; +} +.Pet-Egg-Base { + background-image: url(spritesmith5.png); + background-position: -1368px -500px; + width: 81px; + height: 99px; +} +.Pet-Egg-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -1368px -600px; + width: 81px; + height: 99px; +} +.Pet-Egg-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -1368px -700px; + width: 81px; + height: 99px; +} +.Pet-Egg-Desert { + background-image: url(spritesmith5.png); + background-position: -1368px -800px; + width: 81px; + height: 99px; +} +.Pet-Egg-Golden { + background-image: url(spritesmith5.png); + background-position: -1368px -900px; + width: 81px; + height: 99px; +} +.Pet-Egg-Red { + background-image: url(spritesmith5.png); + background-position: -1368px -1000px; + width: 81px; + height: 99px; +} +.Pet-Egg-Shade { + background-image: url(spritesmith5.png); + background-position: -1368px -1100px; + width: 81px; + height: 99px; +} +.Pet-Egg-Skeleton { + background-image: url(spritesmith5.png); + background-position: -1368px -1200px; + width: 81px; + height: 99px; +} +.Pet-Egg-White { + background-image: url(spritesmith5.png); + background-position: -1450px 0px; + width: 81px; + height: 99px; +} +.Pet-Egg-Zombie { + background-image: url(spritesmith5.png); + background-position: -1450px -100px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Base { + background-image: url(spritesmith5.png); + background-position: -1450px -200px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -1450px -300px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -1450px -400px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Desert { + background-image: url(spritesmith5.png); + background-position: -1450px -500px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Golden { + background-image: url(spritesmith5.png); + background-position: -1450px -600px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Red { + background-image: url(spritesmith5.png); + background-position: -1450px -700px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Shade { + background-image: url(spritesmith5.png); + background-position: -1450px -800px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Skeleton { + background-image: url(spritesmith5.png); + background-position: -1450px -900px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-White { + background-image: url(spritesmith5.png); + background-position: -1450px -1000px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Zombie { + background-image: url(spritesmith5.png); + background-position: -1450px -1100px; + width: 81px; + height: 99px; +} +.Pet-Fox-Base { + background-image: url(spritesmith5.png); + background-position: -1450px -1200px; + width: 81px; + height: 99px; +} +.Pet-Fox-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: 0px -1356px; + width: 81px; + height: 99px; +} +.Pet-Fox-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -82px -1356px; + width: 81px; + height: 99px; +} +.Pet-Fox-Desert { + background-image: url(spritesmith5.png); + background-position: -164px -1356px; + width: 81px; + height: 99px; +} +.Pet-Fox-Golden { + background-image: url(spritesmith5.png); + background-position: -246px -1356px; + width: 81px; + height: 99px; +} +.Pet-Fox-Red { + background-image: url(spritesmith5.png); + background-position: -328px -1356px; + width: 81px; + height: 99px; +} +.Pet-Fox-Shade { + background-image: url(spritesmith5.png); + background-position: -410px -1356px; + width: 81px; + height: 99px; +} +.Pet-Fox-Skeleton { + background-image: url(spritesmith5.png); + background-position: -492px -1356px; + width: 81px; + height: 99px; +} +.Pet-Fox-White { + background-image: url(spritesmith5.png); + background-position: -574px -1356px; + width: 81px; + height: 99px; +} +.Pet-Fox-Zombie { + background-image: url(spritesmith5.png); + background-position: -656px -1356px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Base { + background-image: url(spritesmith5.png); + background-position: -738px -1356px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -820px -1356px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -902px -1356px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Desert { + background-image: url(spritesmith5.png); + background-position: -984px -1356px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Golden { + background-image: url(spritesmith5.png); + background-position: -1066px -1356px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Red { + background-image: url(spritesmith5.png); + background-position: -1148px -1356px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Shade { + background-image: url(spritesmith5.png); + background-position: -1230px -1356px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Skeleton { + background-image: url(spritesmith5.png); + background-position: -1312px -1356px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-White { + background-image: url(spritesmith5.png); + background-position: -1394px -1356px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Zombie { + background-image: url(spritesmith5.png); + background-position: -1532px 0px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Base { + background-image: url(spritesmith5.png); + background-position: -1532px -100px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -1532px -200px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -1532px -300px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Desert { + background-image: url(spritesmith5.png); + background-position: -1532px -400px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Golden { + background-image: url(spritesmith5.png); + background-position: -1532px -500px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Red { + background-image: url(spritesmith5.png); + background-position: -1532px -600px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Shade { + background-image: url(spritesmith5.png); + background-position: -1532px -700px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Skeleton { + background-image: url(spritesmith5.png); + background-position: -1532px -800px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-White { + background-image: url(spritesmith5.png); + background-position: -1532px -900px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Zombie { + background-image: url(spritesmith5.png); + background-position: -1532px -1000px; + width: 81px; + height: 99px; +} +.Pet-JackOLantern-Base { + background-image: url(spritesmith5.png); + background-position: -1532px -1100px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Base { + background-image: url(spritesmith5.png); + background-position: -1532px -1200px; + width: 81px; + height: 99px; +} +.Pet-LionCub-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -1532px -1300px; + width: 81px; + height: 99px; +} +.Pet-LionCub-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: 0px -1456px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Desert { + background-image: url(spritesmith5.png); + background-position: -82px -1456px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Golden { + background-image: url(spritesmith5.png); + background-position: -164px -1456px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Red { + background-image: url(spritesmith5.png); + background-position: -246px -1456px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Shade { + background-image: url(spritesmith5.png); + background-position: -328px -1456px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Skeleton { + background-image: url(spritesmith5.png); + background-position: -410px -1456px; + width: 81px; + height: 99px; +} +.Pet-LionCub-White { + background-image: url(spritesmith5.png); + background-position: -492px -1456px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Zombie { + background-image: url(spritesmith5.png); + background-position: -574px -1456px; + width: 81px; + height: 99px; +} +.Pet-Mammoth-Base { + background-image: url(spritesmith5.png); + background-position: -656px -1456px; + width: 81px; + height: 99px; +} +.Pet-MantisShrimp-Base { + background-image: url(spritesmith5.png); + background-position: -738px -1456px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Base { + background-image: url(spritesmith5.png); + background-position: -820px -1456px; + width: 81px; + height: 99px; +} +.Pet-Octopus-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -902px -1456px; + width: 81px; + height: 99px; +} +.Pet-Octopus-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -984px -1456px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Desert { + background-image: url(spritesmith5.png); + background-position: -1066px -1456px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Golden { + background-image: url(spritesmith5.png); + background-position: -1148px -1456px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Red { + background-image: url(spritesmith5.png); + background-position: -1230px -1456px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Shade { + background-image: url(spritesmith5.png); + background-position: -1312px -1456px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Skeleton { + background-image: url(spritesmith5.png); + background-position: -1394px -1456px; + width: 81px; + height: 99px; +} +.Pet-Octopus-White { + background-image: url(spritesmith5.png); + background-position: -1476px -1456px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Zombie { + background-image: url(spritesmith5.png); + background-position: -1614px 0px; + width: 81px; + height: 99px; +} +.Pet-Owl-Base { + background-image: url(spritesmith5.png); + background-position: -1614px -100px; + width: 81px; + height: 99px; +} +.Pet-Owl-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -1614px -200px; + width: 81px; + height: 99px; +} +.Pet-Owl-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -1614px -300px; + width: 81px; + height: 99px; +} +.Pet-Owl-Desert { + background-image: url(spritesmith5.png); + background-position: -1614px -400px; + width: 81px; + height: 99px; +} +.Pet-Owl-Golden { + background-image: url(spritesmith5.png); + background-position: -1614px -500px; + width: 81px; + height: 99px; +} +.Pet-Owl-Red { + background-image: url(spritesmith5.png); + background-position: -1614px -600px; + width: 81px; + height: 99px; +} +.Pet-Owl-Shade { + background-image: url(spritesmith5.png); + background-position: -1614px -700px; + width: 81px; + height: 99px; +} +.Pet-Owl-Skeleton { + background-image: url(spritesmith5.png); + background-position: -1614px -800px; + width: 81px; + height: 99px; +} +.Pet-Owl-White { + background-image: url(spritesmith5.png); + background-position: -1614px -900px; + width: 81px; + height: 99px; +} +.Pet-Owl-Zombie { + background-image: url(spritesmith5.png); + background-position: -1614px -1000px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Base { + background-image: url(spritesmith5.png); + background-position: -1614px -1100px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -1614px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -1614px -1300px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Desert { + background-image: url(spritesmith5.png); + background-position: -1614px -1400px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Golden { + background-image: url(spritesmith5.png); + background-position: 0px -1556px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Red { + background-image: url(spritesmith5.png); + background-position: -82px -1556px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Shade { + background-image: url(spritesmith5.png); + background-position: -164px -1556px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Skeleton { + background-image: url(spritesmith5.png); + background-position: -246px -1556px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-White { + background-image: url(spritesmith5.png); + background-position: -328px -1556px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Zombie { + background-image: url(spritesmith5.png); + background-position: -410px -1556px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Base { + background-image: url(spritesmith5.png); + background-position: -492px -1556px; + width: 81px; + height: 99px; +} +.Pet-Parrot-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -574px -1556px; + width: 81px; + height: 99px; +} +.Pet-Parrot-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -656px -1556px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Desert { + background-image: url(spritesmith5.png); + background-position: -738px -1556px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Golden { + background-image: url(spritesmith5.png); + background-position: -820px -1556px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Red { + background-image: url(spritesmith5.png); + background-position: -902px -1556px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Shade { + background-image: url(spritesmith5.png); + background-position: -984px -1556px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Skeleton { + background-image: url(spritesmith5.png); + background-position: -1066px -1556px; + width: 81px; + height: 99px; +} +.Pet-Parrot-White { + background-image: url(spritesmith5.png); + background-position: -1148px -1556px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Zombie { + background-image: url(spritesmith5.png); + background-position: -1230px -1556px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Base { + background-image: url(spritesmith5.png); + background-position: -1312px -1556px; + width: 81px; + height: 99px; +} +.Pet-Penguin-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -1394px -1556px; + width: 81px; + height: 99px; +} +.Pet-Penguin-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -1476px -1556px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Desert { + background-image: url(spritesmith5.png); + background-position: -1558px -1556px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Golden { + background-image: url(spritesmith5.png); + background-position: -1696px 0px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Red { + background-image: url(spritesmith5.png); + background-position: -1696px -100px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Shade { + background-image: url(spritesmith5.png); + background-position: -1696px -200px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Skeleton { + background-image: url(spritesmith5.png); + background-position: -1696px -300px; + width: 81px; + height: 99px; +} +.Pet-Penguin-White { + background-image: url(spritesmith5.png); + background-position: -1696px -400px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Zombie { + background-image: url(spritesmith5.png); + background-position: -1696px -500px; + width: 81px; + height: 99px; +} +.Pet-Rat-Base { + background-image: url(spritesmith5.png); + background-position: -1696px -600px; + width: 81px; + height: 99px; +} +.Pet-Rat-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -1696px -700px; + width: 81px; + height: 99px; +} +.Pet-Rat-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -1696px -800px; + width: 81px; + height: 99px; +} +.Pet-Rat-Desert { + background-image: url(spritesmith5.png); + background-position: -1696px -900px; + width: 81px; + height: 99px; +} +.Pet-Rat-Golden { + background-image: url(spritesmith5.png); + background-position: -1696px -1000px; + width: 81px; + height: 99px; +} +.Pet-Rat-Red { + background-image: url(spritesmith5.png); + background-position: -1696px -1100px; + width: 81px; + height: 99px; +} +.Pet-Rat-Shade { + background-image: url(spritesmith5.png); + background-position: -1696px -1200px; + width: 81px; + height: 99px; +} +.Pet-Rat-Skeleton { + background-image: url(spritesmith5.png); + background-position: -1696px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rat-White { + background-image: url(spritesmith5.png); + background-position: -1696px -1400px; + width: 81px; + height: 99px; +} +.Pet-Rat-Zombie { + background-image: url(spritesmith5.png); + background-position: -1696px -1500px; + width: 81px; + height: 99px; +} +.Pet-Rock-Base { + background-image: url(spritesmith5.png); + background-position: -1860px -952px; + width: 75px; + height: 93px; +} +.Pet-Rock-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -1860px -858px; + width: 75px; + height: 93px; +} +.Pet-Rock-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -1860px -764px; + width: 75px; + height: 93px; +} +.Pet-Rock-Desert { + background-image: url(spritesmith5.png); + background-position: -1860px -670px; + width: 75px; + height: 93px; +} +.Pet-Rock-Gold { + background-image: url(spritesmith5.png); + background-position: -1860px -576px; + width: 75px; + height: 93px; +} +.Pet-Rock-Red { + background-image: url(spritesmith5.png); + background-position: -1860px -482px; + width: 75px; + height: 93px; +} +.Pet-Rock-Shade { + background-image: url(spritesmith5.png); + background-position: -1860px -388px; + width: 75px; + height: 93px; +} +.Pet-Rock-Skeleton { + background-image: url(spritesmith5.png); + background-position: -1860px -294px; + width: 75px; + height: 93px; +} +.Pet-Rock-White { + background-image: url(spritesmith5.png); + background-position: -1860px -1046px; + width: 75px; + height: 93px; +} +.Pet-Rock-Zombie { + background-image: url(spritesmith5.png); + background-position: -1860px -200px; + width: 75px; + height: 93px; +} +.Pet-Rooster-Base { + background-image: url(spritesmith5.png); + background-position: -820px -1656px; + width: 81px; + height: 99px; +} +.Pet-Rooster-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -902px -1656px; + width: 81px; + height: 99px; +} +.Pet-Rooster-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -984px -1656px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Desert { + background-image: url(spritesmith5.png); + background-position: -1066px -1656px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Golden { + background-image: url(spritesmith5.png); + background-position: -1148px -1656px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Red { + background-image: url(spritesmith5.png); + background-position: -1230px -1656px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Shade { + background-image: url(spritesmith5.png); + background-position: -1312px -1656px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Skeleton { + background-image: url(spritesmith5.png); + background-position: -1394px -1656px; + width: 81px; + height: 99px; +} +.Pet-Rooster-White { + background-image: url(spritesmith5.png); + background-position: -1476px -1656px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Zombie { + background-image: url(spritesmith5.png); + background-position: -1558px -1656px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Base { + background-image: url(spritesmith5.png); + background-position: -1640px -1656px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -1778px 0px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -1778px -100px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Desert { + background-image: url(spritesmith5.png); + background-position: -1778px -200px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Golden { + background-image: url(spritesmith5.png); + background-position: -1778px -300px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Red { + background-image: url(spritesmith5.png); + background-position: -1778px -400px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Shade { + background-image: url(spritesmith5.png); + background-position: -1778px -500px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Skeleton { + background-image: url(spritesmith5.png); + background-position: -1778px -600px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-White { + background-image: url(spritesmith5.png); + background-position: -1778px -700px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Zombie { + background-image: url(spritesmith5.png); + background-position: -1778px -800px; + width: 81px; + height: 99px; +} +.Pet-Spider-Base { + background-image: url(spritesmith5.png); + background-position: -1778px -900px; + width: 81px; + height: 99px; +} +.Pet-Spider-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -1778px -1000px; + width: 81px; + height: 99px; +} +.Pet-Spider-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -1778px -1100px; + width: 81px; + height: 99px; +} +.Pet-Spider-Desert { + background-image: url(spritesmith5.png); + background-position: -1778px -1200px; + width: 81px; + height: 99px; +} +.Pet-Spider-Golden { + background-image: url(spritesmith5.png); + background-position: -1778px -1300px; + width: 81px; + height: 99px; +} +.Pet-Spider-Red { + background-image: url(spritesmith5.png); + background-position: -1778px -1400px; + width: 81px; + height: 99px; +} +.Pet-Spider-Shade { + background-image: url(spritesmith5.png); + background-position: -1778px -1500px; + width: 81px; + height: 99px; +} +.Pet-Spider-Skeleton { + background-image: url(spritesmith5.png); + background-position: -1778px -1600px; + width: 81px; + height: 99px; +} +.Pet-Spider-White { + background-image: url(spritesmith5.png); + background-position: 0px -1756px; + width: 81px; + height: 99px; +} +.Pet-Spider-Zombie { + background-image: url(spritesmith5.png); + background-position: -82px -1756px; + width: 81px; + height: 99px; +} +.Pet-TRex-Base { + background-image: url(spritesmith5.png); + background-position: -164px -1756px; + width: 81px; + height: 99px; +} +.Pet-TRex-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -246px -1756px; + width: 81px; + height: 99px; +} +.Pet-TRex-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -328px -1756px; + width: 81px; + height: 99px; +} +.Pet-TRex-Desert { + background-image: url(spritesmith5.png); + background-position: -410px -1756px; + width: 81px; + height: 99px; +} +.Pet-TRex-Golden { + background-image: url(spritesmith5.png); + background-position: -492px -1756px; + width: 81px; + height: 99px; +} +.Pet-TRex-Red { + background-image: url(spritesmith5.png); + background-position: -574px -1756px; + width: 81px; + height: 99px; +} +.Pet-TRex-Shade { + background-image: url(spritesmith5.png); + background-position: -656px -1756px; + width: 81px; + height: 99px; +} +.Pet-TRex-Skeleton { + background-image: url(spritesmith5.png); + background-position: -738px -1756px; + width: 81px; + height: 99px; +} +.Pet-TRex-White { + background-image: url(spritesmith5.png); + background-position: -820px -1756px; + width: 81px; + height: 99px; +} +.Pet-TRex-Zombie { + background-image: url(spritesmith5.png); + background-position: -902px -1756px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Base { + background-image: url(spritesmith5.png); + background-position: -984px -1756px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -1066px -1756px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -1148px -1756px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Desert { + background-image: url(spritesmith5.png); + background-position: -1230px -1756px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Golden { + background-image: url(spritesmith5.png); + background-position: -1312px -1756px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Red { + background-image: url(spritesmith5.png); + background-position: -1394px -1756px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Shade { + background-image: url(spritesmith5.png); + background-position: -1476px -1756px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Skeleton { + background-image: url(spritesmith5.png); + background-position: -1558px -1756px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-White { + background-image: url(spritesmith5.png); + background-position: -1640px -1756px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Zombie { + background-image: url(spritesmith5.png); + background-position: -1722px -1756px; + width: 81px; + height: 99px; +} +.Pet-Turkey-Base { + background-image: url(spritesmith5.png); + background-position: -1860px 0px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Base { + background-image: url(spritesmith5.png); + background-position: -1860px -100px; + width: 81px; + height: 99px; +} +.Pet-Wolf-CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -738px -1656px; + width: 81px; + height: 99px; +} +.Pet-Wolf-CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -656px -1656px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Desert { + background-image: url(spritesmith5.png); + background-position: -574px -1656px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Golden { + background-image: url(spritesmith5.png); + background-position: -492px -1656px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Red { + background-image: url(spritesmith5.png); + background-position: -410px -1656px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Shade { + background-image: url(spritesmith5.png); + background-position: -328px -1656px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Skeleton { + background-image: url(spritesmith5.png); + background-position: -246px -1656px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Veteran { + background-image: url(spritesmith5.png); + background-position: -164px -1656px; + width: 81px; + height: 99px; +} +.Pet-Wolf-White { + background-image: url(spritesmith5.png); + background-position: -82px -1656px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Zombie { + background-image: url(spritesmith5.png); + background-position: 0px -1656px; + width: 81px; + height: 99px; +} +.Pet_HatchingPotion_Base { + background-image: url(spritesmith5.png); + background-position: -1860px -1608px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_CottonCandyBlue { + background-image: url(spritesmith5.png); + background-position: -1860px -1192px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_CottonCandyPink { + background-image: url(spritesmith5.png); + background-position: -1860px -1244px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Desert { + background-image: url(spritesmith5.png); + background-position: -1860px -1296px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Golden { + background-image: url(spritesmith5.png); + background-position: -1860px -1348px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Red { + background-image: url(spritesmith5.png); + background-position: -1860px -1400px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Shade { + background-image: url(spritesmith5.png); + background-position: -1860px -1452px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Skeleton { + background-image: url(spritesmith5.png); + background-position: -1860px -1504px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_White { + background-image: url(spritesmith5.png); + background-position: -1860px -1556px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Zombie { + background-image: url(spritesmith5.png); + background-position: -1860px -1140px; + width: 48px; + height: 51px; +} diff --git a/common/dist/sprites/spritesmith5.png b/common/dist/sprites/spritesmith5.png index 3ee8a74a73..c77c425b51 100644 Binary files a/common/dist/sprites/spritesmith5.png and b/common/dist/sprites/spritesmith5.png differ diff --git a/package.json b/package.json index b51e51715f..6df67f7c5a 100644 --- a/package.json +++ b/package.json @@ -71,7 +71,7 @@ "scripts": { "test": "./test/run_tests.sh", "start": "grunt run:dev", - "postinstall": "./node_modules/bower/bin/bower --config.interactive=false install -f", + "postinstall": "grunt build:prod; ./node_modules/bower/bin/bower --config.interactive=false install -f", "coverage": "COVERAGE=true mocha --require register-handlers.js --reporter html-cov > coverage.html; open coverage.html" }, "devDependencies": {