diff --git a/.gitignore b/.gitignore
index ff958aac91..4ae45467dc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -23,7 +23,8 @@ test/*.js
test/*.map
website/public/docs
*.sublime-workspace
+coverage
coverage.html
common/dist/scripts/habitrpg-shared.js
-test/spec/translations.js
+test/spec/mocks/translations.js
diff --git a/.jshintrc b/.jshintrc
index d1064e9ba9..bb52bcabd2 100644
--- a/.jshintrc
+++ b/.jshintrc
@@ -5,6 +5,7 @@
"browser": true,
"node": true,
+ "mocha": true,
"asi": true,
"boss": true,
diff --git a/.travis.yml b/.travis.yml
index 847cc97718..dcd028fd9e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,3 +11,5 @@ before_script:
- cp config.json.example config.json
- "until nc -z localhost 27017; do echo Waiting for MongoDB; sleep 1; done"
- "export DISPLAY=:99"
+after_script:
+ - "./node_modules/.bin/lcov-result-merger 'coverage/**/*.info' | ./node_modules/coveralls/bin/coveralls.js"
diff --git a/CHANGELOG.md b/CHANGELOG.md
deleted file mode 100644
index 28685fe452..0000000000
--- a/CHANGELOG.md
+++ /dev/null
@@ -1,3 +0,0 @@
-My app - Changelog
-# (2015-03-28)
-
diff --git a/Gruntfile.js b/Gruntfile.js
index 85a963304c..12612129d0 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -31,7 +31,7 @@ module.exports = function(grunt) {
// For hair, skins, beards, etc. we want to output a '.customize-options.WHATEVER' class, which works as a
// 60x60 image pointing at the proper part of the 90x90 sprite.
// We set up the custom info here, and the template makes use of it.
- if (sprite.name.match(/hair|skin|beard|mustach|shirt|flower/) || sprite.name=='head_0') {
+ if (sprite.name.match(/hair|skin|beard|mustach|shirt|flower|^headAccessory_special_\w+Ears/) || sprite.name=='head_0') {
sprite.custom = {
px: {
offset_x: "-" + (sprite.x + 25) + "px",
@@ -57,25 +57,6 @@ module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
- git_changelog: {
- minimal: {
- options: {
- repo_url: 'https://github.com/habitrpg/habitrpg',
- appName : 'HabitRPG',
- branch_name: 'develop'
- }
- },
- extended: {
- options: {
- file: 'EXTENDEDCHANGELOG.md',
- repo_url: 'https://github.com/habitrpg/habitrpg',
- appName : 'HabitRPG',
- branch_name: 'develop',
- grep_commits: '^perf|^style|^fix|^feat|^docs|^refactor|^chore|BREAKING'
- }
- }
- },
-
karma: {
unit: {
configFile: 'karma.conf.js'
@@ -174,7 +155,7 @@ module.exports = function(grunt) {
watch: {
dev: {
- files: ['website/public/**/*.styl'], // 'public/**/*.js' Not needed because not in production
+ files: ['website/public/**/*.styl', 'common/script/**/*.coffee'], // 'public/**/*.js' Not needed because not in production
tasks: [ 'build:dev' ],
options: {
nospawn: true
@@ -239,7 +220,7 @@ module.exports = function(grunt) {
require('coffee-script');
var i18n = require('./website/src/i18n'),
fs = require('fs');
- fs.writeFileSync('test/spec/translations.js',
+ fs.writeFileSync('test/spec/mocks/translations.js',
"if(!window.env) window.env = {};\n" +
"window.env.translations = " + JSON.stringify(i18n.translations['en']) + ';');
});
@@ -271,6 +252,5 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-spritesmith');
grunt.loadNpmTasks('grunt-hashres');
grunt.loadNpmTasks('grunt-karma');
- grunt.loadNpmTasks('git-changelog');
};
diff --git a/README.md b/README.md
index 65113909eb..7c7ad55172 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-HabitRPG [](https://travis-ci.org/HabitRPG/habitrpg) [](https://codeclimate.com/github/HabitRPG/habitrpg) [](https://www.bountysource.com/trackers/68393-habitrpg?utm_source=68393&utm_medium=shield&utm_campaign=TRACKER_BADGE) [](https://gemnasium.com/HabitRPG/habitrpg)
+HabitRPG [](https://travis-ci.org/HabitRPG/habitrpg) [](https://codeclimate.com/github/HabitRPG/habitrpg) [](https://coveralls.io/r/HabitRPG/habitrpg?branch=develop) [](https://www.bountysource.com/trackers/68393-habitrpg?utm_source=68393&utm_medium=shield&utm_campaign=TRACKER_BADGE) [](https://gemnasium.com/HabitRPG/habitrpg)
===============
[HabitRPG](https://habitrpg.com) is an open source habit building program which treats your life like a Role Playing Game. Level up as you succeed, lose HP as you fail, earn money to buy weapons and armor.
diff --git a/archive/CHANGELOG_ARCHIVED.md b/archive/CHANGELOG_ARCHIVED.md
new file mode 100644
index 0000000000..59950d5c4c
--- /dev/null
+++ b/archive/CHANGELOG_ARCHIVED.md
@@ -0,0 +1,34 @@
+My app - Changelog
+# (2015-05-08)
+
+## Bug Fixes
+
+- **Spring:** WHO IS LESLIE
+ ([6685e935](watch/commits/6685e93554a1274dedb55dae054e787fb80eb440))
+- **invite-friends:** text should be valid for both parties and guilds
+ ([54e82a14](watch/commits/54e82a14a252c3b9923449a7ef7cee6033a5d160))
+- **mystery:** It's 2015 now, Sabe
+ ([00252f20](watch/commits/00252f200481f06de9bccd1e55275d5366b03919))
+- **scoring:** move gainMP into score
+ ([2fc0cb8f](watch/commits/2fc0cb8fa1b3b5975c16653cb110be2f03b5427e))
+- **slimes:** Tweaks and missing sprite
+ ([7d1a58ca](watch/commits/7d1a58ca002af9dac19aba65d6465bd23b28d649))
+
+
+## Features
+
+- **Spring:** Flung
+ ([d50d4ad8](watch/commits/d50d4ad8bb0f89e39ceb6562e0f8f392f94b5444))
+- **emails:** add support for weekly recap emails
+ ([37f7db3c](watch/commits/37f7db3c4e3859d03fd55a44e63819e273a06442))
+- **i18n:** upload japanese, serbian and chinese (taiwan)
+ ([ee7ba19e](watch/commits/ee7ba19ed17e72b33cbef8a324266617d384f852))
+- **mystery:** April Subscribee Items
+ ([7a7fc968](watch/commits/7a7fc96818ffd7f92738e8c6cc8a59e48d60597d))
+- **pets:** Slime Quest
+ ([f13c6cba](watch/commits/f13c6cba0026c645b19a0b1355ba2c5b27f80878))
+- **quests:** Boss damage from Habits
+ ([43dcded0](watch/commits/43dcded051b602d8a4efc30eef45365abfd238b4))
+- **scoring:** MP gain from Habits and Dailies
+ ([7b22244f](watch/commits/7b22244f0123cf649c9f2aada0811f35a565688d))
+
diff --git a/bower.json b/bower.json
index f936f0d7b8..54fec9e612 100644
--- a/bower.json
+++ b/bower.json
@@ -33,7 +33,7 @@
"Angular-At-Directive": "git://github.com/snicker/Angular-At-Directive#master",
"js-emoji": "git://github.com/snicker/js-emoji#master",
"sticky": "*",
- "swagger-ui": "git://github.com/wordnik/swagger-ui.git",
+ "swagger-ui": "git://github.com/wordnik/swagger-ui.git#v2.0.24",
"ngInfiniteScroll": "1.0.0",
"jquery-colorbox": "~1.4.36",
"pnotify": "~1.3.1",
diff --git a/common/css/index.css b/common/css/index.css
index fee482b83b..c4291dc644 100644
--- a/common/css/index.css
+++ b/common/css/index.css
@@ -3,11 +3,11 @@
}*/
/* Comment out for holiday events */
-/* .npc_ian {
+.npc_ian {
background: url("/common/img/sprites/npc_ian.gif") no-repeat;
width: 78px;
height: 135px;
-} */
+}
.Gems {
display:inline-block;
@@ -37,6 +37,12 @@
margin-right: 10px;
}
+.multi-achievement {
+ margin: auto;
+ padding-left: 0.5em;
+ padding-right: 0.5em;
+}
+
[class*="Mount_Head_"], [class*="Mount_Body_"]{
margin-top:18px; /* Sprite accommodates 105x123 box */
}
diff --git a/common/dist/sprites/habitrpg-shared.css b/common/dist/sprites/habitrpg-shared.css
index 6069cbf10e..101111f927 100644
--- a/common/dist/sprites/habitrpg-shared.css
+++ b/common/dist/sprites/habitrpg-shared.css
@@ -1 +1 @@
-.achievement-alien{background-image:url(spritesmith0.png);background-position:-1403px -1274px;width:24px;height:26px}.achievement-alpha{background-image:url(spritesmith0.png);background-position:-1833px -1729px;width:24px;height:26px}.achievement-armor{background-image:url(spritesmith0.png);background-position:-1378px -1274px;width:24px;height:26px}.achievement-boot{background-image:url(spritesmith0.png);background-position:-1353px -1274px;width:24px;height:26px}.achievement-bow{background-image:url(spritesmith0.png);background-position:-1494px -1392px;width:24px;height:26px}.achievement-cactus{background-image:url(spritesmith0.png);background-position:-1469px -1392px;width:24px;height:26px}.achievement-cake{background-image:url(spritesmith0.png);background-position:-1444px -1392px;width:24px;height:26px}.achievement-cave{background-image:url(spritesmith0.png);background-position:-1494px -1365px;width:24px;height:26px}.achievement-coffin{background-image:url(spritesmith0.png);background-position:-1469px -1365px;width:24px;height:26px}.achievement-comment{background-image:url(spritesmith0.png);background-position:-1444px -1365px;width:24px;height:26px}.achievement-costumeContest{background-image:url(spritesmith0.png);background-position:-1585px -1483px;width:24px;height:26px}.achievement-dilatory{background-image:url(spritesmith0.png);background-position:-1560px -1483px;width:24px;height:26px}.achievement-firefox{background-image:url(spritesmith0.png);background-position:-1535px -1483px;width:24px;height:26px}.achievement-habitBirthday{background-image:url(spritesmith0.png);background-position:-1585px -1456px;width:24px;height:26px}.achievement-heart{background-image:url(spritesmith0.png);background-position:-1560px -1456px;width:24px;height:26px}.achievement-helm{background-image:url(spritesmith0.png);background-position:-1535px -1456px;width:24px;height:26px}.achievement-karaoke{background-image:url(spritesmith0.png);background-position:-1676px -1574px;width:24px;height:26px}.achievement-ninja{background-image:url(spritesmith0.png);background-position:-1808px -1729px;width:24px;height:26px}.achievement-nye{background-image:url(spritesmith0.png);background-position:-1626px -1574px;width:24px;height:26px}.achievement-perfect{background-image:url(spritesmith0.png);background-position:-1676px -1547px;width:24px;height:26px}.achievement-rat{background-image:url(spritesmith0.png);background-position:-1651px -1547px;width:24px;height:26px}.achievement-shield{background-image:url(spritesmith0.png);background-position:-1626px -1547px;width:24px;height:26px}.achievement-shinySeed{background-image:url(spritesmith0.png);background-position:-1767px -1665px;width:24px;height:26px}.achievement-snowball{background-image:url(spritesmith0.png);background-position:-1742px -1665px;width:24px;height:26px}.achievement-spookDust{background-image:url(spritesmith0.png);background-position:-1717px -1665px;width:24px;height:26px}.achievement-stoikalm{background-image:url(spritesmith0.png);background-position:-1767px -1638px;width:24px;height:26px}.achievement-sun{background-image:url(spritesmith0.png);background-position:-1742px -1638px;width:24px;height:26px}.achievement-sword{background-image:url(spritesmith0.png);background-position:-1717px -1638px;width:24px;height:26px}.achievement-thermometer{background-image:url(spritesmith0.png);background-position:-1858px -1756px;width:24px;height:26px}.achievement-tree{background-image:url(spritesmith0.png);background-position:-1833px -1756px;width:24px;height:26px}.achievement-triadbingo{background-image:url(spritesmith0.png);background-position:-1808px -1756px;width:24px;height:26px}.achievement-valentine{background-image:url(spritesmith0.png);background-position:-1858px -1729px;width:24px;height:26px}.achievement-wolf{background-image:url(spritesmith0.png);background-position:-1651px -1574px;width:24px;height:26px}.background_autumn_forest{background-image:url(spritesmith0.png);background-position:-282px -444px;width:140px;height:147px}.background_beach{background-image:url(spritesmith0.png);background-position:-283px 0;width:141px;height:147px}.background_blacksmithy{background-image:url(spritesmith0.png);background-position:0 -148px;width:140px;height:147px}.background_cherry_trees{background-image:url(spritesmith0.png);background-position:-141px -148px;width:140px;height:147px}.background_clouds{background-image:url(spritesmith0.png);background-position:-282px -148px;width:140px;height:147px}.background_coral_reef{background-image:url(spritesmith0.png);background-position:-425px 0;width:140px;height:147px}.background_crystal_cave{background-image:url(spritesmith0.png);background-position:-425px -148px;width:140px;height:147px}.background_distant_castle{background-image:url(spritesmith0.png);background-position:0 -296px;width:140px;height:147px}.background_dusty_canyons{background-image:url(spritesmith0.png);background-position:-141px -296px;width:140px;height:147px}.background_fairy_ring{background-image:url(spritesmith0.png);background-position:-282px -296px;width:140px;height:147px}.background_floral_meadow{background-image:url(spritesmith0.png);background-position:-423px -296px;width:140px;height:147px}.background_forest{background-image:url(spritesmith0.png);background-position:-566px 0;width:140px;height:147px}.background_frigid_peak{background-image:url(spritesmith0.png);background-position:-566px -148px;width:140px;height:147px}.background_graveyard{background-image:url(spritesmith0.png);background-position:-566px -296px;width:140px;height:147px}.background_gumdrop_land{background-image:url(spritesmith0.png);background-position:0 -444px;width:140px;height:147px}.background_harvest_feast{background-image:url(spritesmith0.png);background-position:-141px -444px;width:140px;height:147px}.background_harvest_fields{background-image:url(spritesmith0.png);background-position:0 0;width:141px;height:147px}.background_haunted_house{background-image:url(spritesmith0.png);background-position:-423px -444px;width:140px;height:147px}.background_ice_cave{background-image:url(spritesmith0.png);background-position:-564px -444px;width:141px;height:147px}.background_iceberg{background-image:url(spritesmith0.png);background-position:-707px 0;width:140px;height:147px}.background_open_waters{background-image:url(spritesmith0.png);background-position:0 -592px;width:141px;height:147px}.background_pumpkin_patch{background-image:url(spritesmith0.png);background-position:-707px -148px;width:140px;height:147px}.background_rolling_hills{background-image:url(spritesmith0.png);background-position:-142px -592px;width:141px;height:147px}.background_seafarer_ship{background-image:url(spritesmith0.png);background-position:-707px -296px;width:140px;height:147px}.background_snowy_pines{background-image:url(spritesmith0.png);background-position:-707px -444px;width:140px;height:147px}.background_south_pole{background-image:url(spritesmith0.png);background-position:-284px -592px;width:140px;height:147px}.background_spring_rain{background-image:url(spritesmith0.png);background-position:-425px -592px;width:140px;height:147px}.background_stained_glass{background-image:url(spritesmith0.png);background-position:-566px -592px;width:140px;height:147px}.background_starry_skies{background-image:url(spritesmith0.png);background-position:-707px -592px;width:140px;height:147px}.background_sunset_meadow{background-image:url(spritesmith0.png);background-position:-848px 0;width:140px;height:147px}.background_thunderstorm{background-image:url(spritesmith0.png);background-position:0 -740px;width:141px;height:147px}.background_twinkly_lights{background-image:url(spritesmith0.png);background-position:-142px -740px;width:141px;height:147px}.background_volcano{background-image:url(spritesmith0.png);background-position:-142px 0;width:140px;height:147px}.hair_beard_1_TRUred{background-image:url(spritesmith0.png);background-position:0 -979px;width:90px;height:90px}.customize-option.hair_beard_1_TRUred{background-image:url(spritesmith0.png);background-position:-25px -994px;width:60px;height:60px}.hair_beard_1_aurora{background-image:url(spritesmith0.png);background-position:-91px -979px;width:90px;height:90px}.customize-option.hair_beard_1_aurora{background-image:url(spritesmith0.png);background-position:-116px -994px;width:60px;height:60px}.hair_beard_1_black{background-image:url(spritesmith0.png);background-position:-182px -979px;width:90px;height:90px}.customize-option.hair_beard_1_black{background-image:url(spritesmith0.png);background-position:-207px -994px;width:60px;height:60px}.hair_beard_1_blond{background-image:url(spritesmith0.png);background-position:-273px -979px;width:90px;height:90px}.customize-option.hair_beard_1_blond{background-image:url(spritesmith0.png);background-position:-298px -994px;width:60px;height:60px}.hair_beard_1_blue{background-image:url(spritesmith0.png);background-position:-364px -979px;width:90px;height:90px}.customize-option.hair_beard_1_blue{background-image:url(spritesmith0.png);background-position:-389px -994px;width:60px;height:60px}.hair_beard_1_brown{background-image:url(spritesmith0.png);background-position:-455px -979px;width:90px;height:90px}.customize-option.hair_beard_1_brown{background-image:url(spritesmith0.png);background-position:-480px -994px;width:60px;height:60px}.hair_beard_1_candycane{background-image:url(spritesmith0.png);background-position:-546px -979px;width:90px;height:90px}.customize-option.hair_beard_1_candycane{background-image:url(spritesmith0.png);background-position:-571px -994px;width:60px;height:60px}.hair_beard_1_candycorn{background-image:url(spritesmith0.png);background-position:-637px -979px;width:90px;height:90px}.customize-option.hair_beard_1_candycorn{background-image:url(spritesmith0.png);background-position:-662px -994px;width:60px;height:60px}.hair_beard_1_festive{background-image:url(spritesmith0.png);background-position:-728px -979px;width:90px;height:90px}.customize-option.hair_beard_1_festive{background-image:url(spritesmith0.png);background-position:-753px -994px;width:60px;height:60px}.hair_beard_1_frost{background-image:url(spritesmith0.png);background-position:-819px -979px;width:90px;height:90px}.customize-option.hair_beard_1_frost{background-image:url(spritesmith0.png);background-position:-844px -994px;width:60px;height:60px}.hair_beard_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-910px -979px;width:90px;height:90px}.customize-option.hair_beard_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-935px -994px;width:60px;height:60px}.hair_beard_1_green{background-image:url(spritesmith0.png);background-position:-1080px 0;width:90px;height:90px}.customize-option.hair_beard_1_green{background-image:url(spritesmith0.png);background-position:-1105px -15px;width:60px;height:60px}.hair_beard_1_halloween{background-image:url(spritesmith0.png);background-position:-1080px -91px;width:90px;height:90px}.customize-option.hair_beard_1_halloween{background-image:url(spritesmith0.png);background-position:-1105px -106px;width:60px;height:60px}.hair_beard_1_holly{background-image:url(spritesmith0.png);background-position:-1080px -182px;width:90px;height:90px}.customize-option.hair_beard_1_holly{background-image:url(spritesmith0.png);background-position:-1105px -197px;width:60px;height:60px}.hair_beard_1_hollygreen{background-image:url(spritesmith0.png);background-position:-1080px -273px;width:90px;height:90px}.customize-option.hair_beard_1_hollygreen{background-image:url(spritesmith0.png);background-position:-1105px -288px;width:60px;height:60px}.hair_beard_1_midnight{background-image:url(spritesmith0.png);background-position:-1080px -364px;width:90px;height:90px}.customize-option.hair_beard_1_midnight{background-image:url(spritesmith0.png);background-position:-1105px -379px;width:60px;height:60px}.hair_beard_1_pblue{background-image:url(spritesmith0.png);background-position:-1080px -455px;width:90px;height:90px}.customize-option.hair_beard_1_pblue{background-image:url(spritesmith0.png);background-position:-1105px -470px;width:60px;height:60px}.hair_beard_1_peppermint{background-image:url(spritesmith0.png);background-position:-1080px -546px;width:90px;height:90px}.customize-option.hair_beard_1_peppermint{background-image:url(spritesmith0.png);background-position:-1105px -561px;width:60px;height:60px}.hair_beard_1_pgreen{background-image:url(spritesmith0.png);background-position:-1080px -637px;width:90px;height:90px}.customize-option.hair_beard_1_pgreen{background-image:url(spritesmith0.png);background-position:-1105px -652px;width:60px;height:60px}.hair_beard_1_porange{background-image:url(spritesmith0.png);background-position:-1080px -728px;width:90px;height:90px}.customize-option.hair_beard_1_porange{background-image:url(spritesmith0.png);background-position:-1105px -743px;width:60px;height:60px}.hair_beard_1_ppink{background-image:url(spritesmith0.png);background-position:-1080px -819px;width:90px;height:90px}.customize-option.hair_beard_1_ppink{background-image:url(spritesmith0.png);background-position:-1105px -834px;width:60px;height:60px}.hair_beard_1_ppurple{background-image:url(spritesmith0.png);background-position:-1080px -910px;width:90px;height:90px}.customize-option.hair_beard_1_ppurple{background-image:url(spritesmith0.png);background-position:-1105px -925px;width:60px;height:60px}.hair_beard_1_pumpkin{background-image:url(spritesmith0.png);background-position:0 -1070px;width:90px;height:90px}.customize-option.hair_beard_1_pumpkin{background-image:url(spritesmith0.png);background-position:-25px -1085px;width:60px;height:60px}.hair_beard_1_purple{background-image:url(spritesmith0.png);background-position:-91px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_purple{background-image:url(spritesmith0.png);background-position:-116px -1085px;width:60px;height:60px}.hair_beard_1_pyellow{background-image:url(spritesmith0.png);background-position:-182px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_pyellow{background-image:url(spritesmith0.png);background-position:-207px -1085px;width:60px;height:60px}.hair_beard_1_rainbow{background-image:url(spritesmith0.png);background-position:-273px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_rainbow{background-image:url(spritesmith0.png);background-position:-298px -1085px;width:60px;height:60px}.hair_beard_1_red{background-image:url(spritesmith0.png);background-position:-364px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_red{background-image:url(spritesmith0.png);background-position:-389px -1085px;width:60px;height:60px}.hair_beard_1_snowy{background-image:url(spritesmith0.png);background-position:-455px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_snowy{background-image:url(spritesmith0.png);background-position:-480px -1085px;width:60px;height:60px}.hair_beard_1_white{background-image:url(spritesmith0.png);background-position:-546px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_white{background-image:url(spritesmith0.png);background-position:-571px -1085px;width:60px;height:60px}.hair_beard_1_winternight{background-image:url(spritesmith0.png);background-position:-637px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_winternight{background-image:url(spritesmith0.png);background-position:-662px -1085px;width:60px;height:60px}.hair_beard_1_winterstar{background-image:url(spritesmith0.png);background-position:-728px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_winterstar{background-image:url(spritesmith0.png);background-position:-753px -1085px;width:60px;height:60px}.hair_beard_1_yellow{background-image:url(spritesmith0.png);background-position:-819px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_yellow{background-image:url(spritesmith0.png);background-position:-844px -1085px;width:60px;height:60px}.hair_beard_1_zombie{background-image:url(spritesmith0.png);background-position:-910px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_zombie{background-image:url(spritesmith0.png);background-position:-935px -1085px;width:60px;height:60px}.hair_beard_2_TRUred{background-image:url(spritesmith0.png);background-position:-1001px -1070px;width:90px;height:90px}.customize-option.hair_beard_2_TRUred{background-image:url(spritesmith0.png);background-position:-1026px -1085px;width:60px;height:60px}.hair_beard_2_aurora{background-image:url(spritesmith0.png);background-position:-1171px 0;width:90px;height:90px}.customize-option.hair_beard_2_aurora{background-image:url(spritesmith0.png);background-position:-1196px -15px;width:60px;height:60px}.hair_beard_2_black{background-image:url(spritesmith0.png);background-position:-1171px -91px;width:90px;height:90px}.customize-option.hair_beard_2_black{background-image:url(spritesmith0.png);background-position:-1196px -106px;width:60px;height:60px}.hair_beard_2_blond{background-image:url(spritesmith0.png);background-position:-1171px -182px;width:90px;height:90px}.customize-option.hair_beard_2_blond{background-image:url(spritesmith0.png);background-position:-1196px -197px;width:60px;height:60px}.hair_beard_2_blue{background-image:url(spritesmith0.png);background-position:-1171px -273px;width:90px;height:90px}.customize-option.hair_beard_2_blue{background-image:url(spritesmith0.png);background-position:-1196px -288px;width:60px;height:60px}.hair_beard_2_brown{background-image:url(spritesmith0.png);background-position:-1171px -364px;width:90px;height:90px}.customize-option.hair_beard_2_brown{background-image:url(spritesmith0.png);background-position:-1196px -379px;width:60px;height:60px}.hair_beard_2_candycane{background-image:url(spritesmith0.png);background-position:-1171px -455px;width:90px;height:90px}.customize-option.hair_beard_2_candycane{background-image:url(spritesmith0.png);background-position:-1196px -470px;width:60px;height:60px}.hair_beard_2_candycorn{background-image:url(spritesmith0.png);background-position:-1171px -546px;width:90px;height:90px}.customize-option.hair_beard_2_candycorn{background-image:url(spritesmith0.png);background-position:-1196px -561px;width:60px;height:60px}.hair_beard_2_festive{background-image:url(spritesmith0.png);background-position:-1171px -637px;width:90px;height:90px}.customize-option.hair_beard_2_festive{background-image:url(spritesmith0.png);background-position:-1196px -652px;width:60px;height:60px}.hair_beard_2_frost{background-image:url(spritesmith0.png);background-position:-1171px -728px;width:90px;height:90px}.customize-option.hair_beard_2_frost{background-image:url(spritesmith0.png);background-position:-1196px -743px;width:60px;height:60px}.hair_beard_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-1171px -819px;width:90px;height:90px}.customize-option.hair_beard_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-1196px -834px;width:60px;height:60px}.hair_beard_2_green{background-image:url(spritesmith0.png);background-position:-1171px -910px;width:90px;height:90px}.customize-option.hair_beard_2_green{background-image:url(spritesmith0.png);background-position:-1196px -925px;width:60px;height:60px}.hair_beard_2_halloween{background-image:url(spritesmith0.png);background-position:-1171px -1001px;width:90px;height:90px}.customize-option.hair_beard_2_halloween{background-image:url(spritesmith0.png);background-position:-1196px -1016px;width:60px;height:60px}.hair_beard_2_holly{background-image:url(spritesmith0.png);background-position:0 -1161px;width:90px;height:90px}.customize-option.hair_beard_2_holly{background-image:url(spritesmith0.png);background-position:-25px -1176px;width:60px;height:60px}.hair_beard_2_hollygreen{background-image:url(spritesmith0.png);background-position:-91px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_hollygreen{background-image:url(spritesmith0.png);background-position:-116px -1176px;width:60px;height:60px}.hair_beard_2_midnight{background-image:url(spritesmith0.png);background-position:-182px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_midnight{background-image:url(spritesmith0.png);background-position:-207px -1176px;width:60px;height:60px}.hair_beard_2_pblue{background-image:url(spritesmith0.png);background-position:-273px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_pblue{background-image:url(spritesmith0.png);background-position:-298px -1176px;width:60px;height:60px}.hair_beard_2_peppermint{background-image:url(spritesmith0.png);background-position:-364px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_peppermint{background-image:url(spritesmith0.png);background-position:-389px -1176px;width:60px;height:60px}.hair_beard_2_pgreen{background-image:url(spritesmith0.png);background-position:-455px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_pgreen{background-image:url(spritesmith0.png);background-position:-480px -1176px;width:60px;height:60px}.hair_beard_2_porange{background-image:url(spritesmith0.png);background-position:-546px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_porange{background-image:url(spritesmith0.png);background-position:-571px -1176px;width:60px;height:60px}.hair_beard_2_ppink{background-image:url(spritesmith0.png);background-position:-637px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_ppink{background-image:url(spritesmith0.png);background-position:-662px -1176px;width:60px;height:60px}.hair_beard_2_ppurple{background-image:url(spritesmith0.png);background-position:-728px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_ppurple{background-image:url(spritesmith0.png);background-position:-753px -1176px;width:60px;height:60px}.hair_beard_2_pumpkin{background-image:url(spritesmith0.png);background-position:-819px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_pumpkin{background-image:url(spritesmith0.png);background-position:-844px -1176px;width:60px;height:60px}.hair_beard_2_purple{background-image:url(spritesmith0.png);background-position:-910px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_purple{background-image:url(spritesmith0.png);background-position:-935px -1176px;width:60px;height:60px}.hair_beard_2_pyellow{background-image:url(spritesmith0.png);background-position:-1001px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_pyellow{background-image:url(spritesmith0.png);background-position:-1026px -1176px;width:60px;height:60px}.hair_beard_2_rainbow{background-image:url(spritesmith0.png);background-position:-1092px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_rainbow{background-image:url(spritesmith0.png);background-position:-1117px -1176px;width:60px;height:60px}.hair_beard_2_red{background-image:url(spritesmith0.png);background-position:-1262px 0;width:90px;height:90px}.customize-option.hair_beard_2_red{background-image:url(spritesmith0.png);background-position:-1287px -15px;width:60px;height:60px}.hair_beard_2_snowy{background-image:url(spritesmith0.png);background-position:-1262px -91px;width:90px;height:90px}.customize-option.hair_beard_2_snowy{background-image:url(spritesmith0.png);background-position:-1287px -106px;width:60px;height:60px}.hair_beard_2_white{background-image:url(spritesmith0.png);background-position:-1262px -182px;width:90px;height:90px}.customize-option.hair_beard_2_white{background-image:url(spritesmith0.png);background-position:-1287px -197px;width:60px;height:60px}.hair_beard_2_winternight{background-image:url(spritesmith0.png);background-position:-1262px -273px;width:90px;height:90px}.customize-option.hair_beard_2_winternight{background-image:url(spritesmith0.png);background-position:-1287px -288px;width:60px;height:60px}.hair_beard_2_winterstar{background-image:url(spritesmith0.png);background-position:-1262px -364px;width:90px;height:90px}.customize-option.hair_beard_2_winterstar{background-image:url(spritesmith0.png);background-position:-1287px -379px;width:60px;height:60px}.hair_beard_2_yellow{background-image:url(spritesmith0.png);background-position:-1262px -455px;width:90px;height:90px}.customize-option.hair_beard_2_yellow{background-image:url(spritesmith0.png);background-position:-1287px -470px;width:60px;height:60px}.hair_beard_2_zombie{background-image:url(spritesmith0.png);background-position:-1262px -546px;width:90px;height:90px}.customize-option.hair_beard_2_zombie{background-image:url(spritesmith0.png);background-position:-1287px -561px;width:60px;height:60px}.hair_beard_3_TRUred{background-image:url(spritesmith0.png);background-position:-1262px -637px;width:90px;height:90px}.customize-option.hair_beard_3_TRUred{background-image:url(spritesmith0.png);background-position:-1287px -652px;width:60px;height:60px}.hair_beard_3_aurora{background-image:url(spritesmith0.png);background-position:-1262px -728px;width:90px;height:90px}.customize-option.hair_beard_3_aurora{background-image:url(spritesmith0.png);background-position:-1287px -743px;width:60px;height:60px}.hair_beard_3_black{background-image:url(spritesmith0.png);background-position:-1262px -819px;width:90px;height:90px}.customize-option.hair_beard_3_black{background-image:url(spritesmith0.png);background-position:-1287px -834px;width:60px;height:60px}.hair_beard_3_blond{background-image:url(spritesmith0.png);background-position:-1262px -910px;width:90px;height:90px}.customize-option.hair_beard_3_blond{background-image:url(spritesmith0.png);background-position:-1287px -925px;width:60px;height:60px}.hair_beard_3_blue{background-image:url(spritesmith0.png);background-position:-1262px -1001px;width:90px;height:90px}.customize-option.hair_beard_3_blue{background-image:url(spritesmith0.png);background-position:-1287px -1016px;width:60px;height:60px}.hair_beard_3_brown{background-image:url(spritesmith0.png);background-position:-1262px -1092px;width:90px;height:90px}.customize-option.hair_beard_3_brown{background-image:url(spritesmith0.png);background-position:-1287px -1107px;width:60px;height:60px}.hair_beard_3_candycane{background-image:url(spritesmith0.png);background-position:0 -1252px;width:90px;height:90px}.customize-option.hair_beard_3_candycane{background-image:url(spritesmith0.png);background-position:-25px -1267px;width:60px;height:60px}.hair_beard_3_candycorn{background-image:url(spritesmith0.png);background-position:-91px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_candycorn{background-image:url(spritesmith0.png);background-position:-116px -1267px;width:60px;height:60px}.hair_beard_3_festive{background-image:url(spritesmith0.png);background-position:-182px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_festive{background-image:url(spritesmith0.png);background-position:-207px -1267px;width:60px;height:60px}.hair_beard_3_frost{background-image:url(spritesmith0.png);background-position:-273px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_frost{background-image:url(spritesmith0.png);background-position:-298px -1267px;width:60px;height:60px}.hair_beard_3_ghostwhite{background-image:url(spritesmith0.png);background-position:-364px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_ghostwhite{background-image:url(spritesmith0.png);background-position:-389px -1267px;width:60px;height:60px}.hair_beard_3_green{background-image:url(spritesmith0.png);background-position:-455px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_green{background-image:url(spritesmith0.png);background-position:-480px -1267px;width:60px;height:60px}.hair_beard_3_halloween{background-image:url(spritesmith0.png);background-position:-546px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_halloween{background-image:url(spritesmith0.png);background-position:-571px -1267px;width:60px;height:60px}.hair_beard_3_holly{background-image:url(spritesmith0.png);background-position:-637px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_holly{background-image:url(spritesmith0.png);background-position:-662px -1267px;width:60px;height:60px}.hair_beard_3_hollygreen{background-image:url(spritesmith0.png);background-position:-728px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_hollygreen{background-image:url(spritesmith0.png);background-position:-753px -1267px;width:60px;height:60px}.hair_beard_3_midnight{background-image:url(spritesmith0.png);background-position:-819px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_midnight{background-image:url(spritesmith0.png);background-position:-844px -1267px;width:60px;height:60px}.hair_beard_3_pblue{background-image:url(spritesmith0.png);background-position:-910px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_pblue{background-image:url(spritesmith0.png);background-position:-935px -1267px;width:60px;height:60px}.hair_beard_3_peppermint{background-image:url(spritesmith0.png);background-position:-1001px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_peppermint{background-image:url(spritesmith0.png);background-position:-1026px -1267px;width:60px;height:60px}.hair_beard_3_pgreen{background-image:url(spritesmith0.png);background-position:-1092px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_pgreen{background-image:url(spritesmith0.png);background-position:-1117px -1267px;width:60px;height:60px}.hair_beard_3_porange{background-image:url(spritesmith0.png);background-position:-1183px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_porange{background-image:url(spritesmith0.png);background-position:-1208px -1267px;width:60px;height:60px}.hair_beard_3_ppink{background-image:url(spritesmith0.png);background-position:-1353px 0;width:90px;height:90px}.customize-option.hair_beard_3_ppink{background-image:url(spritesmith0.png);background-position:-1378px -15px;width:60px;height:60px}.hair_beard_3_ppurple{background-image:url(spritesmith0.png);background-position:-1353px -91px;width:90px;height:90px}.customize-option.hair_beard_3_ppurple{background-image:url(spritesmith0.png);background-position:-1378px -106px;width:60px;height:60px}.hair_beard_3_pumpkin{background-image:url(spritesmith0.png);background-position:-1353px -182px;width:90px;height:90px}.customize-option.hair_beard_3_pumpkin{background-image:url(spritesmith0.png);background-position:-1378px -197px;width:60px;height:60px}.hair_beard_3_purple{background-image:url(spritesmith0.png);background-position:-1353px -273px;width:90px;height:90px}.customize-option.hair_beard_3_purple{background-image:url(spritesmith0.png);background-position:-1378px -288px;width:60px;height:60px}.hair_beard_3_pyellow{background-image:url(spritesmith0.png);background-position:-1353px -364px;width:90px;height:90px}.customize-option.hair_beard_3_pyellow{background-image:url(spritesmith0.png);background-position:-1378px -379px;width:60px;height:60px}.hair_beard_3_rainbow{background-image:url(spritesmith0.png);background-position:-1353px -455px;width:90px;height:90px}.customize-option.hair_beard_3_rainbow{background-image:url(spritesmith0.png);background-position:-1378px -470px;width:60px;height:60px}.hair_beard_3_red{background-image:url(spritesmith0.png);background-position:-1353px -546px;width:90px;height:90px}.customize-option.hair_beard_3_red{background-image:url(spritesmith0.png);background-position:-1378px -561px;width:60px;height:60px}.hair_beard_3_snowy{background-image:url(spritesmith0.png);background-position:-1353px -637px;width:90px;height:90px}.customize-option.hair_beard_3_snowy{background-image:url(spritesmith0.png);background-position:-1378px -652px;width:60px;height:60px}.hair_beard_3_white{background-image:url(spritesmith0.png);background-position:-1353px -728px;width:90px;height:90px}.customize-option.hair_beard_3_white{background-image:url(spritesmith0.png);background-position:-1378px -743px;width:60px;height:60px}.hair_beard_3_winternight{background-image:url(spritesmith0.png);background-position:-1353px -819px;width:90px;height:90px}.customize-option.hair_beard_3_winternight{background-image:url(spritesmith0.png);background-position:-1378px -834px;width:60px;height:60px}.hair_beard_3_winterstar{background-image:url(spritesmith0.png);background-position:-1353px -910px;width:90px;height:90px}.customize-option.hair_beard_3_winterstar{background-image:url(spritesmith0.png);background-position:-1378px -925px;width:60px;height:60px}.hair_beard_3_yellow{background-image:url(spritesmith0.png);background-position:-1353px -1001px;width:90px;height:90px}.customize-option.hair_beard_3_yellow{background-image:url(spritesmith0.png);background-position:-1378px -1016px;width:60px;height:60px}.hair_beard_3_zombie{background-image:url(spritesmith0.png);background-position:-1353px -1092px;width:90px;height:90px}.customize-option.hair_beard_3_zombie{background-image:url(spritesmith0.png);background-position:-1378px -1107px;width:60px;height:60px}.hair_mustache_1_TRUred{background-image:url(spritesmith0.png);background-position:-1353px -1183px;width:90px;height:90px}.customize-option.hair_mustache_1_TRUred{background-image:url(spritesmith0.png);background-position:-1378px -1198px;width:60px;height:60px}.hair_mustache_1_aurora{background-image:url(spritesmith0.png);background-position:0 -1343px;width:90px;height:90px}.customize-option.hair_mustache_1_aurora{background-image:url(spritesmith0.png);background-position:-25px -1358px;width:60px;height:60px}.hair_mustache_1_black{background-image:url(spritesmith0.png);background-position:-91px -1343px;width:90px;height:90px}.customize-option.hair_mustache_1_black{background-image:url(spritesmith0.png);background-position:-116px -1358px;width:60px;height:60px}.hair_mustache_1_blond{background-image:url(spritesmith0.png);background-position:-182px -1343px;width:90px;height:90px}.customize-option.hair_mustache_1_blond{background-image:url(spritesmith0.png);background-position:-207px -1358px;width:60px;height:60px}.hair_mustache_1_blue{background-image:url(spritesmith0.png);background-position:-273px -1343px;width:90px;height:90px}.customize-option.hair_mustache_1_blue{background-image:url(spritesmith0.png);background-position:-298px -1358px;width:60px;height:60px}.hair_mustache_1_brown{background-image:url(spritesmith0.png);background-position:-364px -1343px;width:90px;height:90px}.customize-option.hair_mustache_1_brown{background-image:url(spritesmith0.png);background-position:-389px -1358px;width:60px;height:60px}.hair_mustache_1_candycane{background-image:url(spritesmith0.png);background-position:-455px -1343px;width:90px;height:90px}.customize-option.hair_mustache_1_candycane{background-image:url(spritesmith0.png);background-position:-480px -1358px;width:60px;height:60px}.hair_mustache_1_candycorn{background-image:url(spritesmith0.png);background-position:-546px -1343px;width:90px;height:90px}.customize-option.hair_mustache_1_candycorn{background-image:url(spritesmith0.png);background-position:-571px -1358px;width:60px;height:60px}.hair_mustache_1_festive{background-image:url(spritesmith0.png);background-position:-637px -1343px;width:90px;height:90px}.customize-option.hair_mustache_1_festive{background-image:url(spritesmith0.png);background-position:-662px -1358px;width:60px;height:60px}.hair_mustache_1_frost{background-image:url(spritesmith0.png);background-position:-728px -1343px;width:90px;height:90px}.customize-option.hair_mustache_1_frost{background-image:url(spritesmith0.png);background-position:-753px -1358px;width:60px;height:60px}.hair_mustache_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-819px -1343px;width:90px;height:90px}.customize-option.hair_mustache_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-844px -1358px;width:60px;height:60px}.hair_mustache_1_green{background-image:url(spritesmith0.png);background-position:-910px -1343px;width:90px;height:90px}.customize-option.hair_mustache_1_green{background-image:url(spritesmith0.png);background-position:-935px -1358px;width:60px;height:60px}.hair_mustache_1_halloween{background-image:url(spritesmith0.png);background-position:-1001px -1343px;width:90px;height:90px}.customize-option.hair_mustache_1_halloween{background-image:url(spritesmith0.png);background-position:-1026px -1358px;width:60px;height:60px}.hair_mustache_1_holly{background-image:url(spritesmith0.png);background-position:-1092px -1343px;width:90px;height:90px}.customize-option.hair_mustache_1_holly{background-image:url(spritesmith0.png);background-position:-1117px -1358px;width:60px;height:60px}.hair_mustache_1_hollygreen{background-image:url(spritesmith0.png);background-position:-1183px -1343px;width:90px;height:90px}.customize-option.hair_mustache_1_hollygreen{background-image:url(spritesmith0.png);background-position:-1208px -1358px;width:60px;height:60px}.hair_mustache_1_midnight{background-image:url(spritesmith0.png);background-position:-1274px -1343px;width:90px;height:90px}.customize-option.hair_mustache_1_midnight{background-image:url(spritesmith0.png);background-position:-1299px -1358px;width:60px;height:60px}.hair_mustache_1_pblue{background-image:url(spritesmith0.png);background-position:-1444px 0;width:90px;height:90px}.customize-option.hair_mustache_1_pblue{background-image:url(spritesmith0.png);background-position:-1469px -15px;width:60px;height:60px}.hair_mustache_1_peppermint{background-image:url(spritesmith0.png);background-position:-1444px -91px;width:90px;height:90px}.customize-option.hair_mustache_1_peppermint{background-image:url(spritesmith0.png);background-position:-1469px -106px;width:60px;height:60px}.hair_mustache_1_pgreen{background-image:url(spritesmith0.png);background-position:-1444px -182px;width:90px;height:90px}.customize-option.hair_mustache_1_pgreen{background-image:url(spritesmith0.png);background-position:-1469px -197px;width:60px;height:60px}.hair_mustache_1_porange{background-image:url(spritesmith0.png);background-position:-848px -148px;width:90px;height:90px}.customize-option.hair_mustache_1_porange{background-image:url(spritesmith0.png);background-position:-873px -163px;width:60px;height:60px}.hair_mustache_1_ppink{background-image:url(spritesmith0.png);background-position:-1444px -364px;width:90px;height:90px}.customize-option.hair_mustache_1_ppink{background-image:url(spritesmith0.png);background-position:-1469px -379px;width:60px;height:60px}.hair_mustache_1_ppurple{background-image:url(spritesmith0.png);background-position:-1444px -455px;width:90px;height:90px}.customize-option.hair_mustache_1_ppurple{background-image:url(spritesmith0.png);background-position:-1469px -470px;width:60px;height:60px}.hair_mustache_1_pumpkin{background-image:url(spritesmith0.png);background-position:-1444px -546px;width:90px;height:90px}.customize-option.hair_mustache_1_pumpkin{background-image:url(spritesmith0.png);background-position:-1469px -561px;width:60px;height:60px}.hair_mustache_1_purple{background-image:url(spritesmith0.png);background-position:-1444px -637px;width:90px;height:90px}.customize-option.hair_mustache_1_purple{background-image:url(spritesmith0.png);background-position:-1469px -652px;width:60px;height:60px}.hair_mustache_1_pyellow{background-image:url(spritesmith0.png);background-position:-1444px -728px;width:90px;height:90px}.customize-option.hair_mustache_1_pyellow{background-image:url(spritesmith0.png);background-position:-1469px -743px;width:60px;height:60px}.hair_mustache_1_rainbow{background-image:url(spritesmith0.png);background-position:-1444px -819px;width:90px;height:90px}.customize-option.hair_mustache_1_rainbow{background-image:url(spritesmith0.png);background-position:-1469px -834px;width:60px;height:60px}.hair_mustache_1_red{background-image:url(spritesmith0.png);background-position:-1444px -910px;width:90px;height:90px}.customize-option.hair_mustache_1_red{background-image:url(spritesmith0.png);background-position:-1469px -925px;width:60px;height:60px}.hair_mustache_1_snowy{background-image:url(spritesmith0.png);background-position:-1444px -1001px;width:90px;height:90px}.customize-option.hair_mustache_1_snowy{background-image:url(spritesmith0.png);background-position:-1469px -1016px;width:60px;height:60px}.hair_mustache_1_white{background-image:url(spritesmith0.png);background-position:-1444px -1092px;width:90px;height:90px}.customize-option.hair_mustache_1_white{background-image:url(spritesmith0.png);background-position:-1469px -1107px;width:60px;height:60px}.hair_mustache_1_winternight{background-image:url(spritesmith0.png);background-position:-1444px -1183px;width:90px;height:90px}.customize-option.hair_mustache_1_winternight{background-image:url(spritesmith0.png);background-position:-1469px -1198px;width:60px;height:60px}.hair_mustache_1_winterstar{background-image:url(spritesmith0.png);background-position:-1444px -1274px;width:90px;height:90px}.customize-option.hair_mustache_1_winterstar{background-image:url(spritesmith0.png);background-position:-1469px -1289px;width:60px;height:60px}.hair_mustache_1_yellow{background-image:url(spritesmith0.png);background-position:0 -1434px;width:90px;height:90px}.customize-option.hair_mustache_1_yellow{background-image:url(spritesmith0.png);background-position:-25px -1449px;width:60px;height:60px}.hair_mustache_1_zombie{background-image:url(spritesmith0.png);background-position:-91px -1434px;width:90px;height:90px}.customize-option.hair_mustache_1_zombie{background-image:url(spritesmith0.png);background-position:-116px -1449px;width:60px;height:60px}.hair_mustache_2_TRUred{background-image:url(spritesmith0.png);background-position:-182px -1434px;width:90px;height:90px}.customize-option.hair_mustache_2_TRUred{background-image:url(spritesmith0.png);background-position:-207px -1449px;width:60px;height:60px}.hair_mustache_2_aurora{background-image:url(spritesmith0.png);background-position:-273px -1434px;width:90px;height:90px}.customize-option.hair_mustache_2_aurora{background-image:url(spritesmith0.png);background-position:-298px -1449px;width:60px;height:60px}.hair_mustache_2_black{background-image:url(spritesmith0.png);background-position:-364px -1434px;width:90px;height:90px}.customize-option.hair_mustache_2_black{background-image:url(spritesmith0.png);background-position:-389px -1449px;width:60px;height:60px}.hair_mustache_2_blond{background-image:url(spritesmith0.png);background-position:-455px -1434px;width:90px;height:90px}.customize-option.hair_mustache_2_blond{background-image:url(spritesmith0.png);background-position:-480px -1449px;width:60px;height:60px}.hair_mustache_2_blue{background-image:url(spritesmith0.png);background-position:-546px -1434px;width:90px;height:90px}.customize-option.hair_mustache_2_blue{background-image:url(spritesmith0.png);background-position:-571px -1449px;width:60px;height:60px}.hair_mustache_2_brown{background-image:url(spritesmith0.png);background-position:-637px -1434px;width:90px;height:90px}.customize-option.hair_mustache_2_brown{background-image:url(spritesmith0.png);background-position:-662px -1449px;width:60px;height:60px}.hair_mustache_2_candycane{background-image:url(spritesmith0.png);background-position:-728px -1434px;width:90px;height:90px}.customize-option.hair_mustache_2_candycane{background-image:url(spritesmith0.png);background-position:-753px -1449px;width:60px;height:60px}.hair_mustache_2_candycorn{background-image:url(spritesmith0.png);background-position:-819px -1434px;width:90px;height:90px}.customize-option.hair_mustache_2_candycorn{background-image:url(spritesmith0.png);background-position:-844px -1449px;width:60px;height:60px}.hair_mustache_2_festive{background-image:url(spritesmith0.png);background-position:-910px -1434px;width:90px;height:90px}.customize-option.hair_mustache_2_festive{background-image:url(spritesmith0.png);background-position:-935px -1449px;width:60px;height:60px}.hair_mustache_2_frost{background-image:url(spritesmith0.png);background-position:-1001px -1434px;width:90px;height:90px}.customize-option.hair_mustache_2_frost{background-image:url(spritesmith0.png);background-position:-1026px -1449px;width:60px;height:60px}.hair_mustache_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-1092px -1434px;width:90px;height:90px}.customize-option.hair_mustache_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-1117px -1449px;width:60px;height:60px}.hair_mustache_2_green{background-image:url(spritesmith0.png);background-position:-1183px -1434px;width:90px;height:90px}.customize-option.hair_mustache_2_green{background-image:url(spritesmith0.png);background-position:-1208px -1449px;width:60px;height:60px}.hair_mustache_2_halloween{background-image:url(spritesmith0.png);background-position:-1274px -1434px;width:90px;height:90px}.customize-option.hair_mustache_2_halloween{background-image:url(spritesmith0.png);background-position:-1299px -1449px;width:60px;height:60px}.hair_mustache_2_holly{background-image:url(spritesmith0.png);background-position:-1365px -1434px;width:90px;height:90px}.customize-option.hair_mustache_2_holly{background-image:url(spritesmith0.png);background-position:-1390px -1449px;width:60px;height:60px}.hair_mustache_2_hollygreen{background-image:url(spritesmith0.png);background-position:-1535px 0;width:90px;height:90px}.customize-option.hair_mustache_2_hollygreen{background-image:url(spritesmith0.png);background-position:-1560px -15px;width:60px;height:60px}.hair_mustache_2_midnight{background-image:url(spritesmith0.png);background-position:-1535px -91px;width:90px;height:90px}.customize-option.hair_mustache_2_midnight{background-image:url(spritesmith0.png);background-position:-1560px -106px;width:60px;height:60px}.hair_mustache_2_pblue{background-image:url(spritesmith0.png);background-position:-1535px -182px;width:90px;height:90px}.customize-option.hair_mustache_2_pblue{background-image:url(spritesmith0.png);background-position:-1560px -197px;width:60px;height:60px}.hair_mustache_2_peppermint{background-image:url(spritesmith0.png);background-position:-1535px -273px;width:90px;height:90px}.customize-option.hair_mustache_2_peppermint{background-image:url(spritesmith0.png);background-position:-1560px -288px;width:60px;height:60px}.hair_mustache_2_pgreen{background-image:url(spritesmith0.png);background-position:-1535px -364px;width:90px;height:90px}.customize-option.hair_mustache_2_pgreen{background-image:url(spritesmith0.png);background-position:-1560px -379px;width:60px;height:60px}.hair_mustache_2_porange{background-image:url(spritesmith0.png);background-position:-1535px -455px;width:90px;height:90px}.customize-option.hair_mustache_2_porange{background-image:url(spritesmith0.png);background-position:-1560px -470px;width:60px;height:60px}.hair_mustache_2_ppink{background-image:url(spritesmith0.png);background-position:-1535px -546px;width:90px;height:90px}.customize-option.hair_mustache_2_ppink{background-image:url(spritesmith0.png);background-position:-1560px -561px;width:60px;height:60px}.hair_mustache_2_ppurple{background-image:url(spritesmith0.png);background-position:-1535px -637px;width:90px;height:90px}.customize-option.hair_mustache_2_ppurple{background-image:url(spritesmith0.png);background-position:-1560px -652px;width:60px;height:60px}.hair_mustache_2_pumpkin{background-image:url(spritesmith0.png);background-position:-1535px -728px;width:90px;height:90px}.customize-option.hair_mustache_2_pumpkin{background-image:url(spritesmith0.png);background-position:-1560px -743px;width:60px;height:60px}.hair_mustache_2_purple{background-image:url(spritesmith0.png);background-position:-1535px -819px;width:90px;height:90px}.customize-option.hair_mustache_2_purple{background-image:url(spritesmith0.png);background-position:-1560px -834px;width:60px;height:60px}.hair_mustache_2_pyellow{background-image:url(spritesmith0.png);background-position:-1535px -910px;width:90px;height:90px}.customize-option.hair_mustache_2_pyellow{background-image:url(spritesmith0.png);background-position:-1560px -925px;width:60px;height:60px}.hair_mustache_2_rainbow{background-image:url(spritesmith0.png);background-position:-1535px -1001px;width:90px;height:90px}.customize-option.hair_mustache_2_rainbow{background-image:url(spritesmith0.png);background-position:-1560px -1016px;width:60px;height:60px}.hair_mustache_2_red{background-image:url(spritesmith0.png);background-position:-1535px -1092px;width:90px;height:90px}.customize-option.hair_mustache_2_red{background-image:url(spritesmith0.png);background-position:-1560px -1107px;width:60px;height:60px}.hair_mustache_2_snowy{background-image:url(spritesmith0.png);background-position:-1535px -1183px;width:90px;height:90px}.customize-option.hair_mustache_2_snowy{background-image:url(spritesmith0.png);background-position:-1560px -1198px;width:60px;height:60px}.hair_mustache_2_white{background-image:url(spritesmith0.png);background-position:-1535px -1274px;width:90px;height:90px}.customize-option.hair_mustache_2_white{background-image:url(spritesmith0.png);background-position:-1560px -1289px;width:60px;height:60px}.hair_mustache_2_winternight{background-image:url(spritesmith0.png);background-position:-1535px -1365px;width:90px;height:90px}.customize-option.hair_mustache_2_winternight{background-image:url(spritesmith0.png);background-position:-1560px -1380px;width:60px;height:60px}.hair_mustache_2_winterstar{background-image:url(spritesmith0.png);background-position:0 -1525px;width:90px;height:90px}.customize-option.hair_mustache_2_winterstar{background-image:url(spritesmith0.png);background-position:-25px -1540px;width:60px;height:60px}.hair_mustache_2_yellow{background-image:url(spritesmith0.png);background-position:-91px -1525px;width:90px;height:90px}.customize-option.hair_mustache_2_yellow{background-image:url(spritesmith0.png);background-position:-116px -1540px;width:60px;height:60px}.hair_mustache_2_zombie{background-image:url(spritesmith0.png);background-position:-182px -1525px;width:90px;height:90px}.customize-option.hair_mustache_2_zombie{background-image:url(spritesmith0.png);background-position:-207px -1540px;width:60px;height:60px}.hair_flower_1{background-image:url(spritesmith0.png);background-position:-273px -1525px;width:90px;height:90px}.customize-option.hair_flower_1{background-image:url(spritesmith0.png);background-position:-298px -1540px;width:60px;height:60px}.hair_flower_2{background-image:url(spritesmith0.png);background-position:-364px -1525px;width:90px;height:90px}.customize-option.hair_flower_2{background-image:url(spritesmith0.png);background-position:-389px -1540px;width:60px;height:60px}.hair_flower_3{background-image:url(spritesmith0.png);background-position:-455px -1525px;width:90px;height:90px}.customize-option.hair_flower_3{background-image:url(spritesmith0.png);background-position:-480px -1540px;width:60px;height:60px}.hair_flower_4{background-image:url(spritesmith0.png);background-position:-546px -1525px;width:90px;height:90px}.customize-option.hair_flower_4{background-image:url(spritesmith0.png);background-position:-571px -1540px;width:60px;height:60px}.hair_flower_5{background-image:url(spritesmith0.png);background-position:-637px -1525px;width:90px;height:90px}.customize-option.hair_flower_5{background-image:url(spritesmith0.png);background-position:-662px -1540px;width:60px;height:60px}.hair_flower_6{background-image:url(spritesmith0.png);background-position:-728px -1525px;width:90px;height:90px}.customize-option.hair_flower_6{background-image:url(spritesmith0.png);background-position:-753px -1540px;width:60px;height:60px}.hair_bangs_1_TRUred{background-image:url(spritesmith0.png);background-position:-819px -1525px;width:90px;height:90px}.customize-option.hair_bangs_1_TRUred{background-image:url(spritesmith0.png);background-position:-844px -1540px;width:60px;height:60px}.hair_bangs_1_aurora{background-image:url(spritesmith0.png);background-position:-910px -1525px;width:90px;height:90px}.customize-option.hair_bangs_1_aurora{background-image:url(spritesmith0.png);background-position:-935px -1540px;width:60px;height:60px}.hair_bangs_1_black{background-image:url(spritesmith0.png);background-position:-1001px -1525px;width:90px;height:90px}.customize-option.hair_bangs_1_black{background-image:url(spritesmith0.png);background-position:-1026px -1540px;width:60px;height:60px}.hair_bangs_1_blond{background-image:url(spritesmith0.png);background-position:-1092px -1525px;width:90px;height:90px}.customize-option.hair_bangs_1_blond{background-image:url(spritesmith0.png);background-position:-1117px -1540px;width:60px;height:60px}.hair_bangs_1_blue{background-image:url(spritesmith0.png);background-position:-1183px -1525px;width:90px;height:90px}.customize-option.hair_bangs_1_blue{background-image:url(spritesmith0.png);background-position:-1208px -1540px;width:60px;height:60px}.hair_bangs_1_brown{background-image:url(spritesmith0.png);background-position:-1274px -1525px;width:90px;height:90px}.customize-option.hair_bangs_1_brown{background-image:url(spritesmith0.png);background-position:-1299px -1540px;width:60px;height:60px}.hair_bangs_1_candycane{background-image:url(spritesmith0.png);background-position:-1365px -1525px;width:90px;height:90px}.customize-option.hair_bangs_1_candycane{background-image:url(spritesmith0.png);background-position:-1390px -1540px;width:60px;height:60px}.hair_bangs_1_candycorn{background-image:url(spritesmith0.png);background-position:-1456px -1525px;width:90px;height:90px}.customize-option.hair_bangs_1_candycorn{background-image:url(spritesmith0.png);background-position:-1481px -1540px;width:60px;height:60px}.hair_bangs_1_festive{background-image:url(spritesmith0.png);background-position:-1626px 0;width:90px;height:90px}.customize-option.hair_bangs_1_festive{background-image:url(spritesmith0.png);background-position:-1651px -15px;width:60px;height:60px}.hair_bangs_1_frost{background-image:url(spritesmith0.png);background-position:-1626px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_frost{background-image:url(spritesmith0.png);background-position:-1651px -106px;width:60px;height:60px}.hair_bangs_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-1626px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-1651px -197px;width:60px;height:60px}.hair_bangs_1_green{background-image:url(spritesmith0.png);background-position:-1626px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_green{background-image:url(spritesmith0.png);background-position:-1651px -288px;width:60px;height:60px}.hair_bangs_1_halloween{background-image:url(spritesmith0.png);background-position:-1626px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_halloween{background-image:url(spritesmith0.png);background-position:-1651px -379px;width:60px;height:60px}.hair_bangs_1_holly{background-image:url(spritesmith0.png);background-position:-1626px -455px;width:90px;height:90px}.customize-option.hair_bangs_1_holly{background-image:url(spritesmith0.png);background-position:-1651px -470px;width:60px;height:60px}.hair_bangs_1_hollygreen{background-image:url(spritesmith0.png);background-position:-1626px -546px;width:90px;height:90px}.customize-option.hair_bangs_1_hollygreen{background-image:url(spritesmith0.png);background-position:-1651px -561px;width:60px;height:60px}.hair_bangs_1_midnight{background-image:url(spritesmith0.png);background-position:-1626px -637px;width:90px;height:90px}.customize-option.hair_bangs_1_midnight{background-image:url(spritesmith0.png);background-position:-1651px -652px;width:60px;height:60px}.hair_bangs_1_pblue{background-image:url(spritesmith0.png);background-position:-1626px -728px;width:90px;height:90px}.customize-option.hair_bangs_1_pblue{background-image:url(spritesmith0.png);background-position:-1651px -743px;width:60px;height:60px}.hair_bangs_1_pblue2{background-image:url(spritesmith0.png);background-position:-1626px -819px;width:90px;height:90px}.customize-option.hair_bangs_1_pblue2{background-image:url(spritesmith0.png);background-position:-1651px -834px;width:60px;height:60px}.hair_bangs_1_peppermint{background-image:url(spritesmith0.png);background-position:-1626px -910px;width:90px;height:90px}.customize-option.hair_bangs_1_peppermint{background-image:url(spritesmith0.png);background-position:-1651px -925px;width:60px;height:60px}.hair_bangs_1_pgreen{background-image:url(spritesmith0.png);background-position:-1626px -1001px;width:90px;height:90px}.customize-option.hair_bangs_1_pgreen{background-image:url(spritesmith0.png);background-position:-1651px -1016px;width:60px;height:60px}.hair_bangs_1_pgreen2{background-image:url(spritesmith0.png);background-position:-1626px -1092px;width:90px;height:90px}.customize-option.hair_bangs_1_pgreen2{background-image:url(spritesmith0.png);background-position:-1651px -1107px;width:60px;height:60px}.hair_bangs_1_porange{background-image:url(spritesmith0.png);background-position:-1626px -1183px;width:90px;height:90px}.customize-option.hair_bangs_1_porange{background-image:url(spritesmith0.png);background-position:-1651px -1198px;width:60px;height:60px}.hair_bangs_1_porange2{background-image:url(spritesmith0.png);background-position:-1626px -1274px;width:90px;height:90px}.customize-option.hair_bangs_1_porange2{background-image:url(spritesmith0.png);background-position:-1651px -1289px;width:60px;height:60px}.hair_bangs_1_ppink{background-image:url(spritesmith0.png);background-position:-1626px -1365px;width:90px;height:90px}.customize-option.hair_bangs_1_ppink{background-image:url(spritesmith0.png);background-position:-1651px -1380px;width:60px;height:60px}.hair_bangs_1_ppink2{background-image:url(spritesmith0.png);background-position:-1626px -1456px;width:90px;height:90px}.customize-option.hair_bangs_1_ppink2{background-image:url(spritesmith0.png);background-position:-1651px -1471px;width:60px;height:60px}.hair_bangs_1_ppurple{background-image:url(spritesmith0.png);background-position:0 -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_ppurple{background-image:url(spritesmith0.png);background-position:-25px -1631px;width:60px;height:60px}.hair_bangs_1_ppurple2{background-image:url(spritesmith0.png);background-position:-91px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_ppurple2{background-image:url(spritesmith0.png);background-position:-116px -1631px;width:60px;height:60px}.hair_bangs_1_pumpkin{background-image:url(spritesmith0.png);background-position:-182px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_pumpkin{background-image:url(spritesmith0.png);background-position:-207px -1631px;width:60px;height:60px}.hair_bangs_1_purple{background-image:url(spritesmith0.png);background-position:-273px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_purple{background-image:url(spritesmith0.png);background-position:-298px -1631px;width:60px;height:60px}.hair_bangs_1_pyellow{background-image:url(spritesmith0.png);background-position:-364px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_pyellow{background-image:url(spritesmith0.png);background-position:-389px -1631px;width:60px;height:60px}.hair_bangs_1_pyellow2{background-image:url(spritesmith0.png);background-position:-455px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_pyellow2{background-image:url(spritesmith0.png);background-position:-480px -1631px;width:60px;height:60px}.hair_bangs_1_rainbow{background-image:url(spritesmith0.png);background-position:-546px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_rainbow{background-image:url(spritesmith0.png);background-position:-571px -1631px;width:60px;height:60px}.hair_bangs_1_red{background-image:url(spritesmith0.png);background-position:-637px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_red{background-image:url(spritesmith0.png);background-position:-662px -1631px;width:60px;height:60px}.hair_bangs_1_snowy{background-image:url(spritesmith0.png);background-position:-728px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_snowy{background-image:url(spritesmith0.png);background-position:-753px -1631px;width:60px;height:60px}.hair_bangs_1_white{background-image:url(spritesmith0.png);background-position:-819px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_white{background-image:url(spritesmith0.png);background-position:-844px -1631px;width:60px;height:60px}.hair_bangs_1_winternight{background-image:url(spritesmith0.png);background-position:-910px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_winternight{background-image:url(spritesmith0.png);background-position:-935px -1631px;width:60px;height:60px}.hair_bangs_1_winterstar{background-image:url(spritesmith0.png);background-position:-1001px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_winterstar{background-image:url(spritesmith0.png);background-position:-1026px -1631px;width:60px;height:60px}.hair_bangs_1_yellow{background-image:url(spritesmith0.png);background-position:-1092px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_yellow{background-image:url(spritesmith0.png);background-position:-1117px -1631px;width:60px;height:60px}.hair_bangs_1_zombie{background-image:url(spritesmith0.png);background-position:-1183px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_zombie{background-image:url(spritesmith0.png);background-position:-1208px -1631px;width:60px;height:60px}.hair_bangs_2_TRUred{background-image:url(spritesmith0.png);background-position:-1274px -1616px;width:90px;height:90px}.customize-option.hair_bangs_2_TRUred{background-image:url(spritesmith0.png);background-position:-1299px -1631px;width:60px;height:60px}.hair_bangs_2_aurora{background-image:url(spritesmith0.png);background-position:-1365px -1616px;width:90px;height:90px}.customize-option.hair_bangs_2_aurora{background-image:url(spritesmith0.png);background-position:-1390px -1631px;width:60px;height:60px}.hair_bangs_2_black{background-image:url(spritesmith0.png);background-position:-1456px -1616px;width:90px;height:90px}.customize-option.hair_bangs_2_black{background-image:url(spritesmith0.png);background-position:-1481px -1631px;width:60px;height:60px}.hair_bangs_2_blond{background-image:url(spritesmith0.png);background-position:-1547px -1616px;width:90px;height:90px}.customize-option.hair_bangs_2_blond{background-image:url(spritesmith0.png);background-position:-1572px -1631px;width:60px;height:60px}.hair_bangs_2_blue{background-image:url(spritesmith0.png);background-position:-1717px 0;width:90px;height:90px}.customize-option.hair_bangs_2_blue{background-image:url(spritesmith0.png);background-position:-1742px -15px;width:60px;height:60px}.hair_bangs_2_brown{background-image:url(spritesmith0.png);background-position:-1717px -91px;width:90px;height:90px}.customize-option.hair_bangs_2_brown{background-image:url(spritesmith0.png);background-position:-1742px -106px;width:60px;height:60px}.hair_bangs_2_candycane{background-image:url(spritesmith0.png);background-position:-1717px -182px;width:90px;height:90px}.customize-option.hair_bangs_2_candycane{background-image:url(spritesmith0.png);background-position:-1742px -197px;width:60px;height:60px}.hair_bangs_2_candycorn{background-image:url(spritesmith0.png);background-position:-1717px -273px;width:90px;height:90px}.customize-option.hair_bangs_2_candycorn{background-image:url(spritesmith0.png);background-position:-1742px -288px;width:60px;height:60px}.hair_bangs_2_festive{background-image:url(spritesmith0.png);background-position:-1717px -364px;width:90px;height:90px}.customize-option.hair_bangs_2_festive{background-image:url(spritesmith0.png);background-position:-1742px -379px;width:60px;height:60px}.hair_bangs_2_frost{background-image:url(spritesmith0.png);background-position:-1717px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_frost{background-image:url(spritesmith0.png);background-position:-1742px -470px;width:60px;height:60px}.hair_bangs_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-1717px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-1742px -561px;width:60px;height:60px}.hair_bangs_2_green{background-image:url(spritesmith0.png);background-position:-1717px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_green{background-image:url(spritesmith0.png);background-position:-1742px -652px;width:60px;height:60px}.hair_bangs_2_halloween{background-image:url(spritesmith0.png);background-position:-1717px -728px;width:90px;height:90px}.customize-option.hair_bangs_2_halloween{background-image:url(spritesmith0.png);background-position:-1742px -743px;width:60px;height:60px}.hair_bangs_2_holly{background-image:url(spritesmith0.png);background-position:-1717px -819px;width:90px;height:90px}.customize-option.hair_bangs_2_holly{background-image:url(spritesmith0.png);background-position:-1742px -834px;width:60px;height:60px}.hair_bangs_2_hollygreen{background-image:url(spritesmith0.png);background-position:-1717px -910px;width:90px;height:90px}.customize-option.hair_bangs_2_hollygreen{background-image:url(spritesmith0.png);background-position:-1742px -925px;width:60px;height:60px}.hair_bangs_2_midnight{background-image:url(spritesmith0.png);background-position:-1717px -1001px;width:90px;height:90px}.customize-option.hair_bangs_2_midnight{background-image:url(spritesmith0.png);background-position:-1742px -1016px;width:60px;height:60px}.hair_bangs_2_pblue{background-image:url(spritesmith0.png);background-position:-1717px -1092px;width:90px;height:90px}.customize-option.hair_bangs_2_pblue{background-image:url(spritesmith0.png);background-position:-1742px -1107px;width:60px;height:60px}.hair_bangs_2_pblue2{background-image:url(spritesmith0.png);background-position:-1717px -1183px;width:90px;height:90px}.customize-option.hair_bangs_2_pblue2{background-image:url(spritesmith0.png);background-position:-1742px -1198px;width:60px;height:60px}.hair_bangs_2_peppermint{background-image:url(spritesmith0.png);background-position:-1717px -1274px;width:90px;height:90px}.customize-option.hair_bangs_2_peppermint{background-image:url(spritesmith0.png);background-position:-1742px -1289px;width:60px;height:60px}.hair_bangs_2_pgreen{background-image:url(spritesmith0.png);background-position:-1717px -1365px;width:90px;height:90px}.customize-option.hair_bangs_2_pgreen{background-image:url(spritesmith0.png);background-position:-1742px -1380px;width:60px;height:60px}.hair_bangs_2_pgreen2{background-image:url(spritesmith0.png);background-position:-1717px -1456px;width:90px;height:90px}.customize-option.hair_bangs_2_pgreen2{background-image:url(spritesmith0.png);background-position:-1742px -1471px;width:60px;height:60px}.hair_bangs_2_porange{background-image:url(spritesmith0.png);background-position:-1717px -1547px;width:90px;height:90px}.customize-option.hair_bangs_2_porange{background-image:url(spritesmith0.png);background-position:-1742px -1562px;width:60px;height:60px}.hair_bangs_2_porange2{background-image:url(spritesmith0.png);background-position:0 -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_porange2{background-image:url(spritesmith0.png);background-position:-25px -1722px;width:60px;height:60px}.hair_bangs_2_ppink{background-image:url(spritesmith0.png);background-position:-91px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_ppink{background-image:url(spritesmith0.png);background-position:-116px -1722px;width:60px;height:60px}.hair_bangs_2_ppink2{background-image:url(spritesmith0.png);background-position:-182px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_ppink2{background-image:url(spritesmith0.png);background-position:-207px -1722px;width:60px;height:60px}.hair_bangs_2_ppurple{background-image:url(spritesmith0.png);background-position:-273px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_ppurple{background-image:url(spritesmith0.png);background-position:-298px -1722px;width:60px;height:60px}.hair_bangs_2_ppurple2{background-image:url(spritesmith0.png);background-position:-364px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_ppurple2{background-image:url(spritesmith0.png);background-position:-389px -1722px;width:60px;height:60px}.hair_bangs_2_pumpkin{background-image:url(spritesmith0.png);background-position:-455px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_pumpkin{background-image:url(spritesmith0.png);background-position:-480px -1722px;width:60px;height:60px}.hair_bangs_2_purple{background-image:url(spritesmith0.png);background-position:-546px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_purple{background-image:url(spritesmith0.png);background-position:-571px -1722px;width:60px;height:60px}.hair_bangs_2_pyellow{background-image:url(spritesmith0.png);background-position:-637px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_pyellow{background-image:url(spritesmith0.png);background-position:-662px -1722px;width:60px;height:60px}.hair_bangs_2_pyellow2{background-image:url(spritesmith0.png);background-position:-728px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_pyellow2{background-image:url(spritesmith0.png);background-position:-753px -1722px;width:60px;height:60px}.hair_bangs_2_rainbow{background-image:url(spritesmith0.png);background-position:-819px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_rainbow{background-image:url(spritesmith0.png);background-position:-844px -1722px;width:60px;height:60px}.hair_bangs_2_red{background-image:url(spritesmith0.png);background-position:-910px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_red{background-image:url(spritesmith0.png);background-position:-935px -1722px;width:60px;height:60px}.hair_bangs_2_snowy{background-image:url(spritesmith0.png);background-position:-1001px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_snowy{background-image:url(spritesmith0.png);background-position:-1026px -1722px;width:60px;height:60px}.hair_bangs_2_white{background-image:url(spritesmith0.png);background-position:-1092px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_white{background-image:url(spritesmith0.png);background-position:-1117px -1722px;width:60px;height:60px}.hair_bangs_2_winternight{background-image:url(spritesmith0.png);background-position:-1183px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_winternight{background-image:url(spritesmith0.png);background-position:-1208px -1722px;width:60px;height:60px}.hair_bangs_2_winterstar{background-image:url(spritesmith0.png);background-position:-1274px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_winterstar{background-image:url(spritesmith0.png);background-position:-1299px -1722px;width:60px;height:60px}.hair_bangs_2_yellow{background-image:url(spritesmith0.png);background-position:-1365px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_yellow{background-image:url(spritesmith0.png);background-position:-1390px -1722px;width:60px;height:60px}.hair_bangs_2_zombie{background-image:url(spritesmith0.png);background-position:-1456px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_zombie{background-image:url(spritesmith0.png);background-position:-1481px -1722px;width:60px;height:60px}.hair_bangs_3_TRUred{background-image:url(spritesmith0.png);background-position:-1547px -1707px;width:90px;height:90px}.customize-option.hair_bangs_3_TRUred{background-image:url(spritesmith0.png);background-position:-1572px -1722px;width:60px;height:60px}.hair_bangs_3_aurora{background-image:url(spritesmith0.png);background-position:-1638px -1707px;width:90px;height:90px}.customize-option.hair_bangs_3_aurora{background-image:url(spritesmith0.png);background-position:-1663px -1722px;width:60px;height:60px}.hair_bangs_3_black{background-image:url(spritesmith0.png);background-position:-1808px 0;width:90px;height:90px}.customize-option.hair_bangs_3_black{background-image:url(spritesmith0.png);background-position:-1833px -15px;width:60px;height:60px}.hair_bangs_3_blond{background-image:url(spritesmith0.png);background-position:-1808px -91px;width:90px;height:90px}.customize-option.hair_bangs_3_blond{background-image:url(spritesmith0.png);background-position:-1833px -106px;width:60px;height:60px}.hair_bangs_3_blue{background-image:url(spritesmith0.png);background-position:-1808px -182px;width:90px;height:90px}.customize-option.hair_bangs_3_blue{background-image:url(spritesmith0.png);background-position:-1833px -197px;width:60px;height:60px}.hair_bangs_3_brown{background-image:url(spritesmith0.png);background-position:-1808px -273px;width:90px;height:90px}.customize-option.hair_bangs_3_brown{background-image:url(spritesmith0.png);background-position:-1833px -288px;width:60px;height:60px}.hair_bangs_3_candycane{background-image:url(spritesmith0.png);background-position:-1808px -364px;width:90px;height:90px}.customize-option.hair_bangs_3_candycane{background-image:url(spritesmith0.png);background-position:-1833px -379px;width:60px;height:60px}.hair_bangs_3_candycorn{background-image:url(spritesmith0.png);background-position:-1808px -455px;width:90px;height:90px}.customize-option.hair_bangs_3_candycorn{background-image:url(spritesmith0.png);background-position:-1833px -470px;width:60px;height:60px}.hair_bangs_3_festive{background-image:url(spritesmith0.png);background-position:-1808px -546px;width:90px;height:90px}.customize-option.hair_bangs_3_festive{background-image:url(spritesmith0.png);background-position:-1833px -561px;width:60px;height:60px}.hair_bangs_3_frost{background-image:url(spritesmith0.png);background-position:-1808px -637px;width:90px;height:90px}.customize-option.hair_bangs_3_frost{background-image:url(spritesmith0.png);background-position:-1833px -652px;width:60px;height:60px}.hair_bangs_3_ghostwhite{background-image:url(spritesmith0.png);background-position:-1808px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_ghostwhite{background-image:url(spritesmith0.png);background-position:-1833px -743px;width:60px;height:60px}.hair_bangs_3_green{background-image:url(spritesmith0.png);background-position:-1808px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_green{background-image:url(spritesmith0.png);background-position:-1833px -834px;width:60px;height:60px}.hair_bangs_3_halloween{background-image:url(spritesmith0.png);background-position:-1808px -910px;width:90px;height:90px}.customize-option.hair_bangs_3_halloween{background-image:url(spritesmith0.png);background-position:-1833px -925px;width:60px;height:60px}.hair_bangs_3_holly{background-image:url(spritesmith0.png);background-position:-1808px -1001px;width:90px;height:90px}.customize-option.hair_bangs_3_holly{background-image:url(spritesmith0.png);background-position:-1833px -1016px;width:60px;height:60px}.hair_bangs_3_hollygreen{background-image:url(spritesmith0.png);background-position:-1808px -1092px;width:90px;height:90px}.customize-option.hair_bangs_3_hollygreen{background-image:url(spritesmith0.png);background-position:-1833px -1107px;width:60px;height:60px}.hair_bangs_3_midnight{background-image:url(spritesmith0.png);background-position:-1808px -1183px;width:90px;height:90px}.customize-option.hair_bangs_3_midnight{background-image:url(spritesmith0.png);background-position:-1833px -1198px;width:60px;height:60px}.hair_bangs_3_pblue{background-image:url(spritesmith0.png);background-position:-1808px -1274px;width:90px;height:90px}.customize-option.hair_bangs_3_pblue{background-image:url(spritesmith0.png);background-position:-1833px -1289px;width:60px;height:60px}.hair_bangs_3_pblue2{background-image:url(spritesmith0.png);background-position:-1808px -1365px;width:90px;height:90px}.customize-option.hair_bangs_3_pblue2{background-image:url(spritesmith0.png);background-position:-1833px -1380px;width:60px;height:60px}.hair_bangs_3_peppermint{background-image:url(spritesmith0.png);background-position:-1808px -1456px;width:90px;height:90px}.customize-option.hair_bangs_3_peppermint{background-image:url(spritesmith0.png);background-position:-1833px -1471px;width:60px;height:60px}.hair_bangs_3_pgreen{background-image:url(spritesmith0.png);background-position:-1808px -1547px;width:90px;height:90px}.customize-option.hair_bangs_3_pgreen{background-image:url(spritesmith0.png);background-position:-1833px -1562px;width:60px;height:60px}.hair_bangs_3_pgreen2{background-image:url(spritesmith0.png);background-position:-1808px -1638px;width:90px;height:90px}.customize-option.hair_bangs_3_pgreen2{background-image:url(spritesmith0.png);background-position:-1833px -1653px;width:60px;height:60px}.hair_bangs_3_porange{background-image:url(spritesmith0.png);background-position:-1444px -273px;width:90px;height:90px}.customize-option.hair_bangs_3_porange{background-image:url(spritesmith0.png);background-position:-1469px -288px;width:60px;height:60px}.hair_bangs_3_porange2{background-image:url(spritesmith0.png);background-position:-989px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_porange2{background-image:url(spritesmith0.png);background-position:-1014px -743px;width:60px;height:60px}.hair_bangs_3_ppink{background-image:url(spritesmith0.png);background-position:-989px -637px;width:90px;height:90px}.customize-option.hair_bangs_3_ppink{background-image:url(spritesmith0.png);background-position:-1014px -652px;width:60px;height:60px}.hair_bangs_3_ppink2{background-image:url(spritesmith0.png);background-position:-989px -546px;width:90px;height:90px}.customize-option.hair_bangs_3_ppink2{background-image:url(spritesmith0.png);background-position:-1014px -561px;width:60px;height:60px}.hair_bangs_3_ppurple{background-image:url(spritesmith0.png);background-position:-989px -455px;width:90px;height:90px}.customize-option.hair_bangs_3_ppurple{background-image:url(spritesmith0.png);background-position:-1014px -470px;width:60px;height:60px}.hair_bangs_3_ppurple2{background-image:url(spritesmith0.png);background-position:-989px -364px;width:90px;height:90px}.customize-option.hair_bangs_3_ppurple2{background-image:url(spritesmith0.png);background-position:-1014px -379px;width:60px;height:60px}.hair_bangs_3_pumpkin{background-image:url(spritesmith0.png);background-position:-989px -273px;width:90px;height:90px}.customize-option.hair_bangs_3_pumpkin{background-image:url(spritesmith0.png);background-position:-1014px -288px;width:60px;height:60px}.hair_bangs_3_purple{background-image:url(spritesmith0.png);background-position:-989px -182px;width:90px;height:90px}.customize-option.hair_bangs_3_purple{background-image:url(spritesmith0.png);background-position:-1014px -197px;width:60px;height:60px}.hair_bangs_3_pyellow{background-image:url(spritesmith0.png);background-position:-989px -91px;width:90px;height:90px}.customize-option.hair_bangs_3_pyellow{background-image:url(spritesmith0.png);background-position:-1014px -106px;width:60px;height:60px}.hair_bangs_3_pyellow2{background-image:url(spritesmith0.png);background-position:-989px 0;width:90px;height:90px}.customize-option.hair_bangs_3_pyellow2{background-image:url(spritesmith0.png);background-position:-1014px -15px;width:60px;height:60px}.hair_bangs_3_rainbow{background-image:url(spritesmith0.png);background-position:-819px -888px;width:90px;height:90px}.customize-option.hair_bangs_3_rainbow{background-image:url(spritesmith0.png);background-position:-844px -903px;width:60px;height:60px}.hair_bangs_3_red{background-image:url(spritesmith0.png);background-position:-728px -888px;width:90px;height:90px}.customize-option.hair_bangs_3_red{background-image:url(spritesmith0.png);background-position:-753px -903px;width:60px;height:60px}.hair_bangs_3_snowy{background-image:url(spritesmith0.png);background-position:-637px -888px;width:90px;height:90px}.customize-option.hair_bangs_3_snowy{background-image:url(spritesmith0.png);background-position:-662px -903px;width:60px;height:60px}.hair_bangs_3_white{background-image:url(spritesmith0.png);background-position:-546px -888px;width:90px;height:90px}.customize-option.hair_bangs_3_white{background-image:url(spritesmith0.png);background-position:-571px -903px;width:60px;height:60px}.hair_bangs_3_winternight{background-image:url(spritesmith0.png);background-position:-455px -888px;width:90px;height:90px}.customize-option.hair_bangs_3_winternight{background-image:url(spritesmith0.png);background-position:-480px -903px;width:60px;height:60px}.hair_bangs_3_winterstar{background-image:url(spritesmith0.png);background-position:-364px -888px;width:90px;height:90px}.customize-option.hair_bangs_3_winterstar{background-image:url(spritesmith0.png);background-position:-389px -903px;width:60px;height:60px}.hair_bangs_3_yellow{background-image:url(spritesmith0.png);background-position:-273px -888px;width:90px;height:90px}.customize-option.hair_bangs_3_yellow{background-image:url(spritesmith0.png);background-position:-298px -903px;width:60px;height:60px}.hair_bangs_3_zombie{background-image:url(spritesmith0.png);background-position:-182px -888px;width:90px;height:90px}.customize-option.hair_bangs_3_zombie{background-image:url(spritesmith0.png);background-position:-207px -903px;width:60px;height:60px}.hair_base_10_TRUred{background-image:url(spritesmith0.png);background-position:-91px -888px;width:90px;height:90px}.customize-option.hair_base_10_TRUred{background-image:url(spritesmith0.png);background-position:-116px -903px;width:60px;height:60px}.hair_base_10_aurora{background-image:url(spritesmith0.png);background-position:0 -888px;width:90px;height:90px}.customize-option.hair_base_10_aurora{background-image:url(spritesmith0.png);background-position:-25px -903px;width:60px;height:60px}.hair_base_10_black{background-image:url(spritesmith0.png);background-position:-830px -740px;width:90px;height:90px}.customize-option.hair_base_10_black{background-image:url(spritesmith0.png);background-position:-855px -755px;width:60px;height:60px}.hair_base_10_blond{background-image:url(spritesmith0.png);background-position:-739px -740px;width:90px;height:90px}.customize-option.hair_base_10_blond{background-image:url(spritesmith0.png);background-position:-764px -755px;width:60px;height:60px}.hair_base_10_blue{background-image:url(spritesmith0.png);background-position:-648px -740px;width:90px;height:90px}.customize-option.hair_base_10_blue{background-image:url(spritesmith0.png);background-position:-673px -755px;width:60px;height:60px}.hair_base_10_brown{background-image:url(spritesmith0.png);background-position:-557px -740px;width:90px;height:90px}.customize-option.hair_base_10_brown{background-image:url(spritesmith0.png);background-position:-582px -755px;width:60px;height:60px}.hair_base_10_candycane{background-image:url(spritesmith0.png);background-position:-466px -740px;width:90px;height:90px}.customize-option.hair_base_10_candycane{background-image:url(spritesmith0.png);background-position:-491px -755px;width:60px;height:60px}.hair_base_10_candycorn{background-image:url(spritesmith0.png);background-position:-375px -740px;width:90px;height:90px}.customize-option.hair_base_10_candycorn{background-image:url(spritesmith0.png);background-position:-400px -755px;width:60px;height:60px}.hair_base_10_festive{background-image:url(spritesmith0.png);background-position:-284px -740px;width:90px;height:90px}.customize-option.hair_base_10_festive{background-image:url(spritesmith0.png);background-position:-309px -755px;width:60px;height:60px}.hair_base_10_frost{background-image:url(spritesmith0.png);background-position:-848px -603px;width:90px;height:90px}.customize-option.hair_base_10_frost{background-image:url(spritesmith0.png);background-position:-873px -618px;width:60px;height:60px}.hair_base_10_ghostwhite{background-image:url(spritesmith0.png);background-position:-848px -512px;width:90px;height:90px}.customize-option.hair_base_10_ghostwhite{background-image:url(spritesmith0.png);background-position:-873px -527px;width:60px;height:60px}.hair_base_10_green{background-image:url(spritesmith0.png);background-position:-848px -421px;width:90px;height:90px}.customize-option.hair_base_10_green{background-image:url(spritesmith0.png);background-position:-873px -436px;width:60px;height:60px}.hair_base_10_halloween{background-image:url(spritesmith0.png);background-position:-848px -330px;width:90px;height:90px}.customize-option.hair_base_10_halloween{background-image:url(spritesmith0.png);background-position:-873px -345px;width:60px;height:60px}.hair_base_10_holly{background-image:url(spritesmith0.png);background-position:-848px -239px;width:90px;height:90px}.customize-option.hair_base_10_holly{background-image:url(spritesmith0.png);background-position:-873px -254px;width:60px;height:60px}.hair_base_10_hollygreen{background-image:url(spritesmith0.png);background-position:-989px -819px;width:90px;height:90px}.customize-option.hair_base_10_hollygreen{background-image:url(spritesmith0.png);background-position:-1014px -834px;width:60px;height:60px}.hair_base_10_midnight{background-image:url(spritesmith1.png);background-position:-91px 0;width:90px;height:90px}.customize-option.hair_base_10_midnight{background-image:url(spritesmith1.png);background-position:-116px -15px;width:60px;height:60px}.hair_base_10_pblue{background-image:url(spritesmith1.png);background-position:-182px -1183px;width:90px;height:90px}.customize-option.hair_base_10_pblue{background-image:url(spritesmith1.png);background-position:-207px -1198px;width:60px;height:60px}.hair_base_10_pblue2{background-image:url(spritesmith1.png);background-position:0 -91px;width:90px;height:90px}.customize-option.hair_base_10_pblue2{background-image:url(spritesmith1.png);background-position:-25px -106px;width:60px;height:60px}.hair_base_10_peppermint{background-image:url(spritesmith1.png);background-position:-91px -91px;width:90px;height:90px}.customize-option.hair_base_10_peppermint{background-image:url(spritesmith1.png);background-position:-116px -106px;width:60px;height:60px}.hair_base_10_pgreen{background-image:url(spritesmith1.png);background-position:-182px 0;width:90px;height:90px}.customize-option.hair_base_10_pgreen{background-image:url(spritesmith1.png);background-position:-207px -15px;width:60px;height:60px}.hair_base_10_pgreen2{background-image:url(spritesmith1.png);background-position:-182px -91px;width:90px;height:90px}.customize-option.hair_base_10_pgreen2{background-image:url(spritesmith1.png);background-position:-207px -106px;width:60px;height:60px}.hair_base_10_porange{background-image:url(spritesmith1.png);background-position:0 -182px;width:90px;height:90px}.customize-option.hair_base_10_porange{background-image:url(spritesmith1.png);background-position:-25px -197px;width:60px;height:60px}.hair_base_10_porange2{background-image:url(spritesmith1.png);background-position:-91px -182px;width:90px;height:90px}.customize-option.hair_base_10_porange2{background-image:url(spritesmith1.png);background-position:-116px -197px;width:60px;height:60px}.hair_base_10_ppink{background-image:url(spritesmith1.png);background-position:-182px -182px;width:90px;height:90px}.customize-option.hair_base_10_ppink{background-image:url(spritesmith1.png);background-position:-207px -197px;width:60px;height:60px}.hair_base_10_ppink2{background-image:url(spritesmith1.png);background-position:-273px 0;width:90px;height:90px}.customize-option.hair_base_10_ppink2{background-image:url(spritesmith1.png);background-position:-298px -15px;width:60px;height:60px}.hair_base_10_ppurple{background-image:url(spritesmith1.png);background-position:-273px -91px;width:90px;height:90px}.customize-option.hair_base_10_ppurple{background-image:url(spritesmith1.png);background-position:-298px -106px;width:60px;height:60px}.hair_base_10_ppurple2{background-image:url(spritesmith1.png);background-position:-273px -182px;width:90px;height:90px}.customize-option.hair_base_10_ppurple2{background-image:url(spritesmith1.png);background-position:-298px -197px;width:60px;height:60px}.hair_base_10_pumpkin{background-image:url(spritesmith1.png);background-position:0 -273px;width:90px;height:90px}.customize-option.hair_base_10_pumpkin{background-image:url(spritesmith1.png);background-position:-25px -288px;width:60px;height:60px}.hair_base_10_purple{background-image:url(spritesmith1.png);background-position:-91px -273px;width:90px;height:90px}.customize-option.hair_base_10_purple{background-image:url(spritesmith1.png);background-position:-116px -288px;width:60px;height:60px}.hair_base_10_pyellow{background-image:url(spritesmith1.png);background-position:-182px -273px;width:90px;height:90px}.customize-option.hair_base_10_pyellow{background-image:url(spritesmith1.png);background-position:-207px -288px;width:60px;height:60px}.hair_base_10_pyellow2{background-image:url(spritesmith1.png);background-position:-273px -273px;width:90px;height:90px}.customize-option.hair_base_10_pyellow2{background-image:url(spritesmith1.png);background-position:-298px -288px;width:60px;height:60px}.hair_base_10_rainbow{background-image:url(spritesmith1.png);background-position:-364px 0;width:90px;height:90px}.customize-option.hair_base_10_rainbow{background-image:url(spritesmith1.png);background-position:-389px -15px;width:60px;height:60px}.hair_base_10_red{background-image:url(spritesmith1.png);background-position:-364px -91px;width:90px;height:90px}.customize-option.hair_base_10_red{background-image:url(spritesmith1.png);background-position:-389px -106px;width:60px;height:60px}.hair_base_10_snowy{background-image:url(spritesmith1.png);background-position:-364px -182px;width:90px;height:90px}.customize-option.hair_base_10_snowy{background-image:url(spritesmith1.png);background-position:-389px -197px;width:60px;height:60px}.hair_base_10_white{background-image:url(spritesmith1.png);background-position:-364px -273px;width:90px;height:90px}.customize-option.hair_base_10_white{background-image:url(spritesmith1.png);background-position:-389px -288px;width:60px;height:60px}.hair_base_10_winternight{background-image:url(spritesmith1.png);background-position:0 -364px;width:90px;height:90px}.customize-option.hair_base_10_winternight{background-image:url(spritesmith1.png);background-position:-25px -379px;width:60px;height:60px}.hair_base_10_winterstar{background-image:url(spritesmith1.png);background-position:-91px -364px;width:90px;height:90px}.customize-option.hair_base_10_winterstar{background-image:url(spritesmith1.png);background-position:-116px -379px;width:60px;height:60px}.hair_base_10_yellow{background-image:url(spritesmith1.png);background-position:-182px -364px;width:90px;height:90px}.customize-option.hair_base_10_yellow{background-image:url(spritesmith1.png);background-position:-207px -379px;width:60px;height:60px}.hair_base_10_zombie{background-image:url(spritesmith1.png);background-position:-273px -364px;width:90px;height:90px}.customize-option.hair_base_10_zombie{background-image:url(spritesmith1.png);background-position:-298px -379px;width:60px;height:60px}.hair_base_11_TRUred{background-image:url(spritesmith1.png);background-position:-364px -364px;width:90px;height:90px}.customize-option.hair_base_11_TRUred{background-image:url(spritesmith1.png);background-position:-389px -379px;width:60px;height:60px}.hair_base_11_aurora{background-image:url(spritesmith1.png);background-position:-455px 0;width:90px;height:90px}.customize-option.hair_base_11_aurora{background-image:url(spritesmith1.png);background-position:-480px -15px;width:60px;height:60px}.hair_base_11_black{background-image:url(spritesmith1.png);background-position:-455px -91px;width:90px;height:90px}.customize-option.hair_base_11_black{background-image:url(spritesmith1.png);background-position:-480px -106px;width:60px;height:60px}.hair_base_11_blond{background-image:url(spritesmith1.png);background-position:-455px -182px;width:90px;height:90px}.customize-option.hair_base_11_blond{background-image:url(spritesmith1.png);background-position:-480px -197px;width:60px;height:60px}.hair_base_11_blue{background-image:url(spritesmith1.png);background-position:-455px -273px;width:90px;height:90px}.customize-option.hair_base_11_blue{background-image:url(spritesmith1.png);background-position:-480px -288px;width:60px;height:60px}.hair_base_11_brown{background-image:url(spritesmith1.png);background-position:-455px -364px;width:90px;height:90px}.customize-option.hair_base_11_brown{background-image:url(spritesmith1.png);background-position:-480px -379px;width:60px;height:60px}.hair_base_11_candycane{background-image:url(spritesmith1.png);background-position:0 -455px;width:90px;height:90px}.customize-option.hair_base_11_candycane{background-image:url(spritesmith1.png);background-position:-25px -470px;width:60px;height:60px}.hair_base_11_candycorn{background-image:url(spritesmith1.png);background-position:-91px -455px;width:90px;height:90px}.customize-option.hair_base_11_candycorn{background-image:url(spritesmith1.png);background-position:-116px -470px;width:60px;height:60px}.hair_base_11_festive{background-image:url(spritesmith1.png);background-position:-182px -455px;width:90px;height:90px}.customize-option.hair_base_11_festive{background-image:url(spritesmith1.png);background-position:-207px -470px;width:60px;height:60px}.hair_base_11_frost{background-image:url(spritesmith1.png);background-position:-273px -455px;width:90px;height:90px}.customize-option.hair_base_11_frost{background-image:url(spritesmith1.png);background-position:-298px -470px;width:60px;height:60px}.hair_base_11_ghostwhite{background-image:url(spritesmith1.png);background-position:-364px -455px;width:90px;height:90px}.customize-option.hair_base_11_ghostwhite{background-image:url(spritesmith1.png);background-position:-389px -470px;width:60px;height:60px}.hair_base_11_green{background-image:url(spritesmith1.png);background-position:-455px -455px;width:90px;height:90px}.customize-option.hair_base_11_green{background-image:url(spritesmith1.png);background-position:-480px -470px;width:60px;height:60px}.hair_base_11_halloween{background-image:url(spritesmith1.png);background-position:-546px 0;width:90px;height:90px}.customize-option.hair_base_11_halloween{background-image:url(spritesmith1.png);background-position:-571px -15px;width:60px;height:60px}.hair_base_11_holly{background-image:url(spritesmith1.png);background-position:-546px -91px;width:90px;height:90px}.customize-option.hair_base_11_holly{background-image:url(spritesmith1.png);background-position:-571px -106px;width:60px;height:60px}.hair_base_11_hollygreen{background-image:url(spritesmith1.png);background-position:-546px -182px;width:90px;height:90px}.customize-option.hair_base_11_hollygreen{background-image:url(spritesmith1.png);background-position:-571px -197px;width:60px;height:60px}.hair_base_11_midnight{background-image:url(spritesmith1.png);background-position:-546px -273px;width:90px;height:90px}.customize-option.hair_base_11_midnight{background-image:url(spritesmith1.png);background-position:-571px -288px;width:60px;height:60px}.hair_base_11_pblue{background-image:url(spritesmith1.png);background-position:-546px -364px;width:90px;height:90px}.customize-option.hair_base_11_pblue{background-image:url(spritesmith1.png);background-position:-571px -379px;width:60px;height:60px}.hair_base_11_pblue2{background-image:url(spritesmith1.png);background-position:-546px -455px;width:90px;height:90px}.customize-option.hair_base_11_pblue2{background-image:url(spritesmith1.png);background-position:-571px -470px;width:60px;height:60px}.hair_base_11_peppermint{background-image:url(spritesmith1.png);background-position:0 -546px;width:90px;height:90px}.customize-option.hair_base_11_peppermint{background-image:url(spritesmith1.png);background-position:-25px -561px;width:60px;height:60px}.hair_base_11_pgreen{background-image:url(spritesmith1.png);background-position:-91px -546px;width:90px;height:90px}.customize-option.hair_base_11_pgreen{background-image:url(spritesmith1.png);background-position:-116px -561px;width:60px;height:60px}.hair_base_11_pgreen2{background-image:url(spritesmith1.png);background-position:-182px -546px;width:90px;height:90px}.customize-option.hair_base_11_pgreen2{background-image:url(spritesmith1.png);background-position:-207px -561px;width:60px;height:60px}.hair_base_11_porange{background-image:url(spritesmith1.png);background-position:-273px -546px;width:90px;height:90px}.customize-option.hair_base_11_porange{background-image:url(spritesmith1.png);background-position:-298px -561px;width:60px;height:60px}.hair_base_11_porange2{background-image:url(spritesmith1.png);background-position:-364px -546px;width:90px;height:90px}.customize-option.hair_base_11_porange2{background-image:url(spritesmith1.png);background-position:-389px -561px;width:60px;height:60px}.hair_base_11_ppink{background-image:url(spritesmith1.png);background-position:-455px -546px;width:90px;height:90px}.customize-option.hair_base_11_ppink{background-image:url(spritesmith1.png);background-position:-480px -561px;width:60px;height:60px}.hair_base_11_ppink2{background-image:url(spritesmith1.png);background-position:-546px -546px;width:90px;height:90px}.customize-option.hair_base_11_ppink2{background-image:url(spritesmith1.png);background-position:-571px -561px;width:60px;height:60px}.hair_base_11_ppurple{background-image:url(spritesmith1.png);background-position:-637px 0;width:90px;height:90px}.customize-option.hair_base_11_ppurple{background-image:url(spritesmith1.png);background-position:-662px -15px;width:60px;height:60px}.hair_base_11_ppurple2{background-image:url(spritesmith1.png);background-position:-637px -91px;width:90px;height:90px}.customize-option.hair_base_11_ppurple2{background-image:url(spritesmith1.png);background-position:-662px -106px;width:60px;height:60px}.hair_base_11_pumpkin{background-image:url(spritesmith1.png);background-position:-637px -182px;width:90px;height:90px}.customize-option.hair_base_11_pumpkin{background-image:url(spritesmith1.png);background-position:-662px -197px;width:60px;height:60px}.hair_base_11_purple{background-image:url(spritesmith1.png);background-position:-637px -273px;width:90px;height:90px}.customize-option.hair_base_11_purple{background-image:url(spritesmith1.png);background-position:-662px -288px;width:60px;height:60px}.hair_base_11_pyellow{background-image:url(spritesmith1.png);background-position:-637px -364px;width:90px;height:90px}.customize-option.hair_base_11_pyellow{background-image:url(spritesmith1.png);background-position:-662px -379px;width:60px;height:60px}.hair_base_11_pyellow2{background-image:url(spritesmith1.png);background-position:-637px -455px;width:90px;height:90px}.customize-option.hair_base_11_pyellow2{background-image:url(spritesmith1.png);background-position:-662px -470px;width:60px;height:60px}.hair_base_11_rainbow{background-image:url(spritesmith1.png);background-position:-637px -546px;width:90px;height:90px}.customize-option.hair_base_11_rainbow{background-image:url(spritesmith1.png);background-position:-662px -561px;width:60px;height:60px}.hair_base_11_red{background-image:url(spritesmith1.png);background-position:0 -637px;width:90px;height:90px}.customize-option.hair_base_11_red{background-image:url(spritesmith1.png);background-position:-25px -652px;width:60px;height:60px}.hair_base_11_snowy{background-image:url(spritesmith1.png);background-position:-91px -637px;width:90px;height:90px}.customize-option.hair_base_11_snowy{background-image:url(spritesmith1.png);background-position:-116px -652px;width:60px;height:60px}.hair_base_11_white{background-image:url(spritesmith1.png);background-position:-182px -637px;width:90px;height:90px}.customize-option.hair_base_11_white{background-image:url(spritesmith1.png);background-position:-207px -652px;width:60px;height:60px}.hair_base_11_winternight{background-image:url(spritesmith1.png);background-position:-273px -637px;width:90px;height:90px}.customize-option.hair_base_11_winternight{background-image:url(spritesmith1.png);background-position:-298px -652px;width:60px;height:60px}.hair_base_11_winterstar{background-image:url(spritesmith1.png);background-position:-364px -637px;width:90px;height:90px}.customize-option.hair_base_11_winterstar{background-image:url(spritesmith1.png);background-position:-389px -652px;width:60px;height:60px}.hair_base_11_yellow{background-image:url(spritesmith1.png);background-position:-455px -637px;width:90px;height:90px}.customize-option.hair_base_11_yellow{background-image:url(spritesmith1.png);background-position:-480px -652px;width:60px;height:60px}.hair_base_11_zombie{background-image:url(spritesmith1.png);background-position:-546px -637px;width:90px;height:90px}.customize-option.hair_base_11_zombie{background-image:url(spritesmith1.png);background-position:-571px -652px;width:60px;height:60px}.hair_base_12_TRUred{background-image:url(spritesmith1.png);background-position:-637px -637px;width:90px;height:90px}.customize-option.hair_base_12_TRUred{background-image:url(spritesmith1.png);background-position:-662px -652px;width:60px;height:60px}.hair_base_12_aurora{background-image:url(spritesmith1.png);background-position:-728px 0;width:90px;height:90px}.customize-option.hair_base_12_aurora{background-image:url(spritesmith1.png);background-position:-753px -15px;width:60px;height:60px}.hair_base_12_black{background-image:url(spritesmith1.png);background-position:-728px -91px;width:90px;height:90px}.customize-option.hair_base_12_black{background-image:url(spritesmith1.png);background-position:-753px -106px;width:60px;height:60px}.hair_base_12_blond{background-image:url(spritesmith1.png);background-position:-728px -182px;width:90px;height:90px}.customize-option.hair_base_12_blond{background-image:url(spritesmith1.png);background-position:-753px -197px;width:60px;height:60px}.hair_base_12_blue{background-image:url(spritesmith1.png);background-position:-728px -273px;width:90px;height:90px}.customize-option.hair_base_12_blue{background-image:url(spritesmith1.png);background-position:-753px -288px;width:60px;height:60px}.hair_base_12_brown{background-image:url(spritesmith1.png);background-position:-728px -364px;width:90px;height:90px}.customize-option.hair_base_12_brown{background-image:url(spritesmith1.png);background-position:-753px -379px;width:60px;height:60px}.hair_base_12_candycane{background-image:url(spritesmith1.png);background-position:-728px -455px;width:90px;height:90px}.customize-option.hair_base_12_candycane{background-image:url(spritesmith1.png);background-position:-753px -470px;width:60px;height:60px}.hair_base_12_candycorn{background-image:url(spritesmith1.png);background-position:-728px -546px;width:90px;height:90px}.customize-option.hair_base_12_candycorn{background-image:url(spritesmith1.png);background-position:-753px -561px;width:60px;height:60px}.hair_base_12_festive{background-image:url(spritesmith1.png);background-position:-728px -637px;width:90px;height:90px}.customize-option.hair_base_12_festive{background-image:url(spritesmith1.png);background-position:-753px -652px;width:60px;height:60px}.hair_base_12_frost{background-image:url(spritesmith1.png);background-position:0 -728px;width:90px;height:90px}.customize-option.hair_base_12_frost{background-image:url(spritesmith1.png);background-position:-25px -743px;width:60px;height:60px}.hair_base_12_ghostwhite{background-image:url(spritesmith1.png);background-position:-91px -728px;width:90px;height:90px}.customize-option.hair_base_12_ghostwhite{background-image:url(spritesmith1.png);background-position:-116px -743px;width:60px;height:60px}.hair_base_12_green{background-image:url(spritesmith1.png);background-position:-182px -728px;width:90px;height:90px}.customize-option.hair_base_12_green{background-image:url(spritesmith1.png);background-position:-207px -743px;width:60px;height:60px}.hair_base_12_halloween{background-image:url(spritesmith1.png);background-position:-273px -728px;width:90px;height:90px}.customize-option.hair_base_12_halloween{background-image:url(spritesmith1.png);background-position:-298px -743px;width:60px;height:60px}.hair_base_12_holly{background-image:url(spritesmith1.png);background-position:-364px -728px;width:90px;height:90px}.customize-option.hair_base_12_holly{background-image:url(spritesmith1.png);background-position:-389px -743px;width:60px;height:60px}.hair_base_12_hollygreen{background-image:url(spritesmith1.png);background-position:-455px -728px;width:90px;height:90px}.customize-option.hair_base_12_hollygreen{background-image:url(spritesmith1.png);background-position:-480px -743px;width:60px;height:60px}.hair_base_12_midnight{background-image:url(spritesmith1.png);background-position:-546px -728px;width:90px;height:90px}.customize-option.hair_base_12_midnight{background-image:url(spritesmith1.png);background-position:-571px -743px;width:60px;height:60px}.hair_base_12_pblue{background-image:url(spritesmith1.png);background-position:-637px -728px;width:90px;height:90px}.customize-option.hair_base_12_pblue{background-image:url(spritesmith1.png);background-position:-662px -743px;width:60px;height:60px}.hair_base_12_pblue2{background-image:url(spritesmith1.png);background-position:-728px -728px;width:90px;height:90px}.customize-option.hair_base_12_pblue2{background-image:url(spritesmith1.png);background-position:-753px -743px;width:60px;height:60px}.hair_base_12_peppermint{background-image:url(spritesmith1.png);background-position:-819px 0;width:90px;height:90px}.customize-option.hair_base_12_peppermint{background-image:url(spritesmith1.png);background-position:-844px -15px;width:60px;height:60px}.hair_base_12_pgreen{background-image:url(spritesmith1.png);background-position:-819px -91px;width:90px;height:90px}.customize-option.hair_base_12_pgreen{background-image:url(spritesmith1.png);background-position:-844px -106px;width:60px;height:60px}.hair_base_12_pgreen2{background-image:url(spritesmith1.png);background-position:-819px -182px;width:90px;height:90px}.customize-option.hair_base_12_pgreen2{background-image:url(spritesmith1.png);background-position:-844px -197px;width:60px;height:60px}.hair_base_12_porange{background-image:url(spritesmith1.png);background-position:-819px -273px;width:90px;height:90px}.customize-option.hair_base_12_porange{background-image:url(spritesmith1.png);background-position:-844px -288px;width:60px;height:60px}.hair_base_12_porange2{background-image:url(spritesmith1.png);background-position:-819px -364px;width:90px;height:90px}.customize-option.hair_base_12_porange2{background-image:url(spritesmith1.png);background-position:-844px -379px;width:60px;height:60px}.hair_base_12_ppink{background-image:url(spritesmith1.png);background-position:-819px -455px;width:90px;height:90px}.customize-option.hair_base_12_ppink{background-image:url(spritesmith1.png);background-position:-844px -470px;width:60px;height:60px}.hair_base_12_ppink2{background-image:url(spritesmith1.png);background-position:-819px -546px;width:90px;height:90px}.customize-option.hair_base_12_ppink2{background-image:url(spritesmith1.png);background-position:-844px -561px;width:60px;height:60px}.hair_base_12_ppurple{background-image:url(spritesmith1.png);background-position:-819px -637px;width:90px;height:90px}.customize-option.hair_base_12_ppurple{background-image:url(spritesmith1.png);background-position:-844px -652px;width:60px;height:60px}.hair_base_12_ppurple2{background-image:url(spritesmith1.png);background-position:-819px -728px;width:90px;height:90px}.customize-option.hair_base_12_ppurple2{background-image:url(spritesmith1.png);background-position:-844px -743px;width:60px;height:60px}.hair_base_12_pumpkin{background-image:url(spritesmith1.png);background-position:0 -819px;width:90px;height:90px}.customize-option.hair_base_12_pumpkin{background-image:url(spritesmith1.png);background-position:-25px -834px;width:60px;height:60px}.hair_base_12_purple{background-image:url(spritesmith1.png);background-position:-91px -819px;width:90px;height:90px}.customize-option.hair_base_12_purple{background-image:url(spritesmith1.png);background-position:-116px -834px;width:60px;height:60px}.hair_base_12_pyellow{background-image:url(spritesmith1.png);background-position:-182px -819px;width:90px;height:90px}.customize-option.hair_base_12_pyellow{background-image:url(spritesmith1.png);background-position:-207px -834px;width:60px;height:60px}.hair_base_12_pyellow2{background-image:url(spritesmith1.png);background-position:-273px -819px;width:90px;height:90px}.customize-option.hair_base_12_pyellow2{background-image:url(spritesmith1.png);background-position:-298px -834px;width:60px;height:60px}.hair_base_12_rainbow{background-image:url(spritesmith1.png);background-position:-364px -819px;width:90px;height:90px}.customize-option.hair_base_12_rainbow{background-image:url(spritesmith1.png);background-position:-389px -834px;width:60px;height:60px}.hair_base_12_red{background-image:url(spritesmith1.png);background-position:-455px -819px;width:90px;height:90px}.customize-option.hair_base_12_red{background-image:url(spritesmith1.png);background-position:-480px -834px;width:60px;height:60px}.hair_base_12_snowy{background-image:url(spritesmith1.png);background-position:-546px -819px;width:90px;height:90px}.customize-option.hair_base_12_snowy{background-image:url(spritesmith1.png);background-position:-571px -834px;width:60px;height:60px}.hair_base_12_white{background-image:url(spritesmith1.png);background-position:-637px -819px;width:90px;height:90px}.customize-option.hair_base_12_white{background-image:url(spritesmith1.png);background-position:-662px -834px;width:60px;height:60px}.hair_base_12_winternight{background-image:url(spritesmith1.png);background-position:-728px -819px;width:90px;height:90px}.customize-option.hair_base_12_winternight{background-image:url(spritesmith1.png);background-position:-753px -834px;width:60px;height:60px}.hair_base_12_winterstar{background-image:url(spritesmith1.png);background-position:-819px -819px;width:90px;height:90px}.customize-option.hair_base_12_winterstar{background-image:url(spritesmith1.png);background-position:-844px -834px;width:60px;height:60px}.hair_base_12_yellow{background-image:url(spritesmith1.png);background-position:-910px 0;width:90px;height:90px}.customize-option.hair_base_12_yellow{background-image:url(spritesmith1.png);background-position:-935px -15px;width:60px;height:60px}.hair_base_12_zombie{background-image:url(spritesmith1.png);background-position:-910px -91px;width:90px;height:90px}.customize-option.hair_base_12_zombie{background-image:url(spritesmith1.png);background-position:-935px -106px;width:60px;height:60px}.hair_base_13_TRUred{background-image:url(spritesmith1.png);background-position:-910px -182px;width:90px;height:90px}.customize-option.hair_base_13_TRUred{background-image:url(spritesmith1.png);background-position:-935px -197px;width:60px;height:60px}.hair_base_13_aurora{background-image:url(spritesmith1.png);background-position:-910px -273px;width:90px;height:90px}.customize-option.hair_base_13_aurora{background-image:url(spritesmith1.png);background-position:-935px -288px;width:60px;height:60px}.hair_base_13_black{background-image:url(spritesmith1.png);background-position:-910px -364px;width:90px;height:90px}.customize-option.hair_base_13_black{background-image:url(spritesmith1.png);background-position:-935px -379px;width:60px;height:60px}.hair_base_13_blond{background-image:url(spritesmith1.png);background-position:-910px -455px;width:90px;height:90px}.customize-option.hair_base_13_blond{background-image:url(spritesmith1.png);background-position:-935px -470px;width:60px;height:60px}.hair_base_13_blue{background-image:url(spritesmith1.png);background-position:-910px -546px;width:90px;height:90px}.customize-option.hair_base_13_blue{background-image:url(spritesmith1.png);background-position:-935px -561px;width:60px;height:60px}.hair_base_13_brown{background-image:url(spritesmith1.png);background-position:-910px -637px;width:90px;height:90px}.customize-option.hair_base_13_brown{background-image:url(spritesmith1.png);background-position:-935px -652px;width:60px;height:60px}.hair_base_13_candycane{background-image:url(spritesmith1.png);background-position:-910px -728px;width:90px;height:90px}.customize-option.hair_base_13_candycane{background-image:url(spritesmith1.png);background-position:-935px -743px;width:60px;height:60px}.hair_base_13_candycorn{background-image:url(spritesmith1.png);background-position:-910px -819px;width:90px;height:90px}.customize-option.hair_base_13_candycorn{background-image:url(spritesmith1.png);background-position:-935px -834px;width:60px;height:60px}.hair_base_13_festive{background-image:url(spritesmith1.png);background-position:0 -910px;width:90px;height:90px}.customize-option.hair_base_13_festive{background-image:url(spritesmith1.png);background-position:-25px -925px;width:60px;height:60px}.hair_base_13_frost{background-image:url(spritesmith1.png);background-position:-91px -910px;width:90px;height:90px}.customize-option.hair_base_13_frost{background-image:url(spritesmith1.png);background-position:-116px -925px;width:60px;height:60px}.hair_base_13_ghostwhite{background-image:url(spritesmith1.png);background-position:-182px -910px;width:90px;height:90px}.customize-option.hair_base_13_ghostwhite{background-image:url(spritesmith1.png);background-position:-207px -925px;width:60px;height:60px}.hair_base_13_green{background-image:url(spritesmith1.png);background-position:-273px -910px;width:90px;height:90px}.customize-option.hair_base_13_green{background-image:url(spritesmith1.png);background-position:-298px -925px;width:60px;height:60px}.hair_base_13_halloween{background-image:url(spritesmith1.png);background-position:-364px -910px;width:90px;height:90px}.customize-option.hair_base_13_halloween{background-image:url(spritesmith1.png);background-position:-389px -925px;width:60px;height:60px}.hair_base_13_holly{background-image:url(spritesmith1.png);background-position:-455px -910px;width:90px;height:90px}.customize-option.hair_base_13_holly{background-image:url(spritesmith1.png);background-position:-480px -925px;width:60px;height:60px}.hair_base_13_hollygreen{background-image:url(spritesmith1.png);background-position:-546px -910px;width:90px;height:90px}.customize-option.hair_base_13_hollygreen{background-image:url(spritesmith1.png);background-position:-571px -925px;width:60px;height:60px}.hair_base_13_midnight{background-image:url(spritesmith1.png);background-position:-637px -910px;width:90px;height:90px}.customize-option.hair_base_13_midnight{background-image:url(spritesmith1.png);background-position:-662px -925px;width:60px;height:60px}.hair_base_13_pblue{background-image:url(spritesmith1.png);background-position:-728px -910px;width:90px;height:90px}.customize-option.hair_base_13_pblue{background-image:url(spritesmith1.png);background-position:-753px -925px;width:60px;height:60px}.hair_base_13_pblue2{background-image:url(spritesmith1.png);background-position:-819px -910px;width:90px;height:90px}.customize-option.hair_base_13_pblue2{background-image:url(spritesmith1.png);background-position:-844px -925px;width:60px;height:60px}.hair_base_13_peppermint{background-image:url(spritesmith1.png);background-position:-910px -910px;width:90px;height:90px}.customize-option.hair_base_13_peppermint{background-image:url(spritesmith1.png);background-position:-935px -925px;width:60px;height:60px}.hair_base_13_pgreen{background-image:url(spritesmith1.png);background-position:-1001px 0;width:90px;height:90px}.customize-option.hair_base_13_pgreen{background-image:url(spritesmith1.png);background-position:-1026px -15px;width:60px;height:60px}.hair_base_13_pgreen2{background-image:url(spritesmith1.png);background-position:-1001px -91px;width:90px;height:90px}.customize-option.hair_base_13_pgreen2{background-image:url(spritesmith1.png);background-position:-1026px -106px;width:60px;height:60px}.hair_base_13_porange{background-image:url(spritesmith1.png);background-position:-1001px -182px;width:90px;height:90px}.customize-option.hair_base_13_porange{background-image:url(spritesmith1.png);background-position:-1026px -197px;width:60px;height:60px}.hair_base_13_porange2{background-image:url(spritesmith1.png);background-position:-1001px -273px;width:90px;height:90px}.customize-option.hair_base_13_porange2{background-image:url(spritesmith1.png);background-position:-1026px -288px;width:60px;height:60px}.hair_base_13_ppink{background-image:url(spritesmith1.png);background-position:-1001px -364px;width:90px;height:90px}.customize-option.hair_base_13_ppink{background-image:url(spritesmith1.png);background-position:-1026px -379px;width:60px;height:60px}.hair_base_13_ppink2{background-image:url(spritesmith1.png);background-position:-1001px -455px;width:90px;height:90px}.customize-option.hair_base_13_ppink2{background-image:url(spritesmith1.png);background-position:-1026px -470px;width:60px;height:60px}.hair_base_13_ppurple{background-image:url(spritesmith1.png);background-position:-1001px -546px;width:90px;height:90px}.customize-option.hair_base_13_ppurple{background-image:url(spritesmith1.png);background-position:-1026px -561px;width:60px;height:60px}.hair_base_13_ppurple2{background-image:url(spritesmith1.png);background-position:-1001px -637px;width:90px;height:90px}.customize-option.hair_base_13_ppurple2{background-image:url(spritesmith1.png);background-position:-1026px -652px;width:60px;height:60px}.hair_base_13_pumpkin{background-image:url(spritesmith1.png);background-position:-1001px -728px;width:90px;height:90px}.customize-option.hair_base_13_pumpkin{background-image:url(spritesmith1.png);background-position:-1026px -743px;width:60px;height:60px}.hair_base_13_purple{background-image:url(spritesmith1.png);background-position:-1001px -819px;width:90px;height:90px}.customize-option.hair_base_13_purple{background-image:url(spritesmith1.png);background-position:-1026px -834px;width:60px;height:60px}.hair_base_13_pyellow{background-image:url(spritesmith1.png);background-position:-1001px -910px;width:90px;height:90px}.customize-option.hair_base_13_pyellow{background-image:url(spritesmith1.png);background-position:-1026px -925px;width:60px;height:60px}.hair_base_13_pyellow2{background-image:url(spritesmith1.png);background-position:0 -1001px;width:90px;height:90px}.customize-option.hair_base_13_pyellow2{background-image:url(spritesmith1.png);background-position:-25px -1016px;width:60px;height:60px}.hair_base_13_rainbow{background-image:url(spritesmith1.png);background-position:-91px -1001px;width:90px;height:90px}.customize-option.hair_base_13_rainbow{background-image:url(spritesmith1.png);background-position:-116px -1016px;width:60px;height:60px}.hair_base_13_red{background-image:url(spritesmith1.png);background-position:-182px -1001px;width:90px;height:90px}.customize-option.hair_base_13_red{background-image:url(spritesmith1.png);background-position:-207px -1016px;width:60px;height:60px}.hair_base_13_snowy{background-image:url(spritesmith1.png);background-position:-273px -1001px;width:90px;height:90px}.customize-option.hair_base_13_snowy{background-image:url(spritesmith1.png);background-position:-298px -1016px;width:60px;height:60px}.hair_base_13_white{background-image:url(spritesmith1.png);background-position:-364px -1001px;width:90px;height:90px}.customize-option.hair_base_13_white{background-image:url(spritesmith1.png);background-position:-389px -1016px;width:60px;height:60px}.hair_base_13_winternight{background-image:url(spritesmith1.png);background-position:-455px -1001px;width:90px;height:90px}.customize-option.hair_base_13_winternight{background-image:url(spritesmith1.png);background-position:-480px -1016px;width:60px;height:60px}.hair_base_13_winterstar{background-image:url(spritesmith1.png);background-position:-546px -1001px;width:90px;height:90px}.customize-option.hair_base_13_winterstar{background-image:url(spritesmith1.png);background-position:-571px -1016px;width:60px;height:60px}.hair_base_13_yellow{background-image:url(spritesmith1.png);background-position:-637px -1001px;width:90px;height:90px}.customize-option.hair_base_13_yellow{background-image:url(spritesmith1.png);background-position:-662px -1016px;width:60px;height:60px}.hair_base_13_zombie{background-image:url(spritesmith1.png);background-position:-728px -1001px;width:90px;height:90px}.customize-option.hair_base_13_zombie{background-image:url(spritesmith1.png);background-position:-753px -1016px;width:60px;height:60px}.hair_base_14_TRUred{background-image:url(spritesmith1.png);background-position:-819px -1001px;width:90px;height:90px}.customize-option.hair_base_14_TRUred{background-image:url(spritesmith1.png);background-position:-844px -1016px;width:60px;height:60px}.hair_base_14_aurora{background-image:url(spritesmith1.png);background-position:-910px -1001px;width:90px;height:90px}.customize-option.hair_base_14_aurora{background-image:url(spritesmith1.png);background-position:-935px -1016px;width:60px;height:60px}.hair_base_14_black{background-image:url(spritesmith1.png);background-position:-1001px -1001px;width:90px;height:90px}.customize-option.hair_base_14_black{background-image:url(spritesmith1.png);background-position:-1026px -1016px;width:60px;height:60px}.hair_base_14_blond{background-image:url(spritesmith1.png);background-position:-1092px 0;width:90px;height:90px}.customize-option.hair_base_14_blond{background-image:url(spritesmith1.png);background-position:-1117px -15px;width:60px;height:60px}.hair_base_14_blue{background-image:url(spritesmith1.png);background-position:-1092px -91px;width:90px;height:90px}.customize-option.hair_base_14_blue{background-image:url(spritesmith1.png);background-position:-1117px -106px;width:60px;height:60px}.hair_base_14_brown{background-image:url(spritesmith1.png);background-position:-1092px -182px;width:90px;height:90px}.customize-option.hair_base_14_brown{background-image:url(spritesmith1.png);background-position:-1117px -197px;width:60px;height:60px}.hair_base_14_candycane{background-image:url(spritesmith1.png);background-position:-1092px -273px;width:90px;height:90px}.customize-option.hair_base_14_candycane{background-image:url(spritesmith1.png);background-position:-1117px -288px;width:60px;height:60px}.hair_base_14_candycorn{background-image:url(spritesmith1.png);background-position:-1092px -364px;width:90px;height:90px}.customize-option.hair_base_14_candycorn{background-image:url(spritesmith1.png);background-position:-1117px -379px;width:60px;height:60px}.hair_base_14_festive{background-image:url(spritesmith1.png);background-position:-1092px -455px;width:90px;height:90px}.customize-option.hair_base_14_festive{background-image:url(spritesmith1.png);background-position:-1117px -470px;width:60px;height:60px}.hair_base_14_frost{background-image:url(spritesmith1.png);background-position:-1092px -546px;width:90px;height:90px}.customize-option.hair_base_14_frost{background-image:url(spritesmith1.png);background-position:-1117px -561px;width:60px;height:60px}.hair_base_14_ghostwhite{background-image:url(spritesmith1.png);background-position:-1092px -637px;width:90px;height:90px}.customize-option.hair_base_14_ghostwhite{background-image:url(spritesmith1.png);background-position:-1117px -652px;width:60px;height:60px}.hair_base_14_green{background-image:url(spritesmith1.png);background-position:-1092px -728px;width:90px;height:90px}.customize-option.hair_base_14_green{background-image:url(spritesmith1.png);background-position:-1117px -743px;width:60px;height:60px}.hair_base_14_halloween{background-image:url(spritesmith1.png);background-position:-1092px -819px;width:90px;height:90px}.customize-option.hair_base_14_halloween{background-image:url(spritesmith1.png);background-position:-1117px -834px;width:60px;height:60px}.hair_base_14_holly{background-image:url(spritesmith1.png);background-position:-1092px -910px;width:90px;height:90px}.customize-option.hair_base_14_holly{background-image:url(spritesmith1.png);background-position:-1117px -925px;width:60px;height:60px}.hair_base_14_hollygreen{background-image:url(spritesmith1.png);background-position:-1092px -1001px;width:90px;height:90px}.customize-option.hair_base_14_hollygreen{background-image:url(spritesmith1.png);background-position:-1117px -1016px;width:60px;height:60px}.hair_base_14_midnight{background-image:url(spritesmith1.png);background-position:0 -1092px;width:90px;height:90px}.customize-option.hair_base_14_midnight{background-image:url(spritesmith1.png);background-position:-25px -1107px;width:60px;height:60px}.hair_base_14_pblue{background-image:url(spritesmith1.png);background-position:-91px -1092px;width:90px;height:90px}.customize-option.hair_base_14_pblue{background-image:url(spritesmith1.png);background-position:-116px -1107px;width:60px;height:60px}.hair_base_14_pblue2{background-image:url(spritesmith1.png);background-position:-182px -1092px;width:90px;height:90px}.customize-option.hair_base_14_pblue2{background-image:url(spritesmith1.png);background-position:-207px -1107px;width:60px;height:60px}.hair_base_14_peppermint{background-image:url(spritesmith1.png);background-position:-273px -1092px;width:90px;height:90px}.customize-option.hair_base_14_peppermint{background-image:url(spritesmith1.png);background-position:-298px -1107px;width:60px;height:60px}.hair_base_14_pgreen{background-image:url(spritesmith1.png);background-position:-364px -1092px;width:90px;height:90px}.customize-option.hair_base_14_pgreen{background-image:url(spritesmith1.png);background-position:-389px -1107px;width:60px;height:60px}.hair_base_14_pgreen2{background-image:url(spritesmith1.png);background-position:-455px -1092px;width:90px;height:90px}.customize-option.hair_base_14_pgreen2{background-image:url(spritesmith1.png);background-position:-480px -1107px;width:60px;height:60px}.hair_base_14_porange{background-image:url(spritesmith1.png);background-position:-546px -1092px;width:90px;height:90px}.customize-option.hair_base_14_porange{background-image:url(spritesmith1.png);background-position:-571px -1107px;width:60px;height:60px}.hair_base_14_porange2{background-image:url(spritesmith1.png);background-position:-637px -1092px;width:90px;height:90px}.customize-option.hair_base_14_porange2{background-image:url(spritesmith1.png);background-position:-662px -1107px;width:60px;height:60px}.hair_base_14_ppink{background-image:url(spritesmith1.png);background-position:-728px -1092px;width:90px;height:90px}.customize-option.hair_base_14_ppink{background-image:url(spritesmith1.png);background-position:-753px -1107px;width:60px;height:60px}.hair_base_14_ppink2{background-image:url(spritesmith1.png);background-position:-819px -1092px;width:90px;height:90px}.customize-option.hair_base_14_ppink2{background-image:url(spritesmith1.png);background-position:-844px -1107px;width:60px;height:60px}.hair_base_14_ppurple{background-image:url(spritesmith1.png);background-position:-910px -1092px;width:90px;height:90px}.customize-option.hair_base_14_ppurple{background-image:url(spritesmith1.png);background-position:-935px -1107px;width:60px;height:60px}.hair_base_14_ppurple2{background-image:url(spritesmith1.png);background-position:-1001px -1092px;width:90px;height:90px}.customize-option.hair_base_14_ppurple2{background-image:url(spritesmith1.png);background-position:-1026px -1107px;width:60px;height:60px}.hair_base_14_pumpkin{background-image:url(spritesmith1.png);background-position:-1092px -1092px;width:90px;height:90px}.customize-option.hair_base_14_pumpkin{background-image:url(spritesmith1.png);background-position:-1117px -1107px;width:60px;height:60px}.hair_base_14_purple{background-image:url(spritesmith1.png);background-position:-1183px 0;width:90px;height:90px}.customize-option.hair_base_14_purple{background-image:url(spritesmith1.png);background-position:-1208px -15px;width:60px;height:60px}.hair_base_14_pyellow{background-image:url(spritesmith1.png);background-position:-1183px -91px;width:90px;height:90px}.customize-option.hair_base_14_pyellow{background-image:url(spritesmith1.png);background-position:-1208px -106px;width:60px;height:60px}.hair_base_14_pyellow2{background-image:url(spritesmith1.png);background-position:-1183px -182px;width:90px;height:90px}.customize-option.hair_base_14_pyellow2{background-image:url(spritesmith1.png);background-position:-1208px -197px;width:60px;height:60px}.hair_base_14_rainbow{background-image:url(spritesmith1.png);background-position:-1183px -273px;width:90px;height:90px}.customize-option.hair_base_14_rainbow{background-image:url(spritesmith1.png);background-position:-1208px -288px;width:60px;height:60px}.hair_base_14_red{background-image:url(spritesmith1.png);background-position:-1183px -364px;width:90px;height:90px}.customize-option.hair_base_14_red{background-image:url(spritesmith1.png);background-position:-1208px -379px;width:60px;height:60px}.hair_base_14_snowy{background-image:url(spritesmith1.png);background-position:-1183px -455px;width:90px;height:90px}.customize-option.hair_base_14_snowy{background-image:url(spritesmith1.png);background-position:-1208px -470px;width:60px;height:60px}.hair_base_14_white{background-image:url(spritesmith1.png);background-position:-1183px -546px;width:90px;height:90px}.customize-option.hair_base_14_white{background-image:url(spritesmith1.png);background-position:-1208px -561px;width:60px;height:60px}.hair_base_14_winternight{background-image:url(spritesmith1.png);background-position:-1183px -637px;width:90px;height:90px}.customize-option.hair_base_14_winternight{background-image:url(spritesmith1.png);background-position:-1208px -652px;width:60px;height:60px}.hair_base_14_winterstar{background-image:url(spritesmith1.png);background-position:-1183px -728px;width:90px;height:90px}.customize-option.hair_base_14_winterstar{background-image:url(spritesmith1.png);background-position:-1208px -743px;width:60px;height:60px}.hair_base_14_yellow{background-image:url(spritesmith1.png);background-position:-1183px -819px;width:90px;height:90px}.customize-option.hair_base_14_yellow{background-image:url(spritesmith1.png);background-position:-1208px -834px;width:60px;height:60px}.hair_base_14_zombie{background-image:url(spritesmith1.png);background-position:-1183px -910px;width:90px;height:90px}.customize-option.hair_base_14_zombie{background-image:url(spritesmith1.png);background-position:-1208px -925px;width:60px;height:60px}.hair_base_1_TRUred{background-image:url(spritesmith1.png);background-position:-1183px -1001px;width:90px;height:90px}.customize-option.hair_base_1_TRUred{background-image:url(spritesmith1.png);background-position:-1208px -1016px;width:60px;height:60px}.hair_base_1_aurora{background-image:url(spritesmith1.png);background-position:-1183px -1092px;width:90px;height:90px}.customize-option.hair_base_1_aurora{background-image:url(spritesmith1.png);background-position:-1208px -1107px;width:60px;height:60px}.hair_base_1_black{background-image:url(spritesmith1.png);background-position:0 -1183px;width:90px;height:90px}.customize-option.hair_base_1_black{background-image:url(spritesmith1.png);background-position:-25px -1198px;width:60px;height:60px}.hair_base_1_blond{background-image:url(spritesmith1.png);background-position:-91px -1183px;width:90px;height:90px}.customize-option.hair_base_1_blond{background-image:url(spritesmith1.png);background-position:-116px -1198px;width:60px;height:60px}.hair_base_1_blue{background-image:url(spritesmith1.png);background-position:0 0;width:90px;height:90px}.customize-option.hair_base_1_blue{background-image:url(spritesmith1.png);background-position:-25px -15px;width:60px;height:60px}.hair_base_1_brown{background-image:url(spritesmith1.png);background-position:-273px -1183px;width:90px;height:90px}.customize-option.hair_base_1_brown{background-image:url(spritesmith1.png);background-position:-298px -1198px;width:60px;height:60px}.hair_base_1_candycane{background-image:url(spritesmith1.png);background-position:-364px -1183px;width:90px;height:90px}.customize-option.hair_base_1_candycane{background-image:url(spritesmith1.png);background-position:-389px -1198px;width:60px;height:60px}.hair_base_1_candycorn{background-image:url(spritesmith1.png);background-position:-455px -1183px;width:90px;height:90px}.customize-option.hair_base_1_candycorn{background-image:url(spritesmith1.png);background-position:-480px -1198px;width:60px;height:60px}.hair_base_1_festive{background-image:url(spritesmith1.png);background-position:-546px -1183px;width:90px;height:90px}.customize-option.hair_base_1_festive{background-image:url(spritesmith1.png);background-position:-571px -1198px;width:60px;height:60px}.hair_base_1_frost{background-image:url(spritesmith1.png);background-position:-637px -1183px;width:90px;height:90px}.customize-option.hair_base_1_frost{background-image:url(spritesmith1.png);background-position:-662px -1198px;width:60px;height:60px}.hair_base_1_ghostwhite{background-image:url(spritesmith1.png);background-position:-728px -1183px;width:90px;height:90px}.customize-option.hair_base_1_ghostwhite{background-image:url(spritesmith1.png);background-position:-753px -1198px;width:60px;height:60px}.hair_base_1_green{background-image:url(spritesmith1.png);background-position:-819px -1183px;width:90px;height:90px}.customize-option.hair_base_1_green{background-image:url(spritesmith1.png);background-position:-844px -1198px;width:60px;height:60px}.hair_base_1_halloween{background-image:url(spritesmith1.png);background-position:-910px -1183px;width:90px;height:90px}.customize-option.hair_base_1_halloween{background-image:url(spritesmith1.png);background-position:-935px -1198px;width:60px;height:60px}.hair_base_1_holly{background-image:url(spritesmith1.png);background-position:-1001px -1183px;width:90px;height:90px}.customize-option.hair_base_1_holly{background-image:url(spritesmith1.png);background-position:-1026px -1198px;width:60px;height:60px}.hair_base_1_hollygreen{background-image:url(spritesmith1.png);background-position:-1092px -1183px;width:90px;height:90px}.customize-option.hair_base_1_hollygreen{background-image:url(spritesmith1.png);background-position:-1117px -1198px;width:60px;height:60px}.hair_base_1_midnight{background-image:url(spritesmith1.png);background-position:-1183px -1183px;width:90px;height:90px}.customize-option.hair_base_1_midnight{background-image:url(spritesmith1.png);background-position:-1208px -1198px;width:60px;height:60px}.hair_base_1_pblue{background-image:url(spritesmith1.png);background-position:-1274px 0;width:90px;height:90px}.customize-option.hair_base_1_pblue{background-image:url(spritesmith1.png);background-position:-1299px -15px;width:60px;height:60px}.hair_base_1_pblue2{background-image:url(spritesmith1.png);background-position:-1274px -91px;width:90px;height:90px}.customize-option.hair_base_1_pblue2{background-image:url(spritesmith1.png);background-position:-1299px -106px;width:60px;height:60px}.hair_base_1_peppermint{background-image:url(spritesmith1.png);background-position:-1274px -182px;width:90px;height:90px}.customize-option.hair_base_1_peppermint{background-image:url(spritesmith1.png);background-position:-1299px -197px;width:60px;height:60px}.hair_base_1_pgreen{background-image:url(spritesmith1.png);background-position:-1274px -273px;width:90px;height:90px}.customize-option.hair_base_1_pgreen{background-image:url(spritesmith1.png);background-position:-1299px -288px;width:60px;height:60px}.hair_base_1_pgreen2{background-image:url(spritesmith1.png);background-position:-1274px -364px;width:90px;height:90px}.customize-option.hair_base_1_pgreen2{background-image:url(spritesmith1.png);background-position:-1299px -379px;width:60px;height:60px}.hair_base_1_porange{background-image:url(spritesmith1.png);background-position:-1274px -455px;width:90px;height:90px}.customize-option.hair_base_1_porange{background-image:url(spritesmith1.png);background-position:-1299px -470px;width:60px;height:60px}.hair_base_1_porange2{background-image:url(spritesmith1.png);background-position:-1274px -546px;width:90px;height:90px}.customize-option.hair_base_1_porange2{background-image:url(spritesmith1.png);background-position:-1299px -561px;width:60px;height:60px}.hair_base_1_ppink{background-image:url(spritesmith1.png);background-position:-1274px -637px;width:90px;height:90px}.customize-option.hair_base_1_ppink{background-image:url(spritesmith1.png);background-position:-1299px -652px;width:60px;height:60px}.hair_base_1_ppink2{background-image:url(spritesmith1.png);background-position:-1274px -728px;width:90px;height:90px}.customize-option.hair_base_1_ppink2{background-image:url(spritesmith1.png);background-position:-1299px -743px;width:60px;height:60px}.hair_base_1_ppurple{background-image:url(spritesmith1.png);background-position:-1274px -819px;width:90px;height:90px}.customize-option.hair_base_1_ppurple{background-image:url(spritesmith1.png);background-position:-1299px -834px;width:60px;height:60px}.hair_base_1_ppurple2{background-image:url(spritesmith1.png);background-position:-1274px -910px;width:90px;height:90px}.customize-option.hair_base_1_ppurple2{background-image:url(spritesmith1.png);background-position:-1299px -925px;width:60px;height:60px}.hair_base_1_pumpkin{background-image:url(spritesmith1.png);background-position:-1274px -1001px;width:90px;height:90px}.customize-option.hair_base_1_pumpkin{background-image:url(spritesmith1.png);background-position:-1299px -1016px;width:60px;height:60px}.hair_base_1_purple{background-image:url(spritesmith1.png);background-position:-1274px -1092px;width:90px;height:90px}.customize-option.hair_base_1_purple{background-image:url(spritesmith1.png);background-position:-1299px -1107px;width:60px;height:60px}.hair_base_1_pyellow{background-image:url(spritesmith1.png);background-position:-1274px -1183px;width:90px;height:90px}.customize-option.hair_base_1_pyellow{background-image:url(spritesmith1.png);background-position:-1299px -1198px;width:60px;height:60px}.hair_base_1_pyellow2{background-image:url(spritesmith1.png);background-position:0 -1274px;width:90px;height:90px}.customize-option.hair_base_1_pyellow2{background-image:url(spritesmith1.png);background-position:-25px -1289px;width:60px;height:60px}.hair_base_1_rainbow{background-image:url(spritesmith1.png);background-position:-91px -1274px;width:90px;height:90px}.customize-option.hair_base_1_rainbow{background-image:url(spritesmith1.png);background-position:-116px -1289px;width:60px;height:60px}.hair_base_1_red{background-image:url(spritesmith1.png);background-position:-182px -1274px;width:90px;height:90px}.customize-option.hair_base_1_red{background-image:url(spritesmith1.png);background-position:-207px -1289px;width:60px;height:60px}.hair_base_1_snowy{background-image:url(spritesmith1.png);background-position:-273px -1274px;width:90px;height:90px}.customize-option.hair_base_1_snowy{background-image:url(spritesmith1.png);background-position:-298px -1289px;width:60px;height:60px}.hair_base_1_white{background-image:url(spritesmith1.png);background-position:-364px -1274px;width:90px;height:90px}.customize-option.hair_base_1_white{background-image:url(spritesmith1.png);background-position:-389px -1289px;width:60px;height:60px}.hair_base_1_winternight{background-image:url(spritesmith1.png);background-position:-455px -1274px;width:90px;height:90px}.customize-option.hair_base_1_winternight{background-image:url(spritesmith1.png);background-position:-480px -1289px;width:60px;height:60px}.hair_base_1_winterstar{background-image:url(spritesmith1.png);background-position:-546px -1274px;width:90px;height:90px}.customize-option.hair_base_1_winterstar{background-image:url(spritesmith1.png);background-position:-571px -1289px;width:60px;height:60px}.hair_base_1_yellow{background-image:url(spritesmith1.png);background-position:-637px -1274px;width:90px;height:90px}.customize-option.hair_base_1_yellow{background-image:url(spritesmith1.png);background-position:-662px -1289px;width:60px;height:60px}.hair_base_1_zombie{background-image:url(spritesmith1.png);background-position:-728px -1274px;width:90px;height:90px}.customize-option.hair_base_1_zombie{background-image:url(spritesmith1.png);background-position:-753px -1289px;width:60px;height:60px}.hair_base_2_TRUred{background-image:url(spritesmith1.png);background-position:-819px -1274px;width:90px;height:90px}.customize-option.hair_base_2_TRUred{background-image:url(spritesmith1.png);background-position:-844px -1289px;width:60px;height:60px}.hair_base_2_aurora{background-image:url(spritesmith1.png);background-position:-910px -1274px;width:90px;height:90px}.customize-option.hair_base_2_aurora{background-image:url(spritesmith1.png);background-position:-935px -1289px;width:60px;height:60px}.hair_base_2_black{background-image:url(spritesmith1.png);background-position:-1001px -1274px;width:90px;height:90px}.customize-option.hair_base_2_black{background-image:url(spritesmith1.png);background-position:-1026px -1289px;width:60px;height:60px}.hair_base_2_blond{background-image:url(spritesmith1.png);background-position:-1092px -1274px;width:90px;height:90px}.customize-option.hair_base_2_blond{background-image:url(spritesmith1.png);background-position:-1117px -1289px;width:60px;height:60px}.hair_base_2_blue{background-image:url(spritesmith1.png);background-position:-1183px -1274px;width:90px;height:90px}.customize-option.hair_base_2_blue{background-image:url(spritesmith1.png);background-position:-1208px -1289px;width:60px;height:60px}.hair_base_2_brown{background-image:url(spritesmith1.png);background-position:-1274px -1274px;width:90px;height:90px}.customize-option.hair_base_2_brown{background-image:url(spritesmith1.png);background-position:-1299px -1289px;width:60px;height:60px}.hair_base_2_candycane{background-image:url(spritesmith1.png);background-position:-1365px 0;width:90px;height:90px}.customize-option.hair_base_2_candycane{background-image:url(spritesmith1.png);background-position:-1390px -15px;width:60px;height:60px}.hair_base_2_candycorn{background-image:url(spritesmith1.png);background-position:-1365px -91px;width:90px;height:90px}.customize-option.hair_base_2_candycorn{background-image:url(spritesmith1.png);background-position:-1390px -106px;width:60px;height:60px}.hair_base_2_festive{background-image:url(spritesmith1.png);background-position:-1365px -182px;width:90px;height:90px}.customize-option.hair_base_2_festive{background-image:url(spritesmith1.png);background-position:-1390px -197px;width:60px;height:60px}.hair_base_2_frost{background-image:url(spritesmith1.png);background-position:-1365px -273px;width:90px;height:90px}.customize-option.hair_base_2_frost{background-image:url(spritesmith1.png);background-position:-1390px -288px;width:60px;height:60px}.hair_base_2_ghostwhite{background-image:url(spritesmith1.png);background-position:-1365px -364px;width:90px;height:90px}.customize-option.hair_base_2_ghostwhite{background-image:url(spritesmith1.png);background-position:-1390px -379px;width:60px;height:60px}.hair_base_2_green{background-image:url(spritesmith1.png);background-position:-1365px -455px;width:90px;height:90px}.customize-option.hair_base_2_green{background-image:url(spritesmith1.png);background-position:-1390px -470px;width:60px;height:60px}.hair_base_2_halloween{background-image:url(spritesmith1.png);background-position:-1365px -546px;width:90px;height:90px}.customize-option.hair_base_2_halloween{background-image:url(spritesmith1.png);background-position:-1390px -561px;width:60px;height:60px}.hair_base_2_holly{background-image:url(spritesmith1.png);background-position:-1365px -637px;width:90px;height:90px}.customize-option.hair_base_2_holly{background-image:url(spritesmith1.png);background-position:-1390px -652px;width:60px;height:60px}.hair_base_2_hollygreen{background-image:url(spritesmith1.png);background-position:-1365px -728px;width:90px;height:90px}.customize-option.hair_base_2_hollygreen{background-image:url(spritesmith1.png);background-position:-1390px -743px;width:60px;height:60px}.hair_base_2_midnight{background-image:url(spritesmith1.png);background-position:-1365px -819px;width:90px;height:90px}.customize-option.hair_base_2_midnight{background-image:url(spritesmith1.png);background-position:-1390px -834px;width:60px;height:60px}.hair_base_2_pblue{background-image:url(spritesmith1.png);background-position:-1365px -910px;width:90px;height:90px}.customize-option.hair_base_2_pblue{background-image:url(spritesmith1.png);background-position:-1390px -925px;width:60px;height:60px}.hair_base_2_pblue2{background-image:url(spritesmith1.png);background-position:-1365px -1001px;width:90px;height:90px}.customize-option.hair_base_2_pblue2{background-image:url(spritesmith1.png);background-position:-1390px -1016px;width:60px;height:60px}.hair_base_2_peppermint{background-image:url(spritesmith1.png);background-position:-1365px -1092px;width:90px;height:90px}.customize-option.hair_base_2_peppermint{background-image:url(spritesmith1.png);background-position:-1390px -1107px;width:60px;height:60px}.hair_base_2_pgreen{background-image:url(spritesmith1.png);background-position:-1365px -1183px;width:90px;height:90px}.customize-option.hair_base_2_pgreen{background-image:url(spritesmith1.png);background-position:-1390px -1198px;width:60px;height:60px}.hair_base_2_pgreen2{background-image:url(spritesmith1.png);background-position:-1365px -1274px;width:90px;height:90px}.customize-option.hair_base_2_pgreen2{background-image:url(spritesmith1.png);background-position:-1390px -1289px;width:60px;height:60px}.hair_base_2_porange{background-image:url(spritesmith1.png);background-position:0 -1365px;width:90px;height:90px}.customize-option.hair_base_2_porange{background-image:url(spritesmith1.png);background-position:-25px -1380px;width:60px;height:60px}.hair_base_2_porange2{background-image:url(spritesmith1.png);background-position:-91px -1365px;width:90px;height:90px}.customize-option.hair_base_2_porange2{background-image:url(spritesmith1.png);background-position:-116px -1380px;width:60px;height:60px}.hair_base_2_ppink{background-image:url(spritesmith1.png);background-position:-182px -1365px;width:90px;height:90px}.customize-option.hair_base_2_ppink{background-image:url(spritesmith1.png);background-position:-207px -1380px;width:60px;height:60px}.hair_base_2_ppink2{background-image:url(spritesmith1.png);background-position:-273px -1365px;width:90px;height:90px}.customize-option.hair_base_2_ppink2{background-image:url(spritesmith1.png);background-position:-298px -1380px;width:60px;height:60px}.hair_base_2_ppurple{background-image:url(spritesmith1.png);background-position:-364px -1365px;width:90px;height:90px}.customize-option.hair_base_2_ppurple{background-image:url(spritesmith1.png);background-position:-389px -1380px;width:60px;height:60px}.hair_base_2_ppurple2{background-image:url(spritesmith1.png);background-position:-455px -1365px;width:90px;height:90px}.customize-option.hair_base_2_ppurple2{background-image:url(spritesmith1.png);background-position:-480px -1380px;width:60px;height:60px}.hair_base_2_pumpkin{background-image:url(spritesmith1.png);background-position:-546px -1365px;width:90px;height:90px}.customize-option.hair_base_2_pumpkin{background-image:url(spritesmith1.png);background-position:-571px -1380px;width:60px;height:60px}.hair_base_2_purple{background-image:url(spritesmith1.png);background-position:-637px -1365px;width:90px;height:90px}.customize-option.hair_base_2_purple{background-image:url(spritesmith1.png);background-position:-662px -1380px;width:60px;height:60px}.hair_base_2_pyellow{background-image:url(spritesmith1.png);background-position:-728px -1365px;width:90px;height:90px}.customize-option.hair_base_2_pyellow{background-image:url(spritesmith1.png);background-position:-753px -1380px;width:60px;height:60px}.hair_base_2_pyellow2{background-image:url(spritesmith1.png);background-position:-819px -1365px;width:90px;height:90px}.customize-option.hair_base_2_pyellow2{background-image:url(spritesmith1.png);background-position:-844px -1380px;width:60px;height:60px}.hair_base_2_rainbow{background-image:url(spritesmith1.png);background-position:-910px -1365px;width:90px;height:90px}.customize-option.hair_base_2_rainbow{background-image:url(spritesmith1.png);background-position:-935px -1380px;width:60px;height:60px}.hair_base_2_red{background-image:url(spritesmith1.png);background-position:-1001px -1365px;width:90px;height:90px}.customize-option.hair_base_2_red{background-image:url(spritesmith1.png);background-position:-1026px -1380px;width:60px;height:60px}.hair_base_2_snowy{background-image:url(spritesmith1.png);background-position:-1092px -1365px;width:90px;height:90px}.customize-option.hair_base_2_snowy{background-image:url(spritesmith1.png);background-position:-1117px -1380px;width:60px;height:60px}.hair_base_2_white{background-image:url(spritesmith1.png);background-position:-1183px -1365px;width:90px;height:90px}.customize-option.hair_base_2_white{background-image:url(spritesmith1.png);background-position:-1208px -1380px;width:60px;height:60px}.hair_base_2_winternight{background-image:url(spritesmith1.png);background-position:-1274px -1365px;width:90px;height:90px}.customize-option.hair_base_2_winternight{background-image:url(spritesmith1.png);background-position:-1299px -1380px;width:60px;height:60px}.hair_base_2_winterstar{background-image:url(spritesmith1.png);background-position:-1365px -1365px;width:90px;height:90px}.customize-option.hair_base_2_winterstar{background-image:url(spritesmith1.png);background-position:-1390px -1380px;width:60px;height:60px}.hair_base_2_yellow{background-image:url(spritesmith1.png);background-position:-1456px 0;width:90px;height:90px}.customize-option.hair_base_2_yellow{background-image:url(spritesmith1.png);background-position:-1481px -15px;width:60px;height:60px}.hair_base_2_zombie{background-image:url(spritesmith1.png);background-position:-1456px -91px;width:90px;height:90px}.customize-option.hair_base_2_zombie{background-image:url(spritesmith1.png);background-position:-1481px -106px;width:60px;height:60px}.hair_base_3_TRUred{background-image:url(spritesmith1.png);background-position:-1456px -182px;width:90px;height:90px}.customize-option.hair_base_3_TRUred{background-image:url(spritesmith1.png);background-position:-1481px -197px;width:60px;height:60px}.hair_base_3_aurora{background-image:url(spritesmith1.png);background-position:-1456px -273px;width:90px;height:90px}.customize-option.hair_base_3_aurora{background-image:url(spritesmith1.png);background-position:-1481px -288px;width:60px;height:60px}.hair_base_3_black{background-image:url(spritesmith1.png);background-position:-1456px -364px;width:90px;height:90px}.customize-option.hair_base_3_black{background-image:url(spritesmith1.png);background-position:-1481px -379px;width:60px;height:60px}.hair_base_3_blond{background-image:url(spritesmith1.png);background-position:-1456px -455px;width:90px;height:90px}.customize-option.hair_base_3_blond{background-image:url(spritesmith1.png);background-position:-1481px -470px;width:60px;height:60px}.hair_base_3_blue{background-image:url(spritesmith1.png);background-position:-1456px -546px;width:90px;height:90px}.customize-option.hair_base_3_blue{background-image:url(spritesmith1.png);background-position:-1481px -561px;width:60px;height:60px}.hair_base_3_brown{background-image:url(spritesmith1.png);background-position:-1456px -637px;width:90px;height:90px}.customize-option.hair_base_3_brown{background-image:url(spritesmith1.png);background-position:-1481px -652px;width:60px;height:60px}.hair_base_3_candycane{background-image:url(spritesmith1.png);background-position:-1456px -728px;width:90px;height:90px}.customize-option.hair_base_3_candycane{background-image:url(spritesmith1.png);background-position:-1481px -743px;width:60px;height:60px}.hair_base_3_candycorn{background-image:url(spritesmith1.png);background-position:-1456px -819px;width:90px;height:90px}.customize-option.hair_base_3_candycorn{background-image:url(spritesmith1.png);background-position:-1481px -834px;width:60px;height:60px}.hair_base_3_festive{background-image:url(spritesmith1.png);background-position:-1456px -910px;width:90px;height:90px}.customize-option.hair_base_3_festive{background-image:url(spritesmith1.png);background-position:-1481px -925px;width:60px;height:60px}.hair_base_3_frost{background-image:url(spritesmith1.png);background-position:-1456px -1001px;width:90px;height:90px}.customize-option.hair_base_3_frost{background-image:url(spritesmith1.png);background-position:-1481px -1016px;width:60px;height:60px}.hair_base_3_ghostwhite{background-image:url(spritesmith1.png);background-position:-1456px -1092px;width:90px;height:90px}.customize-option.hair_base_3_ghostwhite{background-image:url(spritesmith1.png);background-position:-1481px -1107px;width:60px;height:60px}.hair_base_3_green{background-image:url(spritesmith1.png);background-position:-1456px -1183px;width:90px;height:90px}.customize-option.hair_base_3_green{background-image:url(spritesmith1.png);background-position:-1481px -1198px;width:60px;height:60px}.hair_base_3_halloween{background-image:url(spritesmith1.png);background-position:-1456px -1274px;width:90px;height:90px}.customize-option.hair_base_3_halloween{background-image:url(spritesmith1.png);background-position:-1481px -1289px;width:60px;height:60px}.hair_base_3_holly{background-image:url(spritesmith1.png);background-position:-1456px -1365px;width:90px;height:90px}.customize-option.hair_base_3_holly{background-image:url(spritesmith1.png);background-position:-1481px -1380px;width:60px;height:60px}.hair_base_3_hollygreen{background-image:url(spritesmith1.png);background-position:0 -1456px;width:90px;height:90px}.customize-option.hair_base_3_hollygreen{background-image:url(spritesmith1.png);background-position:-25px -1471px;width:60px;height:60px}.hair_base_3_midnight{background-image:url(spritesmith1.png);background-position:-91px -1456px;width:90px;height:90px}.customize-option.hair_base_3_midnight{background-image:url(spritesmith1.png);background-position:-116px -1471px;width:60px;height:60px}.hair_base_3_pblue{background-image:url(spritesmith1.png);background-position:-182px -1456px;width:90px;height:90px}.customize-option.hair_base_3_pblue{background-image:url(spritesmith1.png);background-position:-207px -1471px;width:60px;height:60px}.hair_base_3_pblue2{background-image:url(spritesmith1.png);background-position:-273px -1456px;width:90px;height:90px}.customize-option.hair_base_3_pblue2{background-image:url(spritesmith1.png);background-position:-298px -1471px;width:60px;height:60px}.hair_base_3_peppermint{background-image:url(spritesmith1.png);background-position:-364px -1456px;width:90px;height:90px}.customize-option.hair_base_3_peppermint{background-image:url(spritesmith1.png);background-position:-389px -1471px;width:60px;height:60px}.hair_base_3_pgreen{background-image:url(spritesmith1.png);background-position:-455px -1456px;width:90px;height:90px}.customize-option.hair_base_3_pgreen{background-image:url(spritesmith1.png);background-position:-480px -1471px;width:60px;height:60px}.hair_base_3_pgreen2{background-image:url(spritesmith1.png);background-position:-546px -1456px;width:90px;height:90px}.customize-option.hair_base_3_pgreen2{background-image:url(spritesmith1.png);background-position:-571px -1471px;width:60px;height:60px}.hair_base_3_porange{background-image:url(spritesmith1.png);background-position:-637px -1456px;width:90px;height:90px}.customize-option.hair_base_3_porange{background-image:url(spritesmith1.png);background-position:-662px -1471px;width:60px;height:60px}.hair_base_3_porange2{background-image:url(spritesmith1.png);background-position:-728px -1456px;width:90px;height:90px}.customize-option.hair_base_3_porange2{background-image:url(spritesmith1.png);background-position:-753px -1471px;width:60px;height:60px}.hair_base_3_ppink{background-image:url(spritesmith1.png);background-position:-819px -1456px;width:90px;height:90px}.customize-option.hair_base_3_ppink{background-image:url(spritesmith1.png);background-position:-844px -1471px;width:60px;height:60px}.hair_base_3_ppink2{background-image:url(spritesmith1.png);background-position:-910px -1456px;width:90px;height:90px}.customize-option.hair_base_3_ppink2{background-image:url(spritesmith1.png);background-position:-935px -1471px;width:60px;height:60px}.hair_base_3_ppurple{background-image:url(spritesmith1.png);background-position:-1001px -1456px;width:90px;height:90px}.customize-option.hair_base_3_ppurple{background-image:url(spritesmith1.png);background-position:-1026px -1471px;width:60px;height:60px}.hair_base_3_ppurple2{background-image:url(spritesmith1.png);background-position:-1092px -1456px;width:90px;height:90px}.customize-option.hair_base_3_ppurple2{background-image:url(spritesmith1.png);background-position:-1117px -1471px;width:60px;height:60px}.hair_base_3_pumpkin{background-image:url(spritesmith1.png);background-position:-1183px -1456px;width:90px;height:90px}.customize-option.hair_base_3_pumpkin{background-image:url(spritesmith1.png);background-position:-1208px -1471px;width:60px;height:60px}.hair_base_3_purple{background-image:url(spritesmith1.png);background-position:-1274px -1456px;width:90px;height:90px}.customize-option.hair_base_3_purple{background-image:url(spritesmith1.png);background-position:-1299px -1471px;width:60px;height:60px}.hair_base_3_pyellow{background-image:url(spritesmith1.png);background-position:-1365px -1456px;width:90px;height:90px}.customize-option.hair_base_3_pyellow{background-image:url(spritesmith1.png);background-position:-1390px -1471px;width:60px;height:60px}.hair_base_3_pyellow2{background-image:url(spritesmith1.png);background-position:-1456px -1456px;width:90px;height:90px}.customize-option.hair_base_3_pyellow2{background-image:url(spritesmith1.png);background-position:-1481px -1471px;width:60px;height:60px}.hair_base_3_rainbow{background-image:url(spritesmith1.png);background-position:-1547px 0;width:90px;height:90px}.customize-option.hair_base_3_rainbow{background-image:url(spritesmith1.png);background-position:-1572px -15px;width:60px;height:60px}.hair_base_3_red{background-image:url(spritesmith1.png);background-position:-1547px -91px;width:90px;height:90px}.customize-option.hair_base_3_red{background-image:url(spritesmith1.png);background-position:-1572px -106px;width:60px;height:60px}.hair_base_3_snowy{background-image:url(spritesmith1.png);background-position:-1547px -182px;width:90px;height:90px}.customize-option.hair_base_3_snowy{background-image:url(spritesmith1.png);background-position:-1572px -197px;width:60px;height:60px}.hair_base_3_white{background-image:url(spritesmith1.png);background-position:-1547px -273px;width:90px;height:90px}.customize-option.hair_base_3_white{background-image:url(spritesmith1.png);background-position:-1572px -288px;width:60px;height:60px}.hair_base_3_winternight{background-image:url(spritesmith1.png);background-position:-1547px -364px;width:90px;height:90px}.customize-option.hair_base_3_winternight{background-image:url(spritesmith1.png);background-position:-1572px -379px;width:60px;height:60px}.hair_base_3_winterstar{background-image:url(spritesmith1.png);background-position:-1547px -455px;width:90px;height:90px}.customize-option.hair_base_3_winterstar{background-image:url(spritesmith1.png);background-position:-1572px -470px;width:60px;height:60px}.hair_base_3_yellow{background-image:url(spritesmith1.png);background-position:-1547px -546px;width:90px;height:90px}.customize-option.hair_base_3_yellow{background-image:url(spritesmith1.png);background-position:-1572px -561px;width:60px;height:60px}.hair_base_3_zombie{background-image:url(spritesmith1.png);background-position:-1547px -637px;width:90px;height:90px}.customize-option.hair_base_3_zombie{background-image:url(spritesmith1.png);background-position:-1572px -652px;width:60px;height:60px}.hair_base_4_TRUred{background-image:url(spritesmith1.png);background-position:-1547px -728px;width:90px;height:90px}.customize-option.hair_base_4_TRUred{background-image:url(spritesmith1.png);background-position:-1572px -743px;width:60px;height:60px}.hair_base_4_aurora{background-image:url(spritesmith1.png);background-position:-1547px -819px;width:90px;height:90px}.customize-option.hair_base_4_aurora{background-image:url(spritesmith1.png);background-position:-1572px -834px;width:60px;height:60px}.hair_base_4_black{background-image:url(spritesmith1.png);background-position:-1547px -910px;width:90px;height:90px}.customize-option.hair_base_4_black{background-image:url(spritesmith1.png);background-position:-1572px -925px;width:60px;height:60px}.hair_base_4_blond{background-image:url(spritesmith1.png);background-position:-1547px -1001px;width:90px;height:90px}.customize-option.hair_base_4_blond{background-image:url(spritesmith1.png);background-position:-1572px -1016px;width:60px;height:60px}.hair_base_4_blue{background-image:url(spritesmith1.png);background-position:-1547px -1092px;width:90px;height:90px}.customize-option.hair_base_4_blue{background-image:url(spritesmith1.png);background-position:-1572px -1107px;width:60px;height:60px}.hair_base_4_brown{background-image:url(spritesmith1.png);background-position:-1547px -1183px;width:90px;height:90px}.customize-option.hair_base_4_brown{background-image:url(spritesmith1.png);background-position:-1572px -1198px;width:60px;height:60px}.hair_base_4_candycane{background-image:url(spritesmith1.png);background-position:-1547px -1274px;width:90px;height:90px}.customize-option.hair_base_4_candycane{background-image:url(spritesmith1.png);background-position:-1572px -1289px;width:60px;height:60px}.hair_base_4_candycorn{background-image:url(spritesmith1.png);background-position:-1547px -1365px;width:90px;height:90px}.customize-option.hair_base_4_candycorn{background-image:url(spritesmith1.png);background-position:-1572px -1380px;width:60px;height:60px}.hair_base_4_festive{background-image:url(spritesmith1.png);background-position:-1547px -1456px;width:90px;height:90px}.customize-option.hair_base_4_festive{background-image:url(spritesmith1.png);background-position:-1572px -1471px;width:60px;height:60px}.hair_base_4_frost{background-image:url(spritesmith1.png);background-position:0 -1547px;width:90px;height:90px}.customize-option.hair_base_4_frost{background-image:url(spritesmith1.png);background-position:-25px -1562px;width:60px;height:60px}.hair_base_4_ghostwhite{background-image:url(spritesmith1.png);background-position:-91px -1547px;width:90px;height:90px}.customize-option.hair_base_4_ghostwhite{background-image:url(spritesmith1.png);background-position:-116px -1562px;width:60px;height:60px}.hair_base_4_green{background-image:url(spritesmith1.png);background-position:-182px -1547px;width:90px;height:90px}.customize-option.hair_base_4_green{background-image:url(spritesmith1.png);background-position:-207px -1562px;width:60px;height:60px}.hair_base_4_halloween{background-image:url(spritesmith1.png);background-position:-273px -1547px;width:90px;height:90px}.customize-option.hair_base_4_halloween{background-image:url(spritesmith1.png);background-position:-298px -1562px;width:60px;height:60px}.hair_base_4_holly{background-image:url(spritesmith1.png);background-position:-364px -1547px;width:90px;height:90px}.customize-option.hair_base_4_holly{background-image:url(spritesmith1.png);background-position:-389px -1562px;width:60px;height:60px}.hair_base_4_hollygreen{background-image:url(spritesmith1.png);background-position:-455px -1547px;width:90px;height:90px}.customize-option.hair_base_4_hollygreen{background-image:url(spritesmith1.png);background-position:-480px -1562px;width:60px;height:60px}.hair_base_4_midnight{background-image:url(spritesmith1.png);background-position:-546px -1547px;width:90px;height:90px}.customize-option.hair_base_4_midnight{background-image:url(spritesmith1.png);background-position:-571px -1562px;width:60px;height:60px}.hair_base_4_pblue{background-image:url(spritesmith1.png);background-position:-637px -1547px;width:90px;height:90px}.customize-option.hair_base_4_pblue{background-image:url(spritesmith1.png);background-position:-662px -1562px;width:60px;height:60px}.hair_base_4_pblue2{background-image:url(spritesmith1.png);background-position:-728px -1547px;width:90px;height:90px}.customize-option.hair_base_4_pblue2{background-image:url(spritesmith1.png);background-position:-753px -1562px;width:60px;height:60px}.hair_base_4_peppermint{background-image:url(spritesmith1.png);background-position:-819px -1547px;width:90px;height:90px}.customize-option.hair_base_4_peppermint{background-image:url(spritesmith1.png);background-position:-844px -1562px;width:60px;height:60px}.hair_base_4_pgreen{background-image:url(spritesmith1.png);background-position:-910px -1547px;width:90px;height:90px}.customize-option.hair_base_4_pgreen{background-image:url(spritesmith1.png);background-position:-935px -1562px;width:60px;height:60px}.hair_base_4_pgreen2{background-image:url(spritesmith1.png);background-position:-1001px -1547px;width:90px;height:90px}.customize-option.hair_base_4_pgreen2{background-image:url(spritesmith1.png);background-position:-1026px -1562px;width:60px;height:60px}.hair_base_4_porange{background-image:url(spritesmith1.png);background-position:-1092px -1547px;width:90px;height:90px}.customize-option.hair_base_4_porange{background-image:url(spritesmith1.png);background-position:-1117px -1562px;width:60px;height:60px}.hair_base_4_porange2{background-image:url(spritesmith1.png);background-position:-1183px -1547px;width:90px;height:90px}.customize-option.hair_base_4_porange2{background-image:url(spritesmith1.png);background-position:-1208px -1562px;width:60px;height:60px}.hair_base_4_ppink{background-image:url(spritesmith1.png);background-position:-1274px -1547px;width:90px;height:90px}.customize-option.hair_base_4_ppink{background-image:url(spritesmith1.png);background-position:-1299px -1562px;width:60px;height:60px}.hair_base_4_ppink2{background-image:url(spritesmith1.png);background-position:-1365px -1547px;width:90px;height:90px}.customize-option.hair_base_4_ppink2{background-image:url(spritesmith1.png);background-position:-1390px -1562px;width:60px;height:60px}.hair_base_4_ppurple{background-image:url(spritesmith1.png);background-position:-1456px -1547px;width:90px;height:90px}.customize-option.hair_base_4_ppurple{background-image:url(spritesmith1.png);background-position:-1481px -1562px;width:60px;height:60px}.hair_base_4_ppurple2{background-image:url(spritesmith1.png);background-position:-1547px -1547px;width:90px;height:90px}.customize-option.hair_base_4_ppurple2{background-image:url(spritesmith1.png);background-position:-1572px -1562px;width:60px;height:60px}.hair_base_4_pumpkin{background-image:url(spritesmith1.png);background-position:-1638px 0;width:90px;height:90px}.customize-option.hair_base_4_pumpkin{background-image:url(spritesmith1.png);background-position:-1663px -15px;width:60px;height:60px}.hair_base_4_purple{background-image:url(spritesmith1.png);background-position:-1638px -91px;width:90px;height:90px}.customize-option.hair_base_4_purple{background-image:url(spritesmith1.png);background-position:-1663px -106px;width:60px;height:60px}.hair_base_4_pyellow{background-image:url(spritesmith1.png);background-position:-1638px -182px;width:90px;height:90px}.customize-option.hair_base_4_pyellow{background-image:url(spritesmith1.png);background-position:-1663px -197px;width:60px;height:60px}.hair_base_4_pyellow2{background-image:url(spritesmith1.png);background-position:-1638px -273px;width:90px;height:90px}.customize-option.hair_base_4_pyellow2{background-image:url(spritesmith1.png);background-position:-1663px -288px;width:60px;height:60px}.hair_base_4_rainbow{background-image:url(spritesmith1.png);background-position:-1638px -364px;width:90px;height:90px}.customize-option.hair_base_4_rainbow{background-image:url(spritesmith1.png);background-position:-1663px -379px;width:60px;height:60px}.hair_base_4_red{background-image:url(spritesmith1.png);background-position:-1638px -455px;width:90px;height:90px}.customize-option.hair_base_4_red{background-image:url(spritesmith1.png);background-position:-1663px -470px;width:60px;height:60px}.hair_base_4_snowy{background-image:url(spritesmith1.png);background-position:-1638px -546px;width:90px;height:90px}.customize-option.hair_base_4_snowy{background-image:url(spritesmith1.png);background-position:-1663px -561px;width:60px;height:60px}.hair_base_4_white{background-image:url(spritesmith1.png);background-position:-1638px -637px;width:90px;height:90px}.customize-option.hair_base_4_white{background-image:url(spritesmith1.png);background-position:-1663px -652px;width:60px;height:60px}.hair_base_4_winternight{background-image:url(spritesmith1.png);background-position:-1638px -728px;width:90px;height:90px}.customize-option.hair_base_4_winternight{background-image:url(spritesmith1.png);background-position:-1663px -743px;width:60px;height:60px}.hair_base_4_winterstar{background-image:url(spritesmith1.png);background-position:-1638px -819px;width:90px;height:90px}.customize-option.hair_base_4_winterstar{background-image:url(spritesmith1.png);background-position:-1663px -834px;width:60px;height:60px}.hair_base_4_yellow{background-image:url(spritesmith1.png);background-position:-1638px -910px;width:90px;height:90px}.customize-option.hair_base_4_yellow{background-image:url(spritesmith1.png);background-position:-1663px -925px;width:60px;height:60px}.hair_base_4_zombie{background-image:url(spritesmith1.png);background-position:-1638px -1001px;width:90px;height:90px}.customize-option.hair_base_4_zombie{background-image:url(spritesmith1.png);background-position:-1663px -1016px;width:60px;height:60px}.hair_base_5_TRUred{background-image:url(spritesmith1.png);background-position:-1638px -1092px;width:90px;height:90px}.customize-option.hair_base_5_TRUred{background-image:url(spritesmith1.png);background-position:-1663px -1107px;width:60px;height:60px}.hair_base_5_aurora{background-image:url(spritesmith1.png);background-position:-1638px -1183px;width:90px;height:90px}.customize-option.hair_base_5_aurora{background-image:url(spritesmith1.png);background-position:-1663px -1198px;width:60px;height:60px}.hair_base_5_black{background-image:url(spritesmith1.png);background-position:-1638px -1274px;width:90px;height:90px}.customize-option.hair_base_5_black{background-image:url(spritesmith1.png);background-position:-1663px -1289px;width:60px;height:60px}.hair_base_5_blond{background-image:url(spritesmith1.png);background-position:-1638px -1365px;width:90px;height:90px}.customize-option.hair_base_5_blond{background-image:url(spritesmith1.png);background-position:-1663px -1380px;width:60px;height:60px}.hair_base_5_blue{background-image:url(spritesmith1.png);background-position:-1638px -1456px;width:90px;height:90px}.customize-option.hair_base_5_blue{background-image:url(spritesmith1.png);background-position:-1663px -1471px;width:60px;height:60px}.hair_base_5_brown{background-image:url(spritesmith1.png);background-position:-1638px -1547px;width:90px;height:90px}.customize-option.hair_base_5_brown{background-image:url(spritesmith1.png);background-position:-1663px -1562px;width:60px;height:60px}.hair_base_5_candycane{background-image:url(spritesmith1.png);background-position:0 -1638px;width:90px;height:90px}.customize-option.hair_base_5_candycane{background-image:url(spritesmith1.png);background-position:-25px -1653px;width:60px;height:60px}.hair_base_5_candycorn{background-image:url(spritesmith1.png);background-position:-91px -1638px;width:90px;height:90px}.customize-option.hair_base_5_candycorn{background-image:url(spritesmith1.png);background-position:-116px -1653px;width:60px;height:60px}.hair_base_5_festive{background-image:url(spritesmith1.png);background-position:-182px -1638px;width:90px;height:90px}.customize-option.hair_base_5_festive{background-image:url(spritesmith1.png);background-position:-207px -1653px;width:60px;height:60px}.hair_base_5_frost{background-image:url(spritesmith1.png);background-position:-273px -1638px;width:90px;height:90px}.customize-option.hair_base_5_frost{background-image:url(spritesmith1.png);background-position:-298px -1653px;width:60px;height:60px}.hair_base_5_ghostwhite{background-image:url(spritesmith1.png);background-position:-364px -1638px;width:90px;height:90px}.customize-option.hair_base_5_ghostwhite{background-image:url(spritesmith1.png);background-position:-389px -1653px;width:60px;height:60px}.hair_base_5_green{background-image:url(spritesmith1.png);background-position:-455px -1638px;width:90px;height:90px}.customize-option.hair_base_5_green{background-image:url(spritesmith1.png);background-position:-480px -1653px;width:60px;height:60px}.hair_base_5_halloween{background-image:url(spritesmith1.png);background-position:-546px -1638px;width:90px;height:90px}.customize-option.hair_base_5_halloween{background-image:url(spritesmith1.png);background-position:-571px -1653px;width:60px;height:60px}.hair_base_5_holly{background-image:url(spritesmith1.png);background-position:-637px -1638px;width:90px;height:90px}.customize-option.hair_base_5_holly{background-image:url(spritesmith1.png);background-position:-662px -1653px;width:60px;height:60px}.hair_base_5_hollygreen{background-image:url(spritesmith1.png);background-position:-728px -1638px;width:90px;height:90px}.customize-option.hair_base_5_hollygreen{background-image:url(spritesmith1.png);background-position:-753px -1653px;width:60px;height:60px}.hair_base_5_midnight{background-image:url(spritesmith1.png);background-position:-819px -1638px;width:90px;height:90px}.customize-option.hair_base_5_midnight{background-image:url(spritesmith1.png);background-position:-844px -1653px;width:60px;height:60px}.hair_base_5_pblue{background-image:url(spritesmith1.png);background-position:-910px -1638px;width:90px;height:90px}.customize-option.hair_base_5_pblue{background-image:url(spritesmith1.png);background-position:-935px -1653px;width:60px;height:60px}.hair_base_5_pblue2{background-image:url(spritesmith1.png);background-position:-1001px -1638px;width:90px;height:90px}.customize-option.hair_base_5_pblue2{background-image:url(spritesmith1.png);background-position:-1026px -1653px;width:60px;height:60px}.hair_base_5_peppermint{background-image:url(spritesmith1.png);background-position:-1092px -1638px;width:90px;height:90px}.customize-option.hair_base_5_peppermint{background-image:url(spritesmith1.png);background-position:-1117px -1653px;width:60px;height:60px}.hair_base_5_pgreen{background-image:url(spritesmith1.png);background-position:-1183px -1638px;width:90px;height:90px}.customize-option.hair_base_5_pgreen{background-image:url(spritesmith1.png);background-position:-1208px -1653px;width:60px;height:60px}.hair_base_5_pgreen2{background-image:url(spritesmith1.png);background-position:-1274px -1638px;width:90px;height:90px}.customize-option.hair_base_5_pgreen2{background-image:url(spritesmith1.png);background-position:-1299px -1653px;width:60px;height:60px}.hair_base_5_porange{background-image:url(spritesmith1.png);background-position:-1365px -1638px;width:90px;height:90px}.customize-option.hair_base_5_porange{background-image:url(spritesmith1.png);background-position:-1390px -1653px;width:60px;height:60px}.hair_base_5_porange2{background-image:url(spritesmith1.png);background-position:-1456px -1638px;width:90px;height:90px}.customize-option.hair_base_5_porange2{background-image:url(spritesmith1.png);background-position:-1481px -1653px;width:60px;height:60px}.hair_base_5_ppink{background-image:url(spritesmith1.png);background-position:-1547px -1638px;width:90px;height:90px}.customize-option.hair_base_5_ppink{background-image:url(spritesmith1.png);background-position:-1572px -1653px;width:60px;height:60px}.hair_base_5_ppink2{background-image:url(spritesmith1.png);background-position:-1638px -1638px;width:90px;height:90px}.customize-option.hair_base_5_ppink2{background-image:url(spritesmith1.png);background-position:-1663px -1653px;width:60px;height:60px}.hair_base_5_ppurple{background-image:url(spritesmith1.png);background-position:-1729px 0;width:90px;height:90px}.customize-option.hair_base_5_ppurple{background-image:url(spritesmith1.png);background-position:-1754px -15px;width:60px;height:60px}.hair_base_5_ppurple2{background-image:url(spritesmith1.png);background-position:-1729px -91px;width:90px;height:90px}.customize-option.hair_base_5_ppurple2{background-image:url(spritesmith1.png);background-position:-1754px -106px;width:60px;height:60px}.hair_base_5_pumpkin{background-image:url(spritesmith1.png);background-position:-1729px -182px;width:90px;height:90px}.customize-option.hair_base_5_pumpkin{background-image:url(spritesmith1.png);background-position:-1754px -197px;width:60px;height:60px}.hair_base_5_purple{background-image:url(spritesmith1.png);background-position:-1729px -273px;width:90px;height:90px}.customize-option.hair_base_5_purple{background-image:url(spritesmith1.png);background-position:-1754px -288px;width:60px;height:60px}.hair_base_5_pyellow{background-image:url(spritesmith1.png);background-position:-1729px -364px;width:90px;height:90px}.customize-option.hair_base_5_pyellow{background-image:url(spritesmith1.png);background-position:-1754px -379px;width:60px;height:60px}.hair_base_5_pyellow2{background-image:url(spritesmith1.png);background-position:-1729px -455px;width:90px;height:90px}.customize-option.hair_base_5_pyellow2{background-image:url(spritesmith1.png);background-position:-1754px -470px;width:60px;height:60px}.hair_base_5_rainbow{background-image:url(spritesmith1.png);background-position:-1729px -546px;width:90px;height:90px}.customize-option.hair_base_5_rainbow{background-image:url(spritesmith1.png);background-position:-1754px -561px;width:60px;height:60px}.hair_base_5_red{background-image:url(spritesmith1.png);background-position:-1729px -637px;width:90px;height:90px}.customize-option.hair_base_5_red{background-image:url(spritesmith1.png);background-position:-1754px -652px;width:60px;height:60px}.hair_base_5_snowy{background-image:url(spritesmith2.png);background-position:-91px 0;width:90px;height:90px}.customize-option.hair_base_5_snowy{background-image:url(spritesmith2.png);background-position:-116px -15px;width:60px;height:60px}.hair_base_5_white{background-image:url(spritesmith2.png);background-position:-182px -1183px;width:90px;height:90px}.customize-option.hair_base_5_white{background-image:url(spritesmith2.png);background-position:-207px -1198px;width:60px;height:60px}.hair_base_5_winternight{background-image:url(spritesmith2.png);background-position:0 -91px;width:90px;height:90px}.customize-option.hair_base_5_winternight{background-image:url(spritesmith2.png);background-position:-25px -106px;width:60px;height:60px}.hair_base_5_winterstar{background-image:url(spritesmith2.png);background-position:-91px -91px;width:90px;height:90px}.customize-option.hair_base_5_winterstar{background-image:url(spritesmith2.png);background-position:-116px -106px;width:60px;height:60px}.hair_base_5_yellow{background-image:url(spritesmith2.png);background-position:-182px 0;width:90px;height:90px}.customize-option.hair_base_5_yellow{background-image:url(spritesmith2.png);background-position:-207px -15px;width:60px;height:60px}.hair_base_5_zombie{background-image:url(spritesmith2.png);background-position:-182px -91px;width:90px;height:90px}.customize-option.hair_base_5_zombie{background-image:url(spritesmith2.png);background-position:-207px -106px;width:60px;height:60px}.hair_base_6_TRUred{background-image:url(spritesmith2.png);background-position:0 -182px;width:90px;height:90px}.customize-option.hair_base_6_TRUred{background-image:url(spritesmith2.png);background-position:-25px -197px;width:60px;height:60px}.hair_base_6_aurora{background-image:url(spritesmith2.png);background-position:-91px -182px;width:90px;height:90px}.customize-option.hair_base_6_aurora{background-image:url(spritesmith2.png);background-position:-116px -197px;width:60px;height:60px}.hair_base_6_black{background-image:url(spritesmith2.png);background-position:-182px -182px;width:90px;height:90px}.customize-option.hair_base_6_black{background-image:url(spritesmith2.png);background-position:-207px -197px;width:60px;height:60px}.hair_base_6_blond{background-image:url(spritesmith2.png);background-position:-273px 0;width:90px;height:90px}.customize-option.hair_base_6_blond{background-image:url(spritesmith2.png);background-position:-298px -15px;width:60px;height:60px}.hair_base_6_blue{background-image:url(spritesmith2.png);background-position:-273px -91px;width:90px;height:90px}.customize-option.hair_base_6_blue{background-image:url(spritesmith2.png);background-position:-298px -106px;width:60px;height:60px}.hair_base_6_brown{background-image:url(spritesmith2.png);background-position:-273px -182px;width:90px;height:90px}.customize-option.hair_base_6_brown{background-image:url(spritesmith2.png);background-position:-298px -197px;width:60px;height:60px}.hair_base_6_candycane{background-image:url(spritesmith2.png);background-position:0 -273px;width:90px;height:90px}.customize-option.hair_base_6_candycane{background-image:url(spritesmith2.png);background-position:-25px -288px;width:60px;height:60px}.hair_base_6_candycorn{background-image:url(spritesmith2.png);background-position:-91px -273px;width:90px;height:90px}.customize-option.hair_base_6_candycorn{background-image:url(spritesmith2.png);background-position:-116px -288px;width:60px;height:60px}.hair_base_6_festive{background-image:url(spritesmith2.png);background-position:-182px -273px;width:90px;height:90px}.customize-option.hair_base_6_festive{background-image:url(spritesmith2.png);background-position:-207px -288px;width:60px;height:60px}.hair_base_6_frost{background-image:url(spritesmith2.png);background-position:-273px -273px;width:90px;height:90px}.customize-option.hair_base_6_frost{background-image:url(spritesmith2.png);background-position:-298px -288px;width:60px;height:60px}.hair_base_6_ghostwhite{background-image:url(spritesmith2.png);background-position:-364px 0;width:90px;height:90px}.customize-option.hair_base_6_ghostwhite{background-image:url(spritesmith2.png);background-position:-389px -15px;width:60px;height:60px}.hair_base_6_green{background-image:url(spritesmith2.png);background-position:-364px -91px;width:90px;height:90px}.customize-option.hair_base_6_green{background-image:url(spritesmith2.png);background-position:-389px -106px;width:60px;height:60px}.hair_base_6_halloween{background-image:url(spritesmith2.png);background-position:-364px -182px;width:90px;height:90px}.customize-option.hair_base_6_halloween{background-image:url(spritesmith2.png);background-position:-389px -197px;width:60px;height:60px}.hair_base_6_holly{background-image:url(spritesmith2.png);background-position:-364px -273px;width:90px;height:90px}.customize-option.hair_base_6_holly{background-image:url(spritesmith2.png);background-position:-389px -288px;width:60px;height:60px}.hair_base_6_hollygreen{background-image:url(spritesmith2.png);background-position:0 -364px;width:90px;height:90px}.customize-option.hair_base_6_hollygreen{background-image:url(spritesmith2.png);background-position:-25px -379px;width:60px;height:60px}.hair_base_6_midnight{background-image:url(spritesmith2.png);background-position:-91px -364px;width:90px;height:90px}.customize-option.hair_base_6_midnight{background-image:url(spritesmith2.png);background-position:-116px -379px;width:60px;height:60px}.hair_base_6_pblue{background-image:url(spritesmith2.png);background-position:-182px -364px;width:90px;height:90px}.customize-option.hair_base_6_pblue{background-image:url(spritesmith2.png);background-position:-207px -379px;width:60px;height:60px}.hair_base_6_pblue2{background-image:url(spritesmith2.png);background-position:-273px -364px;width:90px;height:90px}.customize-option.hair_base_6_pblue2{background-image:url(spritesmith2.png);background-position:-298px -379px;width:60px;height:60px}.hair_base_6_peppermint{background-image:url(spritesmith2.png);background-position:-364px -364px;width:90px;height:90px}.customize-option.hair_base_6_peppermint{background-image:url(spritesmith2.png);background-position:-389px -379px;width:60px;height:60px}.hair_base_6_pgreen{background-image:url(spritesmith2.png);background-position:-455px 0;width:90px;height:90px}.customize-option.hair_base_6_pgreen{background-image:url(spritesmith2.png);background-position:-480px -15px;width:60px;height:60px}.hair_base_6_pgreen2{background-image:url(spritesmith2.png);background-position:-455px -91px;width:90px;height:90px}.customize-option.hair_base_6_pgreen2{background-image:url(spritesmith2.png);background-position:-480px -106px;width:60px;height:60px}.hair_base_6_porange{background-image:url(spritesmith2.png);background-position:-455px -182px;width:90px;height:90px}.customize-option.hair_base_6_porange{background-image:url(spritesmith2.png);background-position:-480px -197px;width:60px;height:60px}.hair_base_6_porange2{background-image:url(spritesmith2.png);background-position:-455px -273px;width:90px;height:90px}.customize-option.hair_base_6_porange2{background-image:url(spritesmith2.png);background-position:-480px -288px;width:60px;height:60px}.hair_base_6_ppink{background-image:url(spritesmith2.png);background-position:-455px -364px;width:90px;height:90px}.customize-option.hair_base_6_ppink{background-image:url(spritesmith2.png);background-position:-480px -379px;width:60px;height:60px}.hair_base_6_ppink2{background-image:url(spritesmith2.png);background-position:0 -455px;width:90px;height:90px}.customize-option.hair_base_6_ppink2{background-image:url(spritesmith2.png);background-position:-25px -470px;width:60px;height:60px}.hair_base_6_ppurple{background-image:url(spritesmith2.png);background-position:-91px -455px;width:90px;height:90px}.customize-option.hair_base_6_ppurple{background-image:url(spritesmith2.png);background-position:-116px -470px;width:60px;height:60px}.hair_base_6_ppurple2{background-image:url(spritesmith2.png);background-position:-182px -455px;width:90px;height:90px}.customize-option.hair_base_6_ppurple2{background-image:url(spritesmith2.png);background-position:-207px -470px;width:60px;height:60px}.hair_base_6_pumpkin{background-image:url(spritesmith2.png);background-position:-273px -455px;width:90px;height:90px}.customize-option.hair_base_6_pumpkin{background-image:url(spritesmith2.png);background-position:-298px -470px;width:60px;height:60px}.hair_base_6_purple{background-image:url(spritesmith2.png);background-position:-364px -455px;width:90px;height:90px}.customize-option.hair_base_6_purple{background-image:url(spritesmith2.png);background-position:-389px -470px;width:60px;height:60px}.hair_base_6_pyellow{background-image:url(spritesmith2.png);background-position:-455px -455px;width:90px;height:90px}.customize-option.hair_base_6_pyellow{background-image:url(spritesmith2.png);background-position:-480px -470px;width:60px;height:60px}.hair_base_6_pyellow2{background-image:url(spritesmith2.png);background-position:-546px 0;width:90px;height:90px}.customize-option.hair_base_6_pyellow2{background-image:url(spritesmith2.png);background-position:-571px -15px;width:60px;height:60px}.hair_base_6_rainbow{background-image:url(spritesmith2.png);background-position:-546px -91px;width:90px;height:90px}.customize-option.hair_base_6_rainbow{background-image:url(spritesmith2.png);background-position:-571px -106px;width:60px;height:60px}.hair_base_6_red{background-image:url(spritesmith2.png);background-position:-546px -182px;width:90px;height:90px}.customize-option.hair_base_6_red{background-image:url(spritesmith2.png);background-position:-571px -197px;width:60px;height:60px}.hair_base_6_snowy{background-image:url(spritesmith2.png);background-position:-546px -273px;width:90px;height:90px}.customize-option.hair_base_6_snowy{background-image:url(spritesmith2.png);background-position:-571px -288px;width:60px;height:60px}.hair_base_6_white{background-image:url(spritesmith2.png);background-position:-546px -364px;width:90px;height:90px}.customize-option.hair_base_6_white{background-image:url(spritesmith2.png);background-position:-571px -379px;width:60px;height:60px}.hair_base_6_winternight{background-image:url(spritesmith2.png);background-position:-546px -455px;width:90px;height:90px}.customize-option.hair_base_6_winternight{background-image:url(spritesmith2.png);background-position:-571px -470px;width:60px;height:60px}.hair_base_6_winterstar{background-image:url(spritesmith2.png);background-position:0 -546px;width:90px;height:90px}.customize-option.hair_base_6_winterstar{background-image:url(spritesmith2.png);background-position:-25px -561px;width:60px;height:60px}.hair_base_6_yellow{background-image:url(spritesmith2.png);background-position:-91px -546px;width:90px;height:90px}.customize-option.hair_base_6_yellow{background-image:url(spritesmith2.png);background-position:-116px -561px;width:60px;height:60px}.hair_base_6_zombie{background-image:url(spritesmith2.png);background-position:-182px -546px;width:90px;height:90px}.customize-option.hair_base_6_zombie{background-image:url(spritesmith2.png);background-position:-207px -561px;width:60px;height:60px}.hair_base_7_TRUred{background-image:url(spritesmith2.png);background-position:-273px -546px;width:90px;height:90px}.customize-option.hair_base_7_TRUred{background-image:url(spritesmith2.png);background-position:-298px -561px;width:60px;height:60px}.hair_base_7_aurora{background-image:url(spritesmith2.png);background-position:-364px -546px;width:90px;height:90px}.customize-option.hair_base_7_aurora{background-image:url(spritesmith2.png);background-position:-389px -561px;width:60px;height:60px}.hair_base_7_black{background-image:url(spritesmith2.png);background-position:-455px -546px;width:90px;height:90px}.customize-option.hair_base_7_black{background-image:url(spritesmith2.png);background-position:-480px -561px;width:60px;height:60px}.hair_base_7_blond{background-image:url(spritesmith2.png);background-position:-546px -546px;width:90px;height:90px}.customize-option.hair_base_7_blond{background-image:url(spritesmith2.png);background-position:-571px -561px;width:60px;height:60px}.hair_base_7_blue{background-image:url(spritesmith2.png);background-position:-637px 0;width:90px;height:90px}.customize-option.hair_base_7_blue{background-image:url(spritesmith2.png);background-position:-662px -15px;width:60px;height:60px}.hair_base_7_brown{background-image:url(spritesmith2.png);background-position:-637px -91px;width:90px;height:90px}.customize-option.hair_base_7_brown{background-image:url(spritesmith2.png);background-position:-662px -106px;width:60px;height:60px}.hair_base_7_candycane{background-image:url(spritesmith2.png);background-position:-637px -182px;width:90px;height:90px}.customize-option.hair_base_7_candycane{background-image:url(spritesmith2.png);background-position:-662px -197px;width:60px;height:60px}.hair_base_7_candycorn{background-image:url(spritesmith2.png);background-position:-637px -273px;width:90px;height:90px}.customize-option.hair_base_7_candycorn{background-image:url(spritesmith2.png);background-position:-662px -288px;width:60px;height:60px}.hair_base_7_festive{background-image:url(spritesmith2.png);background-position:-637px -364px;width:90px;height:90px}.customize-option.hair_base_7_festive{background-image:url(spritesmith2.png);background-position:-662px -379px;width:60px;height:60px}.hair_base_7_frost{background-image:url(spritesmith2.png);background-position:-637px -455px;width:90px;height:90px}.customize-option.hair_base_7_frost{background-image:url(spritesmith2.png);background-position:-662px -470px;width:60px;height:60px}.hair_base_7_ghostwhite{background-image:url(spritesmith2.png);background-position:-637px -546px;width:90px;height:90px}.customize-option.hair_base_7_ghostwhite{background-image:url(spritesmith2.png);background-position:-662px -561px;width:60px;height:60px}.hair_base_7_green{background-image:url(spritesmith2.png);background-position:0 -637px;width:90px;height:90px}.customize-option.hair_base_7_green{background-image:url(spritesmith2.png);background-position:-25px -652px;width:60px;height:60px}.hair_base_7_halloween{background-image:url(spritesmith2.png);background-position:-91px -637px;width:90px;height:90px}.customize-option.hair_base_7_halloween{background-image:url(spritesmith2.png);background-position:-116px -652px;width:60px;height:60px}.hair_base_7_holly{background-image:url(spritesmith2.png);background-position:-182px -637px;width:90px;height:90px}.customize-option.hair_base_7_holly{background-image:url(spritesmith2.png);background-position:-207px -652px;width:60px;height:60px}.hair_base_7_hollygreen{background-image:url(spritesmith2.png);background-position:-273px -637px;width:90px;height:90px}.customize-option.hair_base_7_hollygreen{background-image:url(spritesmith2.png);background-position:-298px -652px;width:60px;height:60px}.hair_base_7_midnight{background-image:url(spritesmith2.png);background-position:-364px -637px;width:90px;height:90px}.customize-option.hair_base_7_midnight{background-image:url(spritesmith2.png);background-position:-389px -652px;width:60px;height:60px}.hair_base_7_pblue{background-image:url(spritesmith2.png);background-position:-455px -637px;width:90px;height:90px}.customize-option.hair_base_7_pblue{background-image:url(spritesmith2.png);background-position:-480px -652px;width:60px;height:60px}.hair_base_7_pblue2{background-image:url(spritesmith2.png);background-position:-546px -637px;width:90px;height:90px}.customize-option.hair_base_7_pblue2{background-image:url(spritesmith2.png);background-position:-571px -652px;width:60px;height:60px}.hair_base_7_peppermint{background-image:url(spritesmith2.png);background-position:-637px -637px;width:90px;height:90px}.customize-option.hair_base_7_peppermint{background-image:url(spritesmith2.png);background-position:-662px -652px;width:60px;height:60px}.hair_base_7_pgreen{background-image:url(spritesmith2.png);background-position:-728px 0;width:90px;height:90px}.customize-option.hair_base_7_pgreen{background-image:url(spritesmith2.png);background-position:-753px -15px;width:60px;height:60px}.hair_base_7_pgreen2{background-image:url(spritesmith2.png);background-position:-728px -91px;width:90px;height:90px}.customize-option.hair_base_7_pgreen2{background-image:url(spritesmith2.png);background-position:-753px -106px;width:60px;height:60px}.hair_base_7_porange{background-image:url(spritesmith2.png);background-position:-728px -182px;width:90px;height:90px}.customize-option.hair_base_7_porange{background-image:url(spritesmith2.png);background-position:-753px -197px;width:60px;height:60px}.hair_base_7_porange2{background-image:url(spritesmith2.png);background-position:-728px -273px;width:90px;height:90px}.customize-option.hair_base_7_porange2{background-image:url(spritesmith2.png);background-position:-753px -288px;width:60px;height:60px}.hair_base_7_ppink{background-image:url(spritesmith2.png);background-position:-728px -364px;width:90px;height:90px}.customize-option.hair_base_7_ppink{background-image:url(spritesmith2.png);background-position:-753px -379px;width:60px;height:60px}.hair_base_7_ppink2{background-image:url(spritesmith2.png);background-position:-728px -455px;width:90px;height:90px}.customize-option.hair_base_7_ppink2{background-image:url(spritesmith2.png);background-position:-753px -470px;width:60px;height:60px}.hair_base_7_ppurple{background-image:url(spritesmith2.png);background-position:-728px -546px;width:90px;height:90px}.customize-option.hair_base_7_ppurple{background-image:url(spritesmith2.png);background-position:-753px -561px;width:60px;height:60px}.hair_base_7_ppurple2{background-image:url(spritesmith2.png);background-position:-728px -637px;width:90px;height:90px}.customize-option.hair_base_7_ppurple2{background-image:url(spritesmith2.png);background-position:-753px -652px;width:60px;height:60px}.hair_base_7_pumpkin{background-image:url(spritesmith2.png);background-position:0 -728px;width:90px;height:90px}.customize-option.hair_base_7_pumpkin{background-image:url(spritesmith2.png);background-position:-25px -743px;width:60px;height:60px}.hair_base_7_purple{background-image:url(spritesmith2.png);background-position:-91px -728px;width:90px;height:90px}.customize-option.hair_base_7_purple{background-image:url(spritesmith2.png);background-position:-116px -743px;width:60px;height:60px}.hair_base_7_pyellow{background-image:url(spritesmith2.png);background-position:-182px -728px;width:90px;height:90px}.customize-option.hair_base_7_pyellow{background-image:url(spritesmith2.png);background-position:-207px -743px;width:60px;height:60px}.hair_base_7_pyellow2{background-image:url(spritesmith2.png);background-position:-273px -728px;width:90px;height:90px}.customize-option.hair_base_7_pyellow2{background-image:url(spritesmith2.png);background-position:-298px -743px;width:60px;height:60px}.hair_base_7_rainbow{background-image:url(spritesmith2.png);background-position:-364px -728px;width:90px;height:90px}.customize-option.hair_base_7_rainbow{background-image:url(spritesmith2.png);background-position:-389px -743px;width:60px;height:60px}.hair_base_7_red{background-image:url(spritesmith2.png);background-position:-455px -728px;width:90px;height:90px}.customize-option.hair_base_7_red{background-image:url(spritesmith2.png);background-position:-480px -743px;width:60px;height:60px}.hair_base_7_snowy{background-image:url(spritesmith2.png);background-position:-546px -728px;width:90px;height:90px}.customize-option.hair_base_7_snowy{background-image:url(spritesmith2.png);background-position:-571px -743px;width:60px;height:60px}.hair_base_7_white{background-image:url(spritesmith2.png);background-position:-637px -728px;width:90px;height:90px}.customize-option.hair_base_7_white{background-image:url(spritesmith2.png);background-position:-662px -743px;width:60px;height:60px}.hair_base_7_winternight{background-image:url(spritesmith2.png);background-position:-728px -728px;width:90px;height:90px}.customize-option.hair_base_7_winternight{background-image:url(spritesmith2.png);background-position:-753px -743px;width:60px;height:60px}.hair_base_7_winterstar{background-image:url(spritesmith2.png);background-position:-819px 0;width:90px;height:90px}.customize-option.hair_base_7_winterstar{background-image:url(spritesmith2.png);background-position:-844px -15px;width:60px;height:60px}.hair_base_7_yellow{background-image:url(spritesmith2.png);background-position:-819px -91px;width:90px;height:90px}.customize-option.hair_base_7_yellow{background-image:url(spritesmith2.png);background-position:-844px -106px;width:60px;height:60px}.hair_base_7_zombie{background-image:url(spritesmith2.png);background-position:-819px -182px;width:90px;height:90px}.customize-option.hair_base_7_zombie{background-image:url(spritesmith2.png);background-position:-844px -197px;width:60px;height:60px}.hair_base_8_TRUred{background-image:url(spritesmith2.png);background-position:-819px -273px;width:90px;height:90px}.customize-option.hair_base_8_TRUred{background-image:url(spritesmith2.png);background-position:-844px -288px;width:60px;height:60px}.hair_base_8_aurora{background-image:url(spritesmith2.png);background-position:-819px -364px;width:90px;height:90px}.customize-option.hair_base_8_aurora{background-image:url(spritesmith2.png);background-position:-844px -379px;width:60px;height:60px}.hair_base_8_black{background-image:url(spritesmith2.png);background-position:-819px -455px;width:90px;height:90px}.customize-option.hair_base_8_black{background-image:url(spritesmith2.png);background-position:-844px -470px;width:60px;height:60px}.hair_base_8_blond{background-image:url(spritesmith2.png);background-position:-819px -546px;width:90px;height:90px}.customize-option.hair_base_8_blond{background-image:url(spritesmith2.png);background-position:-844px -561px;width:60px;height:60px}.hair_base_8_blue{background-image:url(spritesmith2.png);background-position:-819px -637px;width:90px;height:90px}.customize-option.hair_base_8_blue{background-image:url(spritesmith2.png);background-position:-844px -652px;width:60px;height:60px}.hair_base_8_brown{background-image:url(spritesmith2.png);background-position:-819px -728px;width:90px;height:90px}.customize-option.hair_base_8_brown{background-image:url(spritesmith2.png);background-position:-844px -743px;width:60px;height:60px}.hair_base_8_candycane{background-image:url(spritesmith2.png);background-position:0 -819px;width:90px;height:90px}.customize-option.hair_base_8_candycane{background-image:url(spritesmith2.png);background-position:-25px -834px;width:60px;height:60px}.hair_base_8_candycorn{background-image:url(spritesmith2.png);background-position:-91px -819px;width:90px;height:90px}.customize-option.hair_base_8_candycorn{background-image:url(spritesmith2.png);background-position:-116px -834px;width:60px;height:60px}.hair_base_8_festive{background-image:url(spritesmith2.png);background-position:-182px -819px;width:90px;height:90px}.customize-option.hair_base_8_festive{background-image:url(spritesmith2.png);background-position:-207px -834px;width:60px;height:60px}.hair_base_8_frost{background-image:url(spritesmith2.png);background-position:-273px -819px;width:90px;height:90px}.customize-option.hair_base_8_frost{background-image:url(spritesmith2.png);background-position:-298px -834px;width:60px;height:60px}.hair_base_8_ghostwhite{background-image:url(spritesmith2.png);background-position:-364px -819px;width:90px;height:90px}.customize-option.hair_base_8_ghostwhite{background-image:url(spritesmith2.png);background-position:-389px -834px;width:60px;height:60px}.hair_base_8_green{background-image:url(spritesmith2.png);background-position:-455px -819px;width:90px;height:90px}.customize-option.hair_base_8_green{background-image:url(spritesmith2.png);background-position:-480px -834px;width:60px;height:60px}.hair_base_8_halloween{background-image:url(spritesmith2.png);background-position:-546px -819px;width:90px;height:90px}.customize-option.hair_base_8_halloween{background-image:url(spritesmith2.png);background-position:-571px -834px;width:60px;height:60px}.hair_base_8_holly{background-image:url(spritesmith2.png);background-position:-637px -819px;width:90px;height:90px}.customize-option.hair_base_8_holly{background-image:url(spritesmith2.png);background-position:-662px -834px;width:60px;height:60px}.hair_base_8_hollygreen{background-image:url(spritesmith2.png);background-position:-728px -819px;width:90px;height:90px}.customize-option.hair_base_8_hollygreen{background-image:url(spritesmith2.png);background-position:-753px -834px;width:60px;height:60px}.hair_base_8_midnight{background-image:url(spritesmith2.png);background-position:-819px -819px;width:90px;height:90px}.customize-option.hair_base_8_midnight{background-image:url(spritesmith2.png);background-position:-844px -834px;width:60px;height:60px}.hair_base_8_pblue{background-image:url(spritesmith2.png);background-position:-910px 0;width:90px;height:90px}.customize-option.hair_base_8_pblue{background-image:url(spritesmith2.png);background-position:-935px -15px;width:60px;height:60px}.hair_base_8_pblue2{background-image:url(spritesmith2.png);background-position:-910px -91px;width:90px;height:90px}.customize-option.hair_base_8_pblue2{background-image:url(spritesmith2.png);background-position:-935px -106px;width:60px;height:60px}.hair_base_8_peppermint{background-image:url(spritesmith2.png);background-position:-910px -182px;width:90px;height:90px}.customize-option.hair_base_8_peppermint{background-image:url(spritesmith2.png);background-position:-935px -197px;width:60px;height:60px}.hair_base_8_pgreen{background-image:url(spritesmith2.png);background-position:-910px -273px;width:90px;height:90px}.customize-option.hair_base_8_pgreen{background-image:url(spritesmith2.png);background-position:-935px -288px;width:60px;height:60px}.hair_base_8_pgreen2{background-image:url(spritesmith2.png);background-position:-910px -364px;width:90px;height:90px}.customize-option.hair_base_8_pgreen2{background-image:url(spritesmith2.png);background-position:-935px -379px;width:60px;height:60px}.hair_base_8_porange{background-image:url(spritesmith2.png);background-position:-910px -455px;width:90px;height:90px}.customize-option.hair_base_8_porange{background-image:url(spritesmith2.png);background-position:-935px -470px;width:60px;height:60px}.hair_base_8_porange2{background-image:url(spritesmith2.png);background-position:-910px -546px;width:90px;height:90px}.customize-option.hair_base_8_porange2{background-image:url(spritesmith2.png);background-position:-935px -561px;width:60px;height:60px}.hair_base_8_ppink{background-image:url(spritesmith2.png);background-position:-910px -637px;width:90px;height:90px}.customize-option.hair_base_8_ppink{background-image:url(spritesmith2.png);background-position:-935px -652px;width:60px;height:60px}.hair_base_8_ppink2{background-image:url(spritesmith2.png);background-position:-910px -728px;width:90px;height:90px}.customize-option.hair_base_8_ppink2{background-image:url(spritesmith2.png);background-position:-935px -743px;width:60px;height:60px}.hair_base_8_ppurple{background-image:url(spritesmith2.png);background-position:-910px -819px;width:90px;height:90px}.customize-option.hair_base_8_ppurple{background-image:url(spritesmith2.png);background-position:-935px -834px;width:60px;height:60px}.hair_base_8_ppurple2{background-image:url(spritesmith2.png);background-position:0 -910px;width:90px;height:90px}.customize-option.hair_base_8_ppurple2{background-image:url(spritesmith2.png);background-position:-25px -925px;width:60px;height:60px}.hair_base_8_pumpkin{background-image:url(spritesmith2.png);background-position:-91px -910px;width:90px;height:90px}.customize-option.hair_base_8_pumpkin{background-image:url(spritesmith2.png);background-position:-116px -925px;width:60px;height:60px}.hair_base_8_purple{background-image:url(spritesmith2.png);background-position:-182px -910px;width:90px;height:90px}.customize-option.hair_base_8_purple{background-image:url(spritesmith2.png);background-position:-207px -925px;width:60px;height:60px}.hair_base_8_pyellow{background-image:url(spritesmith2.png);background-position:-273px -910px;width:90px;height:90px}.customize-option.hair_base_8_pyellow{background-image:url(spritesmith2.png);background-position:-298px -925px;width:60px;height:60px}.hair_base_8_pyellow2{background-image:url(spritesmith2.png);background-position:-364px -910px;width:90px;height:90px}.customize-option.hair_base_8_pyellow2{background-image:url(spritesmith2.png);background-position:-389px -925px;width:60px;height:60px}.hair_base_8_rainbow{background-image:url(spritesmith2.png);background-position:-455px -910px;width:90px;height:90px}.customize-option.hair_base_8_rainbow{background-image:url(spritesmith2.png);background-position:-480px -925px;width:60px;height:60px}.hair_base_8_red{background-image:url(spritesmith2.png);background-position:-546px -910px;width:90px;height:90px}.customize-option.hair_base_8_red{background-image:url(spritesmith2.png);background-position:-571px -925px;width:60px;height:60px}.hair_base_8_snowy{background-image:url(spritesmith2.png);background-position:-637px -910px;width:90px;height:90px}.customize-option.hair_base_8_snowy{background-image:url(spritesmith2.png);background-position:-662px -925px;width:60px;height:60px}.hair_base_8_white{background-image:url(spritesmith2.png);background-position:-728px -910px;width:90px;height:90px}.customize-option.hair_base_8_white{background-image:url(spritesmith2.png);background-position:-753px -925px;width:60px;height:60px}.hair_base_8_winternight{background-image:url(spritesmith2.png);background-position:-819px -910px;width:90px;height:90px}.customize-option.hair_base_8_winternight{background-image:url(spritesmith2.png);background-position:-844px -925px;width:60px;height:60px}.hair_base_8_winterstar{background-image:url(spritesmith2.png);background-position:-910px -910px;width:90px;height:90px}.customize-option.hair_base_8_winterstar{background-image:url(spritesmith2.png);background-position:-935px -925px;width:60px;height:60px}.hair_base_8_yellow{background-image:url(spritesmith2.png);background-position:-1001px 0;width:90px;height:90px}.customize-option.hair_base_8_yellow{background-image:url(spritesmith2.png);background-position:-1026px -15px;width:60px;height:60px}.hair_base_8_zombie{background-image:url(spritesmith2.png);background-position:-1001px -91px;width:90px;height:90px}.customize-option.hair_base_8_zombie{background-image:url(spritesmith2.png);background-position:-1026px -106px;width:60px;height:60px}.hair_base_9_TRUred{background-image:url(spritesmith2.png);background-position:-1001px -182px;width:90px;height:90px}.customize-option.hair_base_9_TRUred{background-image:url(spritesmith2.png);background-position:-1026px -197px;width:60px;height:60px}.hair_base_9_aurora{background-image:url(spritesmith2.png);background-position:-1001px -273px;width:90px;height:90px}.customize-option.hair_base_9_aurora{background-image:url(spritesmith2.png);background-position:-1026px -288px;width:60px;height:60px}.hair_base_9_black{background-image:url(spritesmith2.png);background-position:-1001px -364px;width:90px;height:90px}.customize-option.hair_base_9_black{background-image:url(spritesmith2.png);background-position:-1026px -379px;width:60px;height:60px}.hair_base_9_blond{background-image:url(spritesmith2.png);background-position:-1001px -455px;width:90px;height:90px}.customize-option.hair_base_9_blond{background-image:url(spritesmith2.png);background-position:-1026px -470px;width:60px;height:60px}.hair_base_9_blue{background-image:url(spritesmith2.png);background-position:-1001px -546px;width:90px;height:90px}.customize-option.hair_base_9_blue{background-image:url(spritesmith2.png);background-position:-1026px -561px;width:60px;height:60px}.hair_base_9_brown{background-image:url(spritesmith2.png);background-position:-1001px -637px;width:90px;height:90px}.customize-option.hair_base_9_brown{background-image:url(spritesmith2.png);background-position:-1026px -652px;width:60px;height:60px}.hair_base_9_candycane{background-image:url(spritesmith2.png);background-position:-1001px -728px;width:90px;height:90px}.customize-option.hair_base_9_candycane{background-image:url(spritesmith2.png);background-position:-1026px -743px;width:60px;height:60px}.hair_base_9_candycorn{background-image:url(spritesmith2.png);background-position:-1001px -819px;width:90px;height:90px}.customize-option.hair_base_9_candycorn{background-image:url(spritesmith2.png);background-position:-1026px -834px;width:60px;height:60px}.hair_base_9_festive{background-image:url(spritesmith2.png);background-position:-1001px -910px;width:90px;height:90px}.customize-option.hair_base_9_festive{background-image:url(spritesmith2.png);background-position:-1026px -925px;width:60px;height:60px}.hair_base_9_frost{background-image:url(spritesmith2.png);background-position:0 -1001px;width:90px;height:90px}.customize-option.hair_base_9_frost{background-image:url(spritesmith2.png);background-position:-25px -1016px;width:60px;height:60px}.hair_base_9_ghostwhite{background-image:url(spritesmith2.png);background-position:-91px -1001px;width:90px;height:90px}.customize-option.hair_base_9_ghostwhite{background-image:url(spritesmith2.png);background-position:-116px -1016px;width:60px;height:60px}.hair_base_9_green{background-image:url(spritesmith2.png);background-position:-182px -1001px;width:90px;height:90px}.customize-option.hair_base_9_green{background-image:url(spritesmith2.png);background-position:-207px -1016px;width:60px;height:60px}.hair_base_9_halloween{background-image:url(spritesmith2.png);background-position:-273px -1001px;width:90px;height:90px}.customize-option.hair_base_9_halloween{background-image:url(spritesmith2.png);background-position:-298px -1016px;width:60px;height:60px}.hair_base_9_holly{background-image:url(spritesmith2.png);background-position:-364px -1001px;width:90px;height:90px}.customize-option.hair_base_9_holly{background-image:url(spritesmith2.png);background-position:-389px -1016px;width:60px;height:60px}.hair_base_9_hollygreen{background-image:url(spritesmith2.png);background-position:-455px -1001px;width:90px;height:90px}.customize-option.hair_base_9_hollygreen{background-image:url(spritesmith2.png);background-position:-480px -1016px;width:60px;height:60px}.hair_base_9_midnight{background-image:url(spritesmith2.png);background-position:-546px -1001px;width:90px;height:90px}.customize-option.hair_base_9_midnight{background-image:url(spritesmith2.png);background-position:-571px -1016px;width:60px;height:60px}.hair_base_9_pblue{background-image:url(spritesmith2.png);background-position:-637px -1001px;width:90px;height:90px}.customize-option.hair_base_9_pblue{background-image:url(spritesmith2.png);background-position:-662px -1016px;width:60px;height:60px}.hair_base_9_pblue2{background-image:url(spritesmith2.png);background-position:-728px -1001px;width:90px;height:90px}.customize-option.hair_base_9_pblue2{background-image:url(spritesmith2.png);background-position:-753px -1016px;width:60px;height:60px}.hair_base_9_peppermint{background-image:url(spritesmith2.png);background-position:-819px -1001px;width:90px;height:90px}.customize-option.hair_base_9_peppermint{background-image:url(spritesmith2.png);background-position:-844px -1016px;width:60px;height:60px}.hair_base_9_pgreen{background-image:url(spritesmith2.png);background-position:-910px -1001px;width:90px;height:90px}.customize-option.hair_base_9_pgreen{background-image:url(spritesmith2.png);background-position:-935px -1016px;width:60px;height:60px}.hair_base_9_pgreen2{background-image:url(spritesmith2.png);background-position:-1001px -1001px;width:90px;height:90px}.customize-option.hair_base_9_pgreen2{background-image:url(spritesmith2.png);background-position:-1026px -1016px;width:60px;height:60px}.hair_base_9_porange{background-image:url(spritesmith2.png);background-position:-1092px 0;width:90px;height:90px}.customize-option.hair_base_9_porange{background-image:url(spritesmith2.png);background-position:-1117px -15px;width:60px;height:60px}.hair_base_9_porange2{background-image:url(spritesmith2.png);background-position:-1092px -91px;width:90px;height:90px}.customize-option.hair_base_9_porange2{background-image:url(spritesmith2.png);background-position:-1117px -106px;width:60px;height:60px}.hair_base_9_ppink{background-image:url(spritesmith2.png);background-position:-1092px -182px;width:90px;height:90px}.customize-option.hair_base_9_ppink{background-image:url(spritesmith2.png);background-position:-1117px -197px;width:60px;height:60px}.hair_base_9_ppink2{background-image:url(spritesmith2.png);background-position:-1092px -273px;width:90px;height:90px}.customize-option.hair_base_9_ppink2{background-image:url(spritesmith2.png);background-position:-1117px -288px;width:60px;height:60px}.hair_base_9_ppurple{background-image:url(spritesmith2.png);background-position:-1092px -364px;width:90px;height:90px}.customize-option.hair_base_9_ppurple{background-image:url(spritesmith2.png);background-position:-1117px -379px;width:60px;height:60px}.hair_base_9_ppurple2{background-image:url(spritesmith2.png);background-position:-1092px -455px;width:90px;height:90px}.customize-option.hair_base_9_ppurple2{background-image:url(spritesmith2.png);background-position:-1117px -470px;width:60px;height:60px}.hair_base_9_pumpkin{background-image:url(spritesmith2.png);background-position:-1092px -546px;width:90px;height:90px}.customize-option.hair_base_9_pumpkin{background-image:url(spritesmith2.png);background-position:-1117px -561px;width:60px;height:60px}.hair_base_9_purple{background-image:url(spritesmith2.png);background-position:-1092px -637px;width:90px;height:90px}.customize-option.hair_base_9_purple{background-image:url(spritesmith2.png);background-position:-1117px -652px;width:60px;height:60px}.hair_base_9_pyellow{background-image:url(spritesmith2.png);background-position:-1092px -728px;width:90px;height:90px}.customize-option.hair_base_9_pyellow{background-image:url(spritesmith2.png);background-position:-1117px -743px;width:60px;height:60px}.hair_base_9_pyellow2{background-image:url(spritesmith2.png);background-position:-1092px -819px;width:90px;height:90px}.customize-option.hair_base_9_pyellow2{background-image:url(spritesmith2.png);background-position:-1117px -834px;width:60px;height:60px}.hair_base_9_rainbow{background-image:url(spritesmith2.png);background-position:-1092px -910px;width:90px;height:90px}.customize-option.hair_base_9_rainbow{background-image:url(spritesmith2.png);background-position:-1117px -925px;width:60px;height:60px}.hair_base_9_red{background-image:url(spritesmith2.png);background-position:-1092px -1001px;width:90px;height:90px}.customize-option.hair_base_9_red{background-image:url(spritesmith2.png);background-position:-1117px -1016px;width:60px;height:60px}.hair_base_9_snowy{background-image:url(spritesmith2.png);background-position:0 -1092px;width:90px;height:90px}.customize-option.hair_base_9_snowy{background-image:url(spritesmith2.png);background-position:-25px -1107px;width:60px;height:60px}.hair_base_9_white{background-image:url(spritesmith2.png);background-position:-91px -1092px;width:90px;height:90px}.customize-option.hair_base_9_white{background-image:url(spritesmith2.png);background-position:-116px -1107px;width:60px;height:60px}.hair_base_9_winternight{background-image:url(spritesmith2.png);background-position:-182px -1092px;width:90px;height:90px}.customize-option.hair_base_9_winternight{background-image:url(spritesmith2.png);background-position:-207px -1107px;width:60px;height:60px}.hair_base_9_winterstar{background-image:url(spritesmith2.png);background-position:-273px -1092px;width:90px;height:90px}.customize-option.hair_base_9_winterstar{background-image:url(spritesmith2.png);background-position:-298px -1107px;width:60px;height:60px}.hair_base_9_yellow{background-image:url(spritesmith2.png);background-position:-364px -1092px;width:90px;height:90px}.customize-option.hair_base_9_yellow{background-image:url(spritesmith2.png);background-position:-389px -1107px;width:60px;height:60px}.hair_base_9_zombie{background-image:url(spritesmith2.png);background-position:-455px -1092px;width:90px;height:90px}.customize-option.hair_base_9_zombie{background-image:url(spritesmith2.png);background-position:-480px -1107px;width:60px;height:60px}.hair_beard_1_pblue2{background-image:url(spritesmith2.png);background-position:-546px -1092px;width:90px;height:90px}.customize-option.hair_beard_1_pblue2{background-image:url(spritesmith2.png);background-position:-571px -1107px;width:60px;height:60px}.hair_beard_1_pgreen2{background-image:url(spritesmith2.png);background-position:-637px -1092px;width:90px;height:90px}.customize-option.hair_beard_1_pgreen2{background-image:url(spritesmith2.png);background-position:-662px -1107px;width:60px;height:60px}.hair_beard_1_porange2{background-image:url(spritesmith2.png);background-position:-728px -1092px;width:90px;height:90px}.customize-option.hair_beard_1_porange2{background-image:url(spritesmith2.png);background-position:-753px -1107px;width:60px;height:60px}.hair_beard_1_ppink2{background-image:url(spritesmith2.png);background-position:-819px -1092px;width:90px;height:90px}.customize-option.hair_beard_1_ppink2{background-image:url(spritesmith2.png);background-position:-844px -1107px;width:60px;height:60px}.hair_beard_1_ppurple2{background-image:url(spritesmith2.png);background-position:-910px -1092px;width:90px;height:90px}.customize-option.hair_beard_1_ppurple2{background-image:url(spritesmith2.png);background-position:-935px -1107px;width:60px;height:60px}.hair_beard_1_pyellow2{background-image:url(spritesmith2.png);background-position:-1001px -1092px;width:90px;height:90px}.customize-option.hair_beard_1_pyellow2{background-image:url(spritesmith2.png);background-position:-1026px -1107px;width:60px;height:60px}.hair_beard_2_pblue2{background-image:url(spritesmith2.png);background-position:-1092px -1092px;width:90px;height:90px}.customize-option.hair_beard_2_pblue2{background-image:url(spritesmith2.png);background-position:-1117px -1107px;width:60px;height:60px}.hair_beard_2_pgreen2{background-image:url(spritesmith2.png);background-position:-1183px 0;width:90px;height:90px}.customize-option.hair_beard_2_pgreen2{background-image:url(spritesmith2.png);background-position:-1208px -15px;width:60px;height:60px}.hair_beard_2_porange2{background-image:url(spritesmith2.png);background-position:-1183px -91px;width:90px;height:90px}.customize-option.hair_beard_2_porange2{background-image:url(spritesmith2.png);background-position:-1208px -106px;width:60px;height:60px}.hair_beard_2_ppink2{background-image:url(spritesmith2.png);background-position:-1183px -182px;width:90px;height:90px}.customize-option.hair_beard_2_ppink2{background-image:url(spritesmith2.png);background-position:-1208px -197px;width:60px;height:60px}.hair_beard_2_ppurple2{background-image:url(spritesmith2.png);background-position:-1183px -273px;width:90px;height:90px}.customize-option.hair_beard_2_ppurple2{background-image:url(spritesmith2.png);background-position:-1208px -288px;width:60px;height:60px}.hair_beard_2_pyellow2{background-image:url(spritesmith2.png);background-position:-1183px -364px;width:90px;height:90px}.customize-option.hair_beard_2_pyellow2{background-image:url(spritesmith2.png);background-position:-1208px -379px;width:60px;height:60px}.hair_beard_3_pblue2{background-image:url(spritesmith2.png);background-position:-1183px -455px;width:90px;height:90px}.customize-option.hair_beard_3_pblue2{background-image:url(spritesmith2.png);background-position:-1208px -470px;width:60px;height:60px}.hair_beard_3_pgreen2{background-image:url(spritesmith2.png);background-position:-1183px -546px;width:90px;height:90px}.customize-option.hair_beard_3_pgreen2{background-image:url(spritesmith2.png);background-position:-1208px -561px;width:60px;height:60px}.hair_beard_3_porange2{background-image:url(spritesmith2.png);background-position:-1183px -637px;width:90px;height:90px}.customize-option.hair_beard_3_porange2{background-image:url(spritesmith2.png);background-position:-1208px -652px;width:60px;height:60px}.hair_beard_3_ppink2{background-image:url(spritesmith2.png);background-position:-1183px -728px;width:90px;height:90px}.customize-option.hair_beard_3_ppink2{background-image:url(spritesmith2.png);background-position:-1208px -743px;width:60px;height:60px}.hair_beard_3_ppurple2{background-image:url(spritesmith2.png);background-position:-1183px -819px;width:90px;height:90px}.customize-option.hair_beard_3_ppurple2{background-image:url(spritesmith2.png);background-position:-1208px -834px;width:60px;height:60px}.hair_beard_3_pyellow2{background-image:url(spritesmith2.png);background-position:-1183px -910px;width:90px;height:90px}.customize-option.hair_beard_3_pyellow2{background-image:url(spritesmith2.png);background-position:-1208px -925px;width:60px;height:60px}.hair_mustache_1_pblue2{background-image:url(spritesmith2.png);background-position:-1183px -1001px;width:90px;height:90px}.customize-option.hair_mustache_1_pblue2{background-image:url(spritesmith2.png);background-position:-1208px -1016px;width:60px;height:60px}.hair_mustache_1_pgreen2{background-image:url(spritesmith2.png);background-position:-1183px -1092px;width:90px;height:90px}.customize-option.hair_mustache_1_pgreen2{background-image:url(spritesmith2.png);background-position:-1208px -1107px;width:60px;height:60px}.hair_mustache_1_porange2{background-image:url(spritesmith2.png);background-position:0 -1183px;width:90px;height:90px}.customize-option.hair_mustache_1_porange2{background-image:url(spritesmith2.png);background-position:-25px -1198px;width:60px;height:60px}.hair_mustache_1_ppink2{background-image:url(spritesmith2.png);background-position:-91px -1183px;width:90px;height:90px}.customize-option.hair_mustache_1_ppink2{background-image:url(spritesmith2.png);background-position:-116px -1198px;width:60px;height:60px}.hair_mustache_1_ppurple2{background-image:url(spritesmith2.png);background-position:0 0;width:90px;height:90px}.customize-option.hair_mustache_1_ppurple2{background-image:url(spritesmith2.png);background-position:-25px -15px;width:60px;height:60px}.hair_mustache_1_pyellow2{background-image:url(spritesmith2.png);background-position:-273px -1183px;width:90px;height:90px}.customize-option.hair_mustache_1_pyellow2{background-image:url(spritesmith2.png);background-position:-298px -1198px;width:60px;height:60px}.hair_mustache_2_pblue2{background-image:url(spritesmith2.png);background-position:-364px -1183px;width:90px;height:90px}.customize-option.hair_mustache_2_pblue2{background-image:url(spritesmith2.png);background-position:-389px -1198px;width:60px;height:60px}.hair_mustache_2_pgreen2{background-image:url(spritesmith2.png);background-position:-455px -1183px;width:90px;height:90px}.customize-option.hair_mustache_2_pgreen2{background-image:url(spritesmith2.png);background-position:-480px -1198px;width:60px;height:60px}.hair_mustache_2_porange2{background-image:url(spritesmith2.png);background-position:-546px -1183px;width:90px;height:90px}.customize-option.hair_mustache_2_porange2{background-image:url(spritesmith2.png);background-position:-571px -1198px;width:60px;height:60px}.hair_mustache_2_ppink2{background-image:url(spritesmith2.png);background-position:-637px -1183px;width:90px;height:90px}.customize-option.hair_mustache_2_ppink2{background-image:url(spritesmith2.png);background-position:-662px -1198px;width:60px;height:60px}.hair_mustache_2_ppurple2{background-image:url(spritesmith2.png);background-position:-728px -1183px;width:90px;height:90px}.customize-option.hair_mustache_2_ppurple2{background-image:url(spritesmith2.png);background-position:-753px -1198px;width:60px;height:60px}.hair_mustache_2_pyellow2{background-image:url(spritesmith2.png);background-position:-819px -1183px;width:90px;height:90px}.customize-option.hair_mustache_2_pyellow2{background-image:url(spritesmith2.png);background-position:-844px -1198px;width:60px;height:60px}.broad_shirt_black{background-image:url(spritesmith2.png);background-position:-910px -1183px;width:90px;height:90px}.customize-option.broad_shirt_black{background-image:url(spritesmith2.png);background-position:-935px -1213px;width:60px;height:60px}.broad_shirt_blue{background-image:url(spritesmith2.png);background-position:-1001px -1183px;width:90px;height:90px}.customize-option.broad_shirt_blue{background-image:url(spritesmith2.png);background-position:-1026px -1213px;width:60px;height:60px}.broad_shirt_convict{background-image:url(spritesmith2.png);background-position:-1092px -1183px;width:90px;height:90px}.customize-option.broad_shirt_convict{background-image:url(spritesmith2.png);background-position:-1117px -1213px;width:60px;height:60px}.broad_shirt_cross{background-image:url(spritesmith2.png);background-position:-1183px -1183px;width:90px;height:90px}.customize-option.broad_shirt_cross{background-image:url(spritesmith2.png);background-position:-1208px -1213px;width:60px;height:60px}.broad_shirt_fire{background-image:url(spritesmith2.png);background-position:-1274px 0;width:90px;height:90px}.customize-option.broad_shirt_fire{background-image:url(spritesmith2.png);background-position:-1299px -30px;width:60px;height:60px}.broad_shirt_green{background-image:url(spritesmith2.png);background-position:-1274px -91px;width:90px;height:90px}.customize-option.broad_shirt_green{background-image:url(spritesmith2.png);background-position:-1299px -121px;width:60px;height:60px}.broad_shirt_horizon{background-image:url(spritesmith2.png);background-position:-1274px -182px;width:90px;height:90px}.customize-option.broad_shirt_horizon{background-image:url(spritesmith2.png);background-position:-1299px -212px;width:60px;height:60px}.broad_shirt_ocean{background-image:url(spritesmith2.png);background-position:-1274px -273px;width:90px;height:90px}.customize-option.broad_shirt_ocean{background-image:url(spritesmith2.png);background-position:-1299px -303px;width:60px;height:60px}.broad_shirt_pink{background-image:url(spritesmith2.png);background-position:-1274px -364px;width:90px;height:90px}.customize-option.broad_shirt_pink{background-image:url(spritesmith2.png);background-position:-1299px -394px;width:60px;height:60px}.broad_shirt_purple{background-image:url(spritesmith2.png);background-position:-1274px -455px;width:90px;height:90px}.customize-option.broad_shirt_purple{background-image:url(spritesmith2.png);background-position:-1299px -485px;width:60px;height:60px}.broad_shirt_rainbow{background-image:url(spritesmith2.png);background-position:-1274px -546px;width:90px;height:90px}.customize-option.broad_shirt_rainbow{background-image:url(spritesmith2.png);background-position:-1299px -576px;width:60px;height:60px}.broad_shirt_redblue{background-image:url(spritesmith2.png);background-position:-1274px -637px;width:90px;height:90px}.customize-option.broad_shirt_redblue{background-image:url(spritesmith2.png);background-position:-1299px -667px;width:60px;height:60px}.broad_shirt_thunder{background-image:url(spritesmith2.png);background-position:-1274px -728px;width:90px;height:90px}.customize-option.broad_shirt_thunder{background-image:url(spritesmith2.png);background-position:-1299px -758px;width:60px;height:60px}.broad_shirt_tropical{background-image:url(spritesmith2.png);background-position:-1274px -819px;width:90px;height:90px}.customize-option.broad_shirt_tropical{background-image:url(spritesmith2.png);background-position:-1299px -849px;width:60px;height:60px}.broad_shirt_white{background-image:url(spritesmith2.png);background-position:-1274px -910px;width:90px;height:90px}.customize-option.broad_shirt_white{background-image:url(spritesmith2.png);background-position:-1299px -940px;width:60px;height:60px}.broad_shirt_yellow{background-image:url(spritesmith2.png);background-position:-1274px -1001px;width:90px;height:90px}.customize-option.broad_shirt_yellow{background-image:url(spritesmith2.png);background-position:-1299px -1031px;width:60px;height:60px}.broad_shirt_zombie{background-image:url(spritesmith2.png);background-position:-1274px -1092px;width:90px;height:90px}.customize-option.broad_shirt_zombie{background-image:url(spritesmith2.png);background-position:-1299px -1122px;width:60px;height:60px}.slim_shirt_black{background-image:url(spritesmith2.png);background-position:-1274px -1183px;width:90px;height:90px}.customize-option.slim_shirt_black{background-image:url(spritesmith2.png);background-position:-1299px -1213px;width:60px;height:60px}.slim_shirt_blue{background-image:url(spritesmith2.png);background-position:0 -1274px;width:90px;height:90px}.customize-option.slim_shirt_blue{background-image:url(spritesmith2.png);background-position:-25px -1304px;width:60px;height:60px}.slim_shirt_convict{background-image:url(spritesmith2.png);background-position:-91px -1274px;width:90px;height:90px}.customize-option.slim_shirt_convict{background-image:url(spritesmith2.png);background-position:-116px -1304px;width:60px;height:60px}.slim_shirt_cross{background-image:url(spritesmith2.png);background-position:-182px -1274px;width:90px;height:90px}.customize-option.slim_shirt_cross{background-image:url(spritesmith2.png);background-position:-207px -1304px;width:60px;height:60px}.slim_shirt_fire{background-image:url(spritesmith2.png);background-position:-273px -1274px;width:90px;height:90px}.customize-option.slim_shirt_fire{background-image:url(spritesmith2.png);background-position:-298px -1304px;width:60px;height:60px}.slim_shirt_green{background-image:url(spritesmith2.png);background-position:-364px -1274px;width:90px;height:90px}.customize-option.slim_shirt_green{background-image:url(spritesmith2.png);background-position:-389px -1304px;width:60px;height:60px}.slim_shirt_horizon{background-image:url(spritesmith2.png);background-position:-455px -1274px;width:90px;height:90px}.customize-option.slim_shirt_horizon{background-image:url(spritesmith2.png);background-position:-480px -1304px;width:60px;height:60px}.slim_shirt_ocean{background-image:url(spritesmith2.png);background-position:-546px -1274px;width:90px;height:90px}.customize-option.slim_shirt_ocean{background-image:url(spritesmith2.png);background-position:-571px -1304px;width:60px;height:60px}.slim_shirt_pink{background-image:url(spritesmith2.png);background-position:-637px -1274px;width:90px;height:90px}.customize-option.slim_shirt_pink{background-image:url(spritesmith2.png);background-position:-662px -1304px;width:60px;height:60px}.slim_shirt_purple{background-image:url(spritesmith2.png);background-position:-728px -1274px;width:90px;height:90px}.customize-option.slim_shirt_purple{background-image:url(spritesmith2.png);background-position:-753px -1304px;width:60px;height:60px}.slim_shirt_rainbow{background-image:url(spritesmith2.png);background-position:-819px -1274px;width:90px;height:90px}.customize-option.slim_shirt_rainbow{background-image:url(spritesmith2.png);background-position:-844px -1304px;width:60px;height:60px}.slim_shirt_redblue{background-image:url(spritesmith2.png);background-position:-910px -1274px;width:90px;height:90px}.customize-option.slim_shirt_redblue{background-image:url(spritesmith2.png);background-position:-935px -1304px;width:60px;height:60px}.slim_shirt_thunder{background-image:url(spritesmith2.png);background-position:-1001px -1274px;width:90px;height:90px}.customize-option.slim_shirt_thunder{background-image:url(spritesmith2.png);background-position:-1026px -1304px;width:60px;height:60px}.slim_shirt_tropical{background-image:url(spritesmith2.png);background-position:-1092px -1274px;width:90px;height:90px}.customize-option.slim_shirt_tropical{background-image:url(spritesmith2.png);background-position:-1117px -1304px;width:60px;height:60px}.slim_shirt_white{background-image:url(spritesmith2.png);background-position:-1183px -1274px;width:90px;height:90px}.customize-option.slim_shirt_white{background-image:url(spritesmith2.png);background-position:-1208px -1304px;width:60px;height:60px}.slim_shirt_yellow{background-image:url(spritesmith2.png);background-position:-1274px -1274px;width:90px;height:90px}.customize-option.slim_shirt_yellow{background-image:url(spritesmith2.png);background-position:-1299px -1304px;width:60px;height:60px}.slim_shirt_zombie{background-image:url(spritesmith2.png);background-position:-1365px 0;width:90px;height:90px}.customize-option.slim_shirt_zombie{background-image:url(spritesmith2.png);background-position:-1390px -30px;width:60px;height:60px}.skin_0ff591{background-image:url(spritesmith2.png);background-position:-1365px -91px;width:90px;height:90px}.customize-option.skin_0ff591{background-image:url(spritesmith2.png);background-position:-1390px -106px;width:60px;height:60px}.skin_0ff591_sleep{background-image:url(spritesmith2.png);background-position:-1365px -182px;width:90px;height:90px}.customize-option.skin_0ff591_sleep{background-image:url(spritesmith2.png);background-position:-1390px -197px;width:60px;height:60px}.skin_2b43f6{background-image:url(spritesmith2.png);background-position:-1365px -273px;width:90px;height:90px}.customize-option.skin_2b43f6{background-image:url(spritesmith2.png);background-position:-1390px -288px;width:60px;height:60px}.skin_2b43f6_sleep{background-image:url(spritesmith2.png);background-position:-1365px -364px;width:90px;height:90px}.customize-option.skin_2b43f6_sleep{background-image:url(spritesmith2.png);background-position:-1390px -379px;width:60px;height:60px}.skin_6bd049{background-image:url(spritesmith2.png);background-position:-1365px -455px;width:90px;height:90px}.customize-option.skin_6bd049{background-image:url(spritesmith2.png);background-position:-1390px -470px;width:60px;height:60px}.skin_6bd049_sleep{background-image:url(spritesmith2.png);background-position:-1365px -546px;width:90px;height:90px}.customize-option.skin_6bd049_sleep{background-image:url(spritesmith2.png);background-position:-1390px -561px;width:60px;height:60px}.skin_800ed0{background-image:url(spritesmith2.png);background-position:-1365px -637px;width:90px;height:90px}.customize-option.skin_800ed0{background-image:url(spritesmith2.png);background-position:-1390px -652px;width:60px;height:60px}.skin_800ed0_sleep{background-image:url(spritesmith2.png);background-position:-1365px -728px;width:90px;height:90px}.customize-option.skin_800ed0_sleep{background-image:url(spritesmith2.png);background-position:-1390px -743px;width:60px;height:60px}.skin_915533{background-image:url(spritesmith2.png);background-position:-1365px -819px;width:90px;height:90px}.customize-option.skin_915533{background-image:url(spritesmith2.png);background-position:-1390px -834px;width:60px;height:60px}.skin_915533_sleep{background-image:url(spritesmith2.png);background-position:-1365px -910px;width:90px;height:90px}.customize-option.skin_915533_sleep{background-image:url(spritesmith2.png);background-position:-1390px -925px;width:60px;height:60px}.skin_98461a{background-image:url(spritesmith2.png);background-position:-1365px -1001px;width:90px;height:90px}.customize-option.skin_98461a{background-image:url(spritesmith2.png);background-position:-1390px -1016px;width:60px;height:60px}.skin_98461a_sleep{background-image:url(spritesmith2.png);background-position:-1365px -1092px;width:90px;height:90px}.customize-option.skin_98461a_sleep{background-image:url(spritesmith2.png);background-position:-1390px -1107px;width:60px;height:60px}.skin_c06534{background-image:url(spritesmith2.png);background-position:-1365px -1183px;width:90px;height:90px}.customize-option.skin_c06534{background-image:url(spritesmith2.png);background-position:-1390px -1198px;width:60px;height:60px}.skin_c06534_sleep{background-image:url(spritesmith2.png);background-position:-1365px -1274px;width:90px;height:90px}.customize-option.skin_c06534_sleep{background-image:url(spritesmith2.png);background-position:-1390px -1289px;width:60px;height:60px}.skin_c3e1dc{background-image:url(spritesmith2.png);background-position:0 -1365px;width:90px;height:90px}.customize-option.skin_c3e1dc{background-image:url(spritesmith2.png);background-position:-25px -1380px;width:60px;height:60px}.skin_c3e1dc_sleep{background-image:url(spritesmith2.png);background-position:-91px -1365px;width:90px;height:90px}.customize-option.skin_c3e1dc_sleep{background-image:url(spritesmith2.png);background-position:-116px -1380px;width:60px;height:60px}.skin_candycorn{background-image:url(spritesmith2.png);background-position:-182px -1365px;width:90px;height:90px}.customize-option.skin_candycorn{background-image:url(spritesmith2.png);background-position:-207px -1380px;width:60px;height:60px}.skin_candycorn_sleep{background-image:url(spritesmith2.png);background-position:-273px -1365px;width:90px;height:90px}.customize-option.skin_candycorn_sleep{background-image:url(spritesmith2.png);background-position:-298px -1380px;width:60px;height:60px}.skin_d7a9f7{background-image:url(spritesmith2.png);background-position:-364px -1365px;width:90px;height:90px}.customize-option.skin_d7a9f7{background-image:url(spritesmith2.png);background-position:-389px -1380px;width:60px;height:60px}.skin_d7a9f7_sleep{background-image:url(spritesmith2.png);background-position:-455px -1365px;width:90px;height:90px}.customize-option.skin_d7a9f7_sleep{background-image:url(spritesmith2.png);background-position:-480px -1380px;width:60px;height:60px}.skin_ddc994{background-image:url(spritesmith2.png);background-position:-546px -1365px;width:90px;height:90px}.customize-option.skin_ddc994{background-image:url(spritesmith2.png);background-position:-571px -1380px;width:60px;height:60px}.skin_ddc994_sleep{background-image:url(spritesmith2.png);background-position:-637px -1365px;width:90px;height:90px}.customize-option.skin_ddc994_sleep{background-image:url(spritesmith2.png);background-position:-662px -1380px;width:60px;height:60px}.skin_ea8349{background-image:url(spritesmith2.png);background-position:-728px -1365px;width:90px;height:90px}.customize-option.skin_ea8349{background-image:url(spritesmith2.png);background-position:-753px -1380px;width:60px;height:60px}.skin_ea8349_sleep{background-image:url(spritesmith2.png);background-position:-819px -1365px;width:90px;height:90px}.customize-option.skin_ea8349_sleep{background-image:url(spritesmith2.png);background-position:-844px -1380px;width:60px;height:60px}.skin_eb052b{background-image:url(spritesmith2.png);background-position:-910px -1365px;width:90px;height:90px}.customize-option.skin_eb052b{background-image:url(spritesmith2.png);background-position:-935px -1380px;width:60px;height:60px}.skin_eb052b_sleep{background-image:url(spritesmith2.png);background-position:-1001px -1365px;width:90px;height:90px}.customize-option.skin_eb052b_sleep{background-image:url(spritesmith2.png);background-position:-1026px -1380px;width:60px;height:60px}.skin_f5a76e{background-image:url(spritesmith2.png);background-position:-1092px -1365px;width:90px;height:90px}.customize-option.skin_f5a76e{background-image:url(spritesmith2.png);background-position:-1117px -1380px;width:60px;height:60px}.skin_f5a76e_sleep{background-image:url(spritesmith2.png);background-position:-1183px -1365px;width:90px;height:90px}.customize-option.skin_f5a76e_sleep{background-image:url(spritesmith2.png);background-position:-1208px -1380px;width:60px;height:60px}.skin_f5d70f{background-image:url(spritesmith2.png);background-position:-1274px -1365px;width:90px;height:90px}.customize-option.skin_f5d70f{background-image:url(spritesmith2.png);background-position:-1299px -1380px;width:60px;height:60px}.skin_f5d70f_sleep{background-image:url(spritesmith2.png);background-position:-1365px -1365px;width:90px;height:90px}.customize-option.skin_f5d70f_sleep{background-image:url(spritesmith2.png);background-position:-1390px -1380px;width:60px;height:60px}.skin_f69922{background-image:url(spritesmith2.png);background-position:-1456px 0;width:90px;height:90px}.customize-option.skin_f69922{background-image:url(spritesmith2.png);background-position:-1481px -15px;width:60px;height:60px}.skin_f69922_sleep{background-image:url(spritesmith2.png);background-position:-1456px -91px;width:90px;height:90px}.customize-option.skin_f69922_sleep{background-image:url(spritesmith2.png);background-position:-1481px -106px;width:60px;height:60px}.skin_ghost{background-image:url(spritesmith2.png);background-position:-1456px -182px;width:90px;height:90px}.customize-option.skin_ghost{background-image:url(spritesmith2.png);background-position:-1481px -197px;width:60px;height:60px}.skin_ghost_sleep{background-image:url(spritesmith2.png);background-position:-1456px -273px;width:90px;height:90px}.customize-option.skin_ghost_sleep{background-image:url(spritesmith2.png);background-position:-1481px -288px;width:60px;height:60px}.skin_monster{background-image:url(spritesmith2.png);background-position:-1456px -364px;width:90px;height:90px}.customize-option.skin_monster{background-image:url(spritesmith2.png);background-position:-1481px -379px;width:60px;height:60px}.skin_monster_sleep{background-image:url(spritesmith2.png);background-position:-1456px -455px;width:90px;height:90px}.customize-option.skin_monster_sleep{background-image:url(spritesmith2.png);background-position:-1481px -470px;width:60px;height:60px}.skin_ogre{background-image:url(spritesmith2.png);background-position:-1456px -546px;width:90px;height:90px}.customize-option.skin_ogre{background-image:url(spritesmith2.png);background-position:-1481px -561px;width:60px;height:60px}.skin_ogre_sleep{background-image:url(spritesmith2.png);background-position:-1456px -637px;width:90px;height:90px}.customize-option.skin_ogre_sleep{background-image:url(spritesmith2.png);background-position:-1481px -652px;width:60px;height:60px}.skin_pastelBlue{background-image:url(spritesmith2.png);background-position:-1456px -728px;width:90px;height:90px}.customize-option.skin_pastelBlue{background-image:url(spritesmith2.png);background-position:-1481px -743px;width:60px;height:60px}.skin_pastelBlue_sleep{background-image:url(spritesmith2.png);background-position:-1456px -819px;width:90px;height:90px}.customize-option.skin_pastelBlue_sleep{background-image:url(spritesmith2.png);background-position:-1481px -834px;width:60px;height:60px}.skin_pastelGreen{background-image:url(spritesmith2.png);background-position:-1456px -910px;width:90px;height:90px}.customize-option.skin_pastelGreen{background-image:url(spritesmith2.png);background-position:-1481px -925px;width:60px;height:60px}.skin_pastelGreen_sleep{background-image:url(spritesmith2.png);background-position:-1456px -1001px;width:90px;height:90px}.customize-option.skin_pastelGreen_sleep{background-image:url(spritesmith2.png);background-position:-1481px -1016px;width:60px;height:60px}.skin_pastelOrange{background-image:url(spritesmith2.png);background-position:-1456px -1092px;width:90px;height:90px}.customize-option.skin_pastelOrange{background-image:url(spritesmith2.png);background-position:-1481px -1107px;width:60px;height:60px}.skin_pastelOrange_sleep{background-image:url(spritesmith2.png);background-position:-1456px -1183px;width:90px;height:90px}.customize-option.skin_pastelOrange_sleep{background-image:url(spritesmith2.png);background-position:-1481px -1198px;width:60px;height:60px}.skin_pastelPink{background-image:url(spritesmith2.png);background-position:-1456px -1274px;width:90px;height:90px}.customize-option.skin_pastelPink{background-image:url(spritesmith2.png);background-position:-1481px -1289px;width:60px;height:60px}.skin_pastelPink_sleep{background-image:url(spritesmith2.png);background-position:-1456px -1365px;width:90px;height:90px}.customize-option.skin_pastelPink_sleep{background-image:url(spritesmith2.png);background-position:-1481px -1380px;width:60px;height:60px}.skin_pastelPurple{background-image:url(spritesmith2.png);background-position:0 -1456px;width:90px;height:90px}.customize-option.skin_pastelPurple{background-image:url(spritesmith2.png);background-position:-25px -1471px;width:60px;height:60px}.skin_pastelPurple_sleep{background-image:url(spritesmith2.png);background-position:-91px -1456px;width:90px;height:90px}.customize-option.skin_pastelPurple_sleep{background-image:url(spritesmith2.png);background-position:-116px -1471px;width:60px;height:60px}.skin_pastelRainbowChevron{background-image:url(spritesmith2.png);background-position:-182px -1456px;width:90px;height:90px}.customize-option.skin_pastelRainbowChevron{background-image:url(spritesmith2.png);background-position:-207px -1471px;width:60px;height:60px}.skin_pastelRainbowChevron_sleep{background-image:url(spritesmith2.png);background-position:-273px -1456px;width:90px;height:90px}.customize-option.skin_pastelRainbowChevron_sleep{background-image:url(spritesmith2.png);background-position:-298px -1471px;width:60px;height:60px}.skin_pastelRainbowDiagonal{background-image:url(spritesmith2.png);background-position:-364px -1456px;width:90px;height:90px}.customize-option.skin_pastelRainbowDiagonal{background-image:url(spritesmith2.png);background-position:-389px -1471px;width:60px;height:60px}.skin_pastelRainbowDiagonal_sleep{background-image:url(spritesmith2.png);background-position:-455px -1456px;width:90px;height:90px}.customize-option.skin_pastelRainbowDiagonal_sleep{background-image:url(spritesmith2.png);background-position:-480px -1471px;width:60px;height:60px}.skin_pastelYellow{background-image:url(spritesmith2.png);background-position:-546px -1456px;width:90px;height:90px}.customize-option.skin_pastelYellow{background-image:url(spritesmith2.png);background-position:-571px -1471px;width:60px;height:60px}.skin_pastelYellow_sleep{background-image:url(spritesmith2.png);background-position:-637px -1456px;width:90px;height:90px}.customize-option.skin_pastelYellow_sleep{background-image:url(spritesmith2.png);background-position:-662px -1471px;width:60px;height:60px}.skin_pumpkin{background-image:url(spritesmith2.png);background-position:-728px -1456px;width:90px;height:90px}.customize-option.skin_pumpkin{background-image:url(spritesmith2.png);background-position:-753px -1471px;width:60px;height:60px}.skin_pumpkin2{background-image:url(spritesmith2.png);background-position:-819px -1456px;width:90px;height:90px}.customize-option.skin_pumpkin2{background-image:url(spritesmith2.png);background-position:-844px -1471px;width:60px;height:60px}.skin_pumpkin2_sleep{background-image:url(spritesmith2.png);background-position:-910px -1456px;width:90px;height:90px}.customize-option.skin_pumpkin2_sleep{background-image:url(spritesmith2.png);background-position:-935px -1471px;width:60px;height:60px}.skin_pumpkin_sleep{background-image:url(spritesmith2.png);background-position:-1001px -1456px;width:90px;height:90px}.customize-option.skin_pumpkin_sleep{background-image:url(spritesmith2.png);background-position:-1026px -1471px;width:60px;height:60px}.skin_rainbow{background-image:url(spritesmith2.png);background-position:-1092px -1456px;width:90px;height:90px}.customize-option.skin_rainbow{background-image:url(spritesmith2.png);background-position:-1117px -1471px;width:60px;height:60px}.skin_rainbow_sleep{background-image:url(spritesmith2.png);background-position:-1183px -1456px;width:90px;height:90px}.customize-option.skin_rainbow_sleep{background-image:url(spritesmith2.png);background-position:-1208px -1471px;width:60px;height:60px}.skin_reptile{background-image:url(spritesmith2.png);background-position:-1274px -1456px;width:90px;height:90px}.customize-option.skin_reptile{background-image:url(spritesmith2.png);background-position:-1299px -1471px;width:60px;height:60px}.skin_reptile_sleep{background-image:url(spritesmith2.png);background-position:-1365px -1456px;width:90px;height:90px}.customize-option.skin_reptile_sleep{background-image:url(spritesmith2.png);background-position:-1390px -1471px;width:60px;height:60px}.skin_shadow{background-image:url(spritesmith2.png);background-position:-1456px -1456px;width:90px;height:90px}.customize-option.skin_shadow{background-image:url(spritesmith2.png);background-position:-1481px -1471px;width:60px;height:60px}.skin_shadow2{background-image:url(spritesmith2.png);background-position:-1547px 0;width:90px;height:90px}.customize-option.skin_shadow2{background-image:url(spritesmith2.png);background-position:-1572px -15px;width:60px;height:60px}.skin_shadow2_sleep{background-image:url(spritesmith2.png);background-position:-1547px -91px;width:90px;height:90px}.customize-option.skin_shadow2_sleep{background-image:url(spritesmith2.png);background-position:-1572px -106px;width:60px;height:60px}.skin_shadow_sleep{background-image:url(spritesmith2.png);background-position:-1547px -182px;width:90px;height:90px}.customize-option.skin_shadow_sleep{background-image:url(spritesmith2.png);background-position:-1572px -197px;width:60px;height:60px}.skin_skeleton{background-image:url(spritesmith2.png);background-position:-1547px -273px;width:90px;height:90px}.customize-option.skin_skeleton{background-image:url(spritesmith2.png);background-position:-1572px -288px;width:60px;height:60px}.skin_skeleton2{background-image:url(spritesmith2.png);background-position:-1547px -364px;width:90px;height:90px}.customize-option.skin_skeleton2{background-image:url(spritesmith2.png);background-position:-1572px -379px;width:60px;height:60px}.skin_skeleton2_sleep{background-image:url(spritesmith2.png);background-position:-1547px -455px;width:90px;height:90px}.customize-option.skin_skeleton2_sleep{background-image:url(spritesmith2.png);background-position:-1572px -470px;width:60px;height:60px}.skin_skeleton_sleep{background-image:url(spritesmith2.png);background-position:-1547px -546px;width:90px;height:90px}.customize-option.skin_skeleton_sleep{background-image:url(spritesmith2.png);background-position:-1572px -561px;width:60px;height:60px}.skin_transparent{background-image:url(spritesmith2.png);background-position:-1547px -637px;width:90px;height:90px}.customize-option.skin_transparent{background-image:url(spritesmith2.png);background-position:-1572px -652px;width:60px;height:60px}.skin_transparent_sleep{background-image:url(spritesmith2.png);background-position:-1547px -728px;width:90px;height:90px}.customize-option.skin_transparent_sleep{background-image:url(spritesmith2.png);background-position:-1572px -743px;width:60px;height:60px}.skin_zombie{background-image:url(spritesmith2.png);background-position:-1547px -819px;width:90px;height:90px}.customize-option.skin_zombie{background-image:url(spritesmith2.png);background-position:-1572px -834px;width:60px;height:60px}.skin_zombie2{background-image:url(spritesmith2.png);background-position:-1547px -910px;width:90px;height:90px}.customize-option.skin_zombie2{background-image:url(spritesmith2.png);background-position:-1572px -925px;width:60px;height:60px}.skin_zombie2_sleep{background-image:url(spritesmith2.png);background-position:-1547px -1001px;width:90px;height:90px}.customize-option.skin_zombie2_sleep{background-image:url(spritesmith2.png);background-position:-1572px -1016px;width:60px;height:60px}.skin_zombie_sleep{background-image:url(spritesmith2.png);background-position:-1547px -1092px;width:90px;height:90px}.customize-option.skin_zombie_sleep{background-image:url(spritesmith2.png);background-position:-1572px -1107px;width:60px;height:60px}.broad_armor_healer_1{background-image:url(spritesmith2.png);background-position:-1547px -1183px;width:90px;height:90px}.broad_armor_healer_2{background-image:url(spritesmith2.png);background-position:-1547px -1274px;width:90px;height:90px}.broad_armor_healer_3{background-image:url(spritesmith2.png);background-position:-1547px -1365px;width:90px;height:90px}.broad_armor_healer_4{background-image:url(spritesmith2.png);background-position:-1547px -1456px;width:90px;height:90px}.broad_armor_healer_5{background-image:url(spritesmith2.png);background-position:0 -1547px;width:90px;height:90px}.broad_armor_rogue_1{background-image:url(spritesmith2.png);background-position:-91px -1547px;width:90px;height:90px}.broad_armor_rogue_2{background-image:url(spritesmith2.png);background-position:-182px -1547px;width:90px;height:90px}.broad_armor_rogue_3{background-image:url(spritesmith2.png);background-position:-273px -1547px;width:90px;height:90px}.broad_armor_rogue_4{background-image:url(spritesmith2.png);background-position:-364px -1547px;width:90px;height:90px}.broad_armor_rogue_5{background-image:url(spritesmith2.png);background-position:-455px -1547px;width:90px;height:90px}.broad_armor_special_2{background-image:url(spritesmith2.png);background-position:-546px -1547px;width:90px;height:90px}.broad_armor_warrior_1{background-image:url(spritesmith2.png);background-position:-637px -1547px;width:90px;height:90px}.broad_armor_warrior_2{background-image:url(spritesmith2.png);background-position:-728px -1547px;width:90px;height:90px}.broad_armor_warrior_3{background-image:url(spritesmith2.png);background-position:-819px -1547px;width:90px;height:90px}.broad_armor_warrior_4{background-image:url(spritesmith2.png);background-position:-910px -1547px;width:90px;height:90px}.broad_armor_warrior_5{background-image:url(spritesmith2.png);background-position:-1001px -1547px;width:90px;height:90px}.broad_armor_wizard_1{background-image:url(spritesmith2.png);background-position:-1092px -1547px;width:90px;height:90px}.broad_armor_wizard_2{background-image:url(spritesmith2.png);background-position:-1183px -1547px;width:90px;height:90px}.broad_armor_wizard_3{background-image:url(spritesmith2.png);background-position:-1274px -1547px;width:90px;height:90px}.broad_armor_wizard_4{background-image:url(spritesmith2.png);background-position:-1365px -1547px;width:90px;height:90px}.broad_armor_wizard_5{background-image:url(spritesmith2.png);background-position:-1456px -1547px;width:90px;height:90px}.shop_armor_healer_1{background-image:url(spritesmith2.png);background-position:-1225px -1638px;width:40px;height:40px}.shop_armor_healer_2{background-image:url(spritesmith2.png);background-position:-1184px -1638px;width:40px;height:40px}.shop_armor_healer_3{background-image:url(spritesmith2.png);background-position:-1143px -1638px;width:40px;height:40px}.shop_armor_healer_4{background-image:url(spritesmith2.png);background-position:-1102px -1638px;width:40px;height:40px}.shop_armor_healer_5{background-image:url(spritesmith2.png);background-position:-1061px -1638px;width:40px;height:40px}.shop_armor_rogue_1{background-image:url(spritesmith2.png);background-position:-1020px -1638px;width:40px;height:40px}.shop_armor_rogue_2{background-image:url(spritesmith2.png);background-position:-979px -1638px;width:40px;height:40px}.shop_armor_rogue_3{background-image:url(spritesmith2.png);background-position:-938px -1638px;width:40px;height:40px}.shop_armor_rogue_4{background-image:url(spritesmith2.png);background-position:-897px -1638px;width:40px;height:40px}.shop_armor_rogue_5{background-image:url(spritesmith2.png);background-position:-856px -1638px;width:40px;height:40px}.shop_armor_special_0{background-image:url(spritesmith2.png);background-position:-1266px -1638px;width:40px;height:40px}.shop_armor_special_1{background-image:url(spritesmith2.png);background-position:-774px -1638px;width:40px;height:40px}.shop_armor_special_2{background-image:url(spritesmith2.png);background-position:-733px -1638px;width:40px;height:40px}.shop_armor_warrior_1{background-image:url(spritesmith2.png);background-position:-692px -1638px;width:40px;height:40px}.shop_armor_warrior_2{background-image:url(spritesmith2.png);background-position:-651px -1638px;width:40px;height:40px}.shop_armor_warrior_3{background-image:url(spritesmith2.png);background-position:-610px -1638px;width:40px;height:40px}.shop_armor_warrior_4{background-image:url(spritesmith2.png);background-position:-569px -1638px;width:40px;height:40px}.shop_armor_warrior_5{background-image:url(spritesmith2.png);background-position:-528px -1638px;width:40px;height:40px}.shop_armor_wizard_1{background-image:url(spritesmith2.png);background-position:-487px -1638px;width:40px;height:40px}.shop_armor_wizard_2{background-image:url(spritesmith2.png);background-position:-446px -1638px;width:40px;height:40px}.shop_armor_wizard_3{background-image:url(spritesmith2.png);background-position:-405px -1638px;width:40px;height:40px}.shop_armor_wizard_4{background-image:url(spritesmith2.png);background-position:-815px -1638px;width:40px;height:40px}.shop_armor_wizard_5{background-image:url(spritesmith2.png);background-position:-364px -1638px;width:40px;height:40px}.slim_armor_healer_1{background-image:url(spritesmith2.png);background-position:-182px -1638px;width:90px;height:90px}.slim_armor_healer_2{background-image:url(spritesmith2.png);background-position:-91px -1638px;width:90px;height:90px}.slim_armor_healer_3{background-image:url(spritesmith2.png);background-position:0 -1638px;width:90px;height:90px}.slim_armor_healer_4{background-image:url(spritesmith2.png);background-position:-1638px -1547px;width:90px;height:90px}.slim_armor_healer_5{background-image:url(spritesmith2.png);background-position:-1638px -1456px;width:90px;height:90px}.slim_armor_rogue_1{background-image:url(spritesmith2.png);background-position:-1638px -1365px;width:90px;height:90px}.slim_armor_rogue_2{background-image:url(spritesmith2.png);background-position:-1638px -1274px;width:90px;height:90px}.slim_armor_rogue_3{background-image:url(spritesmith2.png);background-position:-1638px -1183px;width:90px;height:90px}.slim_armor_rogue_4{background-image:url(spritesmith2.png);background-position:-1638px -1092px;width:90px;height:90px}.slim_armor_rogue_5{background-image:url(spritesmith2.png);background-position:-1638px -1001px;width:90px;height:90px}.slim_armor_special_2{background-image:url(spritesmith2.png);background-position:-1638px -910px;width:90px;height:90px}.slim_armor_warrior_1{background-image:url(spritesmith2.png);background-position:-1638px -819px;width:90px;height:90px}.slim_armor_warrior_2{background-image:url(spritesmith2.png);background-position:-1638px -728px;width:90px;height:90px}.slim_armor_warrior_3{background-image:url(spritesmith2.png);background-position:-1638px -637px;width:90px;height:90px}.slim_armor_warrior_4{background-image:url(spritesmith2.png);background-position:-1638px -546px;width:90px;height:90px}.slim_armor_warrior_5{background-image:url(spritesmith2.png);background-position:-1638px -455px;width:90px;height:90px}.slim_armor_wizard_1{background-image:url(spritesmith2.png);background-position:-1638px -364px;width:90px;height:90px}.slim_armor_wizard_2{background-image:url(spritesmith2.png);background-position:-1638px -273px;width:90px;height:90px}.slim_armor_wizard_3{background-image:url(spritesmith2.png);background-position:-1638px -182px;width:90px;height:90px}.slim_armor_wizard_4{background-image:url(spritesmith2.png);background-position:-1638px -91px;width:90px;height:90px}.slim_armor_wizard_5{background-image:url(spritesmith2.png);background-position:-1638px 0;width:90px;height:90px}.broad_armor_special_birthday{background-image:url(spritesmith2.png);background-position:-1547px -1547px;width:90px;height:90px}.broad_armor_special_birthday2015{background-image:url(spritesmith2.png);background-position:-273px -1638px;width:90px;height:90px}.shop_armor_special_birthday{background-image:url(spritesmith3.png);background-position:-892px -1366px;width:40px;height:40px}.shop_armor_special_birthday2015{background-image:url(spritesmith3.png);background-position:-1148px -1416px;width:40px;height:40px}.slim_armor_special_birthday{background-image:url(spritesmith3.png);background-position:-819px -870px;width:90px;height:90px}.slim_armor_special_birthday2015{background-image:url(spritesmith3.png);background-position:-273px -506px;width:90px;height:90px}.broad_armor_special_fallHealer{background-image:url(spritesmith3.png);background-position:-364px -506px;width:90px;height:90px}.broad_armor_special_fallMage{background-image:url(spritesmith3.png);background-position:0 -961px;width:120px;height:90px}.broad_armor_special_fallRogue{background-image:url(spritesmith3.png);background-position:-121px -961px;width:105px;height:90px}.broad_armor_special_fallWarrior{background-image:url(spritesmith3.png);background-position:-227px -961px;width:90px;height:90px}.head_special_fallHealer{background-image:url(spritesmith3.png);background-position:-318px -961px;width:90px;height:90px}.head_special_fallMage{background-image:url(spritesmith3.png);background-position:-857px -961px;width:120px;height:90px}.head_special_fallRogue{background-image:url(spritesmith3.png);background-position:-978px -961px;width:105px;height:90px}.head_special_fallWarrior{background-image:url(spritesmith3.png);background-position:-1122px -182px;width:90px;height:90px}.shield_special_fallHealer{background-image:url(spritesmith3.png);background-position:-1122px -273px;width:90px;height:90px}.shield_special_fallRogue{background-image:url(spritesmith3.png);background-position:-1122px -546px;width:105px;height:90px}.shield_special_fallWarrior{background-image:url(spritesmith3.png);background-position:-1122px -819px;width:90px;height:90px}.shop_armor_special_fallHealer{background-image:url(spritesmith3.png);background-position:-1097px -1366px;width:40px;height:40px}.shop_armor_special_fallMage{background-image:url(spritesmith3.png);background-position:-1138px -1366px;width:40px;height:40px}.shop_armor_special_fallRogue{background-image:url(spritesmith3.png);background-position:-1261px -1366px;width:40px;height:40px}.shop_armor_special_fallWarrior{background-image:url(spritesmith3.png);background-position:-1416px -82px;width:40px;height:40px}.shop_head_special_fallHealer{background-image:url(spritesmith3.png);background-position:-1416px -123px;width:40px;height:40px}.shop_head_special_fallMage{background-image:url(spritesmith3.png);background-position:-1457px -656px;width:40px;height:40px}.shop_head_special_fallRogue{background-image:url(spritesmith3.png);background-position:-1457px -779px;width:40px;height:40px}.shop_head_special_fallWarrior{background-image:url(spritesmith3.png);background-position:-1457px -820px;width:40px;height:40px}.shop_shield_special_fallHealer{background-image:url(spritesmith3.png);background-position:-1457px -1107px;width:40px;height:40px}.shop_shield_special_fallRogue{background-image:url(spritesmith3.png);background-position:-1234px -1183px;width:40px;height:40px}.shop_shield_special_fallWarrior{background-image:url(spritesmith3.png);background-position:-1072px -910px;width:40px;height:40px}.shop_weapon_special_fallHealer{background-image:url(spritesmith3.png);background-position:-940px -819px;width:40px;height:40px}.shop_weapon_special_fallMage{background-image:url(spritesmith3.png);background-position:-890px -728px;width:40px;height:40px}.shop_weapon_special_fallRogue{background-image:url(spritesmith3.png);background-position:-728px -1366px;width:40px;height:40px}.shop_weapon_special_fallWarrior{background-image:url(spritesmith3.png);background-position:-769px -1366px;width:40px;height:40px}.slim_armor_special_fallHealer{background-image:url(spritesmith3.png);background-position:-1122px -910px;width:90px;height:90px}.slim_armor_special_fallMage{background-image:url(spritesmith3.png);background-position:-224px -1052px;width:120px;height:90px}.slim_armor_special_fallRogue{background-image:url(spritesmith3.png);background-position:-345px -1052px;width:105px;height:90px}.slim_armor_special_fallWarrior{background-image:url(spritesmith3.png);background-position:-182px -318px;width:90px;height:90px}.weapon_special_fallHealer{background-image:url(spritesmith3.png);background-position:-273px -318px;width:90px;height:90px}.weapon_special_fallMage{background-image:url(spritesmith3.png);background-position:-455px 0;width:120px;height:90px}.weapon_special_fallRogue{background-image:url(spritesmith3.png);background-position:-455px -91px;width:105px;height:90px}.weapon_special_fallWarrior{background-image:url(spritesmith3.png);background-position:-455px -182px;width:90px;height:90px}.broad_armor_special_gaymerx{background-image:url(spritesmith3.png);background-position:-455px -273px;width:90px;height:90px}.head_special_gaymerx{background-image:url(spritesmith3.png);background-position:-364px -318px;width:90px;height:90px}.shop_armor_special_gaymerx{background-image:url(spritesmith3.png);background-position:-1457px -1148px;width:40px;height:40px}.shop_head_special_gaymerx{background-image:url(spritesmith3.png);background-position:-1457px -1189px;width:40px;height:40px}.slim_armor_special_gaymerx{background-image:url(spritesmith3.png);background-position:0 -415px;width:90px;height:90px}.back_mystery_201402{background-image:url(spritesmith3.png);background-position:-91px -415px;width:90px;height:90px}.broad_armor_mystery_201402{background-image:url(spritesmith3.png);background-position:-182px -415px;width:90px;height:90px}.head_mystery_201402{background-image:url(spritesmith3.png);background-position:-273px -415px;width:90px;height:90px}.shop_armor_mystery_201402{background-image:url(spritesmith3.png);background-position:-758px -637px;width:40px;height:40px}.shop_back_mystery_201402{background-image:url(spritesmith3.png);background-position:-799px -637px;width:40px;height:40px}.shop_head_mystery_201402{background-image:url(spritesmith3.png);background-position:-576px -455px;width:40px;height:40px}.slim_armor_mystery_201402{background-image:url(spritesmith3.png);background-position:-364px -415px;width:90px;height:90px}.broad_armor_mystery_201403{background-image:url(spritesmith3.png);background-position:-455px -415px;width:90px;height:90px}.headAccessory_mystery_201403{background-image:url(spritesmith3.png);background-position:-576px 0;width:90px;height:90px}.shop_armor_mystery_201403{background-image:url(spritesmith3.png);background-position:-933px -1366px;width:40px;height:40px}.shop_headAccessory_mystery_201403{background-image:url(spritesmith3.png);background-position:-1056px -1366px;width:40px;height:40px}.slim_armor_mystery_201403{background-image:url(spritesmith3.png);background-position:-576px -91px;width:90px;height:90px}.back_mystery_201404{background-image:url(spritesmith3.png);background-position:-576px -182px;width:90px;height:90px}.headAccessory_mystery_201404{background-image:url(spritesmith3.png);background-position:-576px -273px;width:90px;height:90px}.shop_back_mystery_201404{background-image:url(spritesmith3.png);background-position:-1302px -1366px;width:40px;height:40px}.shop_headAccessory_mystery_201404{background-image:url(spritesmith3.png);background-position:-1343px -1366px;width:40px;height:40px}.broad_armor_mystery_201405{background-image:url(spritesmith3.png);background-position:-576px -364px;width:90px;height:90px}.head_mystery_201405{background-image:url(spritesmith3.png);background-position:0 -506px;width:90px;height:90px}.shop_armor_mystery_201405{background-image:url(spritesmith3.png);background-position:-1457px -574px;width:40px;height:40px}.shop_head_mystery_201405{background-image:url(spritesmith3.png);background-position:-1457px -615px;width:40px;height:40px}.slim_armor_mystery_201405{background-image:url(spritesmith3.png);background-position:-91px -506px;width:90px;height:90px}.broad_armor_mystery_201406{background-image:url(spritesmith3.png);background-position:-364px -106px;width:90px;height:96px}.head_mystery_201406{background-image:url(spritesmith3.png);background-position:0 -318px;width:90px;height:96px}.shop_armor_mystery_201406{background-image:url(spritesmith3.png);background-position:-1457px -861px;width:40px;height:40px}.shop_head_mystery_201406{background-image:url(spritesmith3.png);background-position:-1457px -902px;width:40px;height:40px}.slim_armor_mystery_201406{background-image:url(spritesmith3.png);background-position:-364px -203px;width:90px;height:96px}.broad_armor_mystery_201407{background-image:url(spritesmith3.png);background-position:-455px -506px;width:90px;height:90px}.head_mystery_201407{background-image:url(spritesmith3.png);background-position:-546px -506px;width:90px;height:90px}.shop_armor_mystery_201407{background-image:url(spritesmith3.png);background-position:-1457px -1230px;width:40px;height:40px}.shop_head_mystery_201407{background-image:url(spritesmith3.png);background-position:-1366px -1274px;width:40px;height:40px}.slim_armor_mystery_201407{background-image:url(spritesmith3.png);background-position:-667px 0;width:90px;height:90px}.broad_armor_mystery_201408{background-image:url(spritesmith3.png);background-position:-667px -91px;width:90px;height:90px}.head_mystery_201408{background-image:url(spritesmith3.png);background-position:-667px -182px;width:90px;height:90px}.shop_armor_mystery_201408{background-image:url(spritesmith3.png);background-position:-981px -819px;width:40px;height:40px}.shop_head_mystery_201408{background-image:url(spritesmith3.png);background-position:-849px -728px;width:40px;height:40px}.slim_armor_mystery_201408{background-image:url(spritesmith3.png);background-position:-667px -273px;width:90px;height:90px}.broad_armor_mystery_201409{background-image:url(spritesmith3.png);background-position:-667px -364px;width:90px;height:90px}.headAccessory_mystery_201409{background-image:url(spritesmith3.png);background-position:-667px -455px;width:90px;height:90px}.shop_armor_mystery_201409{background-image:url(spritesmith3.png);background-position:-667px -546px;width:40px;height:40px}.shop_headAccessory_mystery_201409{background-image:url(spritesmith3.png);background-position:-708px -546px;width:40px;height:40px}.slim_armor_mystery_201409{background-image:url(spritesmith3.png);background-position:0 -597px;width:90px;height:90px}.back_mystery_201410{background-image:url(spritesmith3.png);background-position:-91px -597px;width:93px;height:90px}.broad_armor_mystery_201410{background-image:url(spritesmith3.png);background-position:-185px -597px;width:93px;height:90px}.shop_armor_mystery_201410{background-image:url(spritesmith3.png);background-position:-810px -1366px;width:40px;height:40px}.shop_back_mystery_201410{background-image:url(spritesmith3.png);background-position:-851px -1366px;width:40px;height:40px}.slim_armor_mystery_201410{background-image:url(spritesmith3.png);background-position:-279px -597px;width:93px;height:90px}.head_mystery_201411{background-image:url(spritesmith3.png);background-position:-373px -597px;width:90px;height:90px}.shop_head_mystery_201411{background-image:url(spritesmith3.png);background-position:-974px -1366px;width:40px;height:40px}.shop_weapon_mystery_201411{background-image:url(spritesmith3.png);background-position:-1015px -1366px;width:40px;height:40px}.weapon_mystery_201411{background-image:url(spritesmith3.png);background-position:-464px -597px;width:90px;height:90px}.broad_armor_mystery_201412{background-image:url(spritesmith3.png);background-position:-555px -597px;width:90px;height:90px}.head_mystery_201412{background-image:url(spritesmith3.png);background-position:-646px -597px;width:90px;height:90px}.shop_armor_mystery_201412{background-image:url(spritesmith3.png);background-position:-1179px -1366px;width:40px;height:40px}.shop_head_mystery_201412{background-image:url(spritesmith3.png);background-position:-1220px -1366px;width:40px;height:40px}.slim_armor_mystery_201412{background-image:url(spritesmith3.png);background-position:-758px 0;width:90px;height:90px}.broad_armor_mystery_201501{background-image:url(spritesmith3.png);background-position:-758px -91px;width:90px;height:90px}.head_mystery_201501{background-image:url(spritesmith3.png);background-position:-758px -182px;width:90px;height:90px}.shop_armor_mystery_201501{background-image:url(spritesmith3.png);background-position:-1416px 0;width:40px;height:40px}.shop_head_mystery_201501{background-image:url(spritesmith3.png);background-position:-1416px -41px;width:40px;height:40px}.slim_armor_mystery_201501{background-image:url(spritesmith3.png);background-position:-758px -273px;width:90px;height:90px}.headAccessory_mystery_201502{background-image:url(spritesmith3.png);background-position:-758px -364px;width:90px;height:90px}.shop_headAccessory_mystery_201502{background-image:url(spritesmith3.png);background-position:-1457px -492px;width:40px;height:40px}.shop_weapon_mystery_201502{background-image:url(spritesmith3.png);background-position:-1457px -533px;width:40px;height:40px}.weapon_mystery_201502{background-image:url(spritesmith3.png);background-position:-758px -455px;width:90px;height:90px}.broad_armor_mystery_201503{background-image:url(spritesmith3.png);background-position:-758px -546px;width:90px;height:90px}.eyewear_mystery_201503{background-image:url(spritesmith3.png);background-position:0 -688px;width:90px;height:90px}.shop_armor_mystery_201503{background-image:url(spritesmith3.png);background-position:-1457px -697px;width:40px;height:40px}.shop_eyewear_mystery_201503{background-image:url(spritesmith3.png);background-position:-1457px -738px;width:40px;height:40px}.slim_armor_mystery_201503{background-image:url(spritesmith3.png);background-position:-91px -688px;width:90px;height:90px}.broad_armor_mystery_301404{background-image:url(spritesmith3.png);background-position:-182px -688px;width:90px;height:90px}.eyewear_mystery_301404{background-image:url(spritesmith3.png);background-position:-273px -688px;width:90px;height:90px}.head_mystery_301404{background-image:url(spritesmith3.png);background-position:-364px -688px;width:90px;height:90px}.shop_armor_mystery_301404{background-image:url(spritesmith3.png);background-position:-1457px -943px;width:40px;height:40px}.shop_eyewear_mystery_301404{background-image:url(spritesmith3.png);background-position:-1457px -984px;width:40px;height:40px}.shop_head_mystery_301404{background-image:url(spritesmith3.png);background-position:-1457px -1025px;width:40px;height:40px}.shop_weapon_mystery_301404{background-image:url(spritesmith3.png);background-position:-1457px -1066px;width:40px;height:40px}.slim_armor_mystery_301404{background-image:url(spritesmith3.png);background-position:-455px -688px;width:90px;height:90px}.weapon_mystery_301404{background-image:url(spritesmith3.png);background-position:-546px -688px;width:90px;height:90px}.eyewear_mystery_301405{background-image:url(spritesmith3.png);background-position:-637px -688px;width:90px;height:90px}.headAccessory_mystery_301405{background-image:url(spritesmith3.png);background-position:-728px -688px;width:90px;height:90px}.head_mystery_301405{background-image:url(spritesmith3.png);background-position:-849px 0;width:90px;height:90px}.shield_mystery_301405{background-image:url(spritesmith3.png);background-position:-849px -91px;width:90px;height:90px}.shop_eyewear_mystery_301405{background-image:url(spritesmith3.png);background-position:-1275px -1183px;width:40px;height:40px}.shop_headAccessory_mystery_301405{background-image:url(spritesmith3.png);background-position:-1122px -1001px;width:40px;height:40px}.shop_head_mystery_301405{background-image:url(spritesmith3.png);background-position:-1163px -1001px;width:40px;height:40px}.shop_shield_mystery_301405{background-image:url(spritesmith3.png);background-position:-1031px -910px;width:40px;height:40px}.broad_armor_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-849px -182px;width:90px;height:90px}.broad_armor_special_spring2015Mage{background-image:url(spritesmith3.png);background-position:-849px -273px;width:90px;height:90px}.broad_armor_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:-849px -364px;width:90px;height:90px}.broad_armor_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-849px -455px;width:90px;height:90px}.broad_armor_special_springHealer{background-image:url(spritesmith3.png);background-position:-849px -546px;width:90px;height:90px}.broad_armor_special_springMage{background-image:url(spritesmith3.png);background-position:-849px -637px;width:90px;height:90px}.broad_armor_special_springRogue{background-image:url(spritesmith3.png);background-position:0 -779px;width:90px;height:90px}.broad_armor_special_springWarrior{background-image:url(spritesmith3.png);background-position:-91px -779px;width:90px;height:90px}.headAccessory_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-182px -779px;width:90px;height:90px}.headAccessory_special_spring2015Mage{background-image:url(spritesmith3.png);background-position:-273px -779px;width:90px;height:90px}.headAccessory_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:-364px -779px;width:90px;height:90px}.headAccessory_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-455px -779px;width:90px;height:90px}.headAccessory_special_springHealer{background-image:url(spritesmith3.png);background-position:-546px -779px;width:90px;height:90px}.headAccessory_special_springMage{background-image:url(spritesmith3.png);background-position:-637px -779px;width:90px;height:90px}.headAccessory_special_springRogue{background-image:url(spritesmith3.png);background-position:-728px -779px;width:90px;height:90px}.headAccessory_special_springWarrior{background-image:url(spritesmith3.png);background-position:-819px -779px;width:90px;height:90px}.head_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-940px 0;width:90px;height:90px}.head_special_spring2015Mage{background-image:url(spritesmith3.png);background-position:-940px -91px;width:90px;height:90px}.head_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:-940px -182px;width:90px;height:90px}.head_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-940px -273px;width:90px;height:90px}.head_special_springHealer{background-image:url(spritesmith3.png);background-position:-940px -364px;width:90px;height:90px}.head_special_springMage{background-image:url(spritesmith3.png);background-position:-940px -455px;width:90px;height:90px}.head_special_springRogue{background-image:url(spritesmith3.png);background-position:-940px -546px;width:90px;height:90px}.head_special_springWarrior{background-image:url(spritesmith3.png);background-position:-940px -637px;width:90px;height:90px}.shield_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-940px -728px;width:90px;height:90px}.shield_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:0 -870px;width:90px;height:90px}.shield_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-91px -870px;width:90px;height:90px}.shield_special_springHealer{background-image:url(spritesmith3.png);background-position:-182px -870px;width:90px;height:90px}.shield_special_springRogue{background-image:url(spritesmith3.png);background-position:-273px -870px;width:90px;height:90px}.shield_special_springWarrior{background-image:url(spritesmith3.png);background-position:-364px -870px;width:90px;height:90px}.shop_armor_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-1416px -164px;width:40px;height:40px}.shop_armor_special_spring2015Mage{background-image:url(spritesmith3.png);background-position:-1416px -205px;width:40px;height:40px}.shop_armor_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:-1416px -246px;width:40px;height:40px}.shop_armor_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-1416px -287px;width:40px;height:40px}.shop_armor_special_springHealer{background-image:url(spritesmith3.png);background-position:-1416px -328px;width:40px;height:40px}.shop_armor_special_springMage{background-image:url(spritesmith3.png);background-position:-1416px -369px;width:40px;height:40px}.shop_armor_special_springRogue{background-image:url(spritesmith3.png);background-position:-1416px -410px;width:40px;height:40px}.shop_armor_special_springWarrior{background-image:url(spritesmith3.png);background-position:-1416px -451px;width:40px;height:40px}.shop_headAccessory_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-1416px -492px;width:40px;height:40px}.shop_headAccessory_special_spring2015Mage{background-image:url(spritesmith3.png);background-position:-1416px -533px;width:40px;height:40px}.shop_headAccessory_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:-1416px -574px;width:40px;height:40px}.shop_headAccessory_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-1416px -615px;width:40px;height:40px}.shop_headAccessory_special_springHealer{background-image:url(spritesmith3.png);background-position:-574px -1416px;width:40px;height:40px}.shop_headAccessory_special_springMage{background-image:url(spritesmith3.png);background-position:-615px -1416px;width:40px;height:40px}.shop_headAccessory_special_springRogue{background-image:url(spritesmith3.png);background-position:-656px -1416px;width:40px;height:40px}.shop_headAccessory_special_springWarrior{background-image:url(spritesmith3.png);background-position:-697px -1416px;width:40px;height:40px}.shop_head_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-738px -1416px;width:40px;height:40px}.shop_head_special_spring2015Mage{background-image:url(spritesmith3.png);background-position:-779px -1416px;width:40px;height:40px}.shop_head_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:-820px -1416px;width:40px;height:40px}.shop_head_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-861px -1416px;width:40px;height:40px}.shop_head_special_springHealer{background-image:url(spritesmith3.png);background-position:-902px -1416px;width:40px;height:40px}.shop_head_special_springMage{background-image:url(spritesmith3.png);background-position:-943px -1416px;width:40px;height:40px}.shop_head_special_springRogue{background-image:url(spritesmith3.png);background-position:-984px -1416px;width:40px;height:40px}.shop_head_special_springWarrior{background-image:url(spritesmith3.png);background-position:-1025px -1416px;width:40px;height:40px}.shop_shield_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-1066px -1416px;width:40px;height:40px}.shop_shield_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:-1107px -1416px;width:40px;height:40px}.shop_shield_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-1325px -1274px;width:40px;height:40px}.shop_shield_special_springHealer{background-image:url(spritesmith3.png);background-position:-1189px -1416px;width:40px;height:40px}.shop_shield_special_springRogue{background-image:url(spritesmith3.png);background-position:-1230px -1416px;width:40px;height:40px}.shop_shield_special_springWarrior{background-image:url(spritesmith3.png);background-position:-1271px -1416px;width:40px;height:40px}.shop_weapon_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-1312px -1416px;width:40px;height:40px}.shop_weapon_special_spring2015Mage{background-image:url(spritesmith3.png);background-position:-1353px -1416px;width:40px;height:40px}.shop_weapon_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:-1394px -1416px;width:40px;height:40px}.shop_weapon_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-1457px 0;width:40px;height:40px}.shop_weapon_special_springHealer{background-image:url(spritesmith3.png);background-position:-1457px -41px;width:40px;height:40px}.shop_weapon_special_springMage{background-image:url(spritesmith3.png);background-position:-1457px -369px;width:40px;height:40px}.shop_weapon_special_springRogue{background-image:url(spritesmith3.png);background-position:-1457px -410px;width:40px;height:40px}.shop_weapon_special_springWarrior{background-image:url(spritesmith3.png);background-position:-1457px -451px;width:40px;height:40px}.slim_armor_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-455px -870px;width:90px;height:90px}.slim_armor_special_spring2015Mage{background-image:url(spritesmith3.png);background-position:-546px -870px;width:90px;height:90px}.slim_armor_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:-637px -870px;width:90px;height:90px}.slim_armor_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-728px -870px;width:90px;height:90px}.slim_armor_special_springHealer{background-image:url(spritesmith3.png);background-position:-91px -318px;width:90px;height:90px}.slim_armor_special_springMage{background-image:url(spritesmith3.png);background-position:-910px -870px;width:90px;height:90px}.slim_armor_special_springRogue{background-image:url(spritesmith3.png);background-position:-1031px 0;width:90px;height:90px}.slim_armor_special_springWarrior{background-image:url(spritesmith3.png);background-position:-1031px -91px;width:90px;height:90px}.weapon_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-1031px -182px;width:90px;height:90px}.weapon_special_spring2015Mage{background-image:url(spritesmith3.png);background-position:-1031px -273px;width:90px;height:90px}.weapon_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:-1031px -364px;width:90px;height:90px}.weapon_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-1031px -455px;width:90px;height:90px}.weapon_special_springHealer{background-image:url(spritesmith3.png);background-position:-1031px -546px;width:90px;height:90px}.weapon_special_springMage{background-image:url(spritesmith3.png);background-position:-1031px -637px;width:90px;height:90px}.weapon_special_springRogue{background-image:url(spritesmith3.png);background-position:-1031px -728px;width:90px;height:90px}.weapon_special_springWarrior{background-image:url(spritesmith3.png);background-position:-1031px -819px;width:90px;height:90px}.body_special_summerHealer{background-image:url(spritesmith3.png);background-position:-91px -106px;width:90px;height:105px}.body_special_summerMage{background-image:url(spritesmith3.png);background-position:-182px -106px;width:90px;height:105px}.broad_armor_special_summerHealer{background-image:url(spritesmith3.png);background-position:-273px 0;width:90px;height:105px}.broad_armor_special_summerMage{background-image:url(spritesmith3.png);background-position:-273px -106px;width:90px;height:105px}.broad_armor_special_summerRogue{background-image:url(spritesmith3.png);background-position:-409px -961px;width:111px;height:90px}.broad_armor_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-521px -961px;width:111px;height:90px}.eyewear_special_summerRogue{background-image:url(spritesmith3.png);background-position:-633px -961px;width:111px;height:90px}.eyewear_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-745px -961px;width:111px;height:90px}.head_special_summerHealer{background-image:url(spritesmith3.png);background-position:0 0;width:90px;height:105px}.head_special_summerMage{background-image:url(spritesmith3.png);background-position:-91px -212px;width:90px;height:105px}.head_special_summerRogue{background-image:url(spritesmith3.png);background-position:-1122px 0;width:111px;height:90px}.head_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-1122px -91px;width:111px;height:90px}.Healer_Summer{background-image:url(spritesmith3.png);background-position:-182px -212px;width:90px;height:105px}.Mage_Summer{background-image:url(spritesmith3.png);background-position:-273px -212px;width:90px;height:105px}.SummerRogue14{background-image:url(spritesmith3.png);background-position:-1122px -364px;width:111px;height:90px}.SummerWarrior14{background-image:url(spritesmith3.png);background-position:-1122px -455px;width:111px;height:90px}.shield_special_summerHealer{background-image:url(spritesmith3.png);background-position:-364px 0;width:90px;height:105px}.shield_special_summerRogue{background-image:url(spritesmith3.png);background-position:-1122px -637px;width:111px;height:90px}.shield_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-1122px -728px;width:111px;height:90px}.shop_armor_special_summerHealer{background-image:url(spritesmith3.png);background-position:-617px -455px;width:40px;height:40px}.shop_armor_special_summerMage{background-image:url(spritesmith3.png);background-position:-455px -364px;width:40px;height:40px}.shop_armor_special_summerRogue{background-image:url(spritesmith3.png);background-position:-496px -364px;width:40px;height:40px}.shop_armor_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-728px -1325px;width:40px;height:40px}.shop_body_special_summerHealer{background-image:url(spritesmith3.png);background-position:-769px -1325px;width:40px;height:40px}.shop_body_special_summerMage{background-image:url(spritesmith3.png);background-position:-810px -1325px;width:40px;height:40px}.shop_eyewear_special_summerRogue{background-image:url(spritesmith3.png);background-position:-851px -1325px;width:40px;height:40px}.shop_eyewear_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-892px -1325px;width:40px;height:40px}.shop_head_special_summerHealer{background-image:url(spritesmith3.png);background-position:-933px -1325px;width:40px;height:40px}.shop_head_special_summerMage{background-image:url(spritesmith3.png);background-position:-974px -1325px;width:40px;height:40px}.shop_head_special_summerRogue{background-image:url(spritesmith3.png);background-position:-1015px -1325px;width:40px;height:40px}.shop_head_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-1056px -1325px;width:40px;height:40px}.shop_shield_special_summerHealer{background-image:url(spritesmith3.png);background-position:-1097px -1325px;width:40px;height:40px}.shop_shield_special_summerRogue{background-image:url(spritesmith3.png);background-position:-1138px -1325px;width:40px;height:40px}.shop_shield_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-1179px -1325px;width:40px;height:40px}.shop_weapon_special_summerHealer{background-image:url(spritesmith3.png);background-position:-1220px -1325px;width:40px;height:40px}.shop_weapon_special_summerMage{background-image:url(spritesmith3.png);background-position:-1261px -1325px;width:40px;height:40px}.shop_weapon_special_summerRogue{background-image:url(spritesmith3.png);background-position:-1302px -1325px;width:40px;height:40px}.shop_weapon_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-1343px -1325px;width:40px;height:40px}.slim_armor_special_summerHealer{background-image:url(spritesmith3.png);background-position:0 -212px;width:90px;height:105px}.slim_armor_special_summerMage{background-image:url(spritesmith3.png);background-position:0 -106px;width:90px;height:105px}.slim_armor_special_summerRogue{background-image:url(spritesmith3.png);background-position:0 -1052px;width:111px;height:90px}.slim_armor_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-112px -1052px;width:111px;height:90px}.weapon_special_summerHealer{background-image:url(spritesmith3.png);background-position:-182px 0;width:90px;height:105px}.weapon_special_summerMage{background-image:url(spritesmith3.png);background-position:-91px 0;width:90px;height:105px}.weapon_special_summerRogue{background-image:url(spritesmith3.png);background-position:-451px -1052px;width:111px;height:90px}.weapon_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-563px -1052px;width:111px;height:90px}.broad_armor_special_candycane{background-image:url(spritesmith3.png);background-position:-675px -1052px;width:90px;height:90px}.broad_armor_special_ski{background-image:url(spritesmith3.png);background-position:-766px -1052px;width:90px;height:90px}.broad_armor_special_snowflake{background-image:url(spritesmith3.png);background-position:-857px -1052px;width:90px;height:90px}.broad_armor_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-948px -1052px;width:90px;height:90px}.broad_armor_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1039px -1052px;width:90px;height:90px}.broad_armor_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-1130px -1052px;width:96px;height:90px}.broad_armor_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:0 -1143px;width:90px;height:90px}.broad_armor_special_yeti{background-image:url(spritesmith3.png);background-position:-91px -1143px;width:90px;height:90px}.head_special_candycane{background-image:url(spritesmith3.png);background-position:-182px -1143px;width:90px;height:90px}.head_special_nye{background-image:url(spritesmith3.png);background-position:-273px -1143px;width:90px;height:90px}.head_special_nye2014{background-image:url(spritesmith3.png);background-position:-364px -1143px;width:90px;height:90px}.head_special_ski{background-image:url(spritesmith3.png);background-position:-455px -1143px;width:90px;height:90px}.head_special_snowflake{background-image:url(spritesmith3.png);background-position:-546px -1143px;width:90px;height:90px}.head_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-637px -1143px;width:90px;height:90px}.head_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-728px -1143px;width:90px;height:90px}.head_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-819px -1143px;width:96px;height:90px}.head_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-916px -1143px;width:90px;height:90px}.head_special_yeti{background-image:url(spritesmith3.png);background-position:-1007px -1143px;width:90px;height:90px}.shield_special_ski{background-image:url(spritesmith3.png);background-position:-1098px -1143px;width:104px;height:90px}.shield_special_snowflake{background-image:url(spritesmith3.png);background-position:-1234px 0;width:90px;height:90px}.shield_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1234px -91px;width:90px;height:90px}.shield_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:0 -1234px;width:96px;height:90px}.shield_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-1234px -182px;width:90px;height:90px}.shield_special_yeti{background-image:url(spritesmith3.png);background-position:-1234px -273px;width:90px;height:90px}.shop_armor_special_candycane{background-image:url(spritesmith3.png);background-position:-1416px -656px;width:40px;height:40px}.shop_armor_special_ski{background-image:url(spritesmith3.png);background-position:-1416px -697px;width:40px;height:40px}.shop_armor_special_snowflake{background-image:url(spritesmith3.png);background-position:-1416px -738px;width:40px;height:40px}.shop_armor_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1416px -779px;width:40px;height:40px}.shop_armor_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1416px -820px;width:40px;height:40px}.shop_armor_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-1416px -861px;width:40px;height:40px}.shop_armor_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-1416px -902px;width:40px;height:40px}.shop_armor_special_yeti{background-image:url(spritesmith3.png);background-position:-1416px -943px;width:40px;height:40px}.shop_head_special_candycane{background-image:url(spritesmith3.png);background-position:-1416px -984px;width:40px;height:40px}.shop_head_special_nye{background-image:url(spritesmith3.png);background-position:-1416px -1025px;width:40px;height:40px}.shop_head_special_nye2014{background-image:url(spritesmith3.png);background-position:-1416px -1066px;width:40px;height:40px}.shop_head_special_ski{background-image:url(spritesmith3.png);background-position:-1416px -1107px;width:40px;height:40px}.shop_head_special_snowflake{background-image:url(spritesmith3.png);background-position:-1416px -1148px;width:40px;height:40px}.shop_head_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1416px -1189px;width:40px;height:40px}.shop_head_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1416px -1230px;width:40px;height:40px}.shop_head_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-1416px -1271px;width:40px;height:40px}.shop_head_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-1416px -1312px;width:40px;height:40px}.shop_head_special_yeti{background-image:url(spritesmith3.png);background-position:-1416px -1353px;width:40px;height:40px}.shop_shield_special_ski{background-image:url(spritesmith3.png);background-position:0 -1416px;width:40px;height:40px}.shop_shield_special_snowflake{background-image:url(spritesmith3.png);background-position:-41px -1416px;width:40px;height:40px}.shop_shield_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-82px -1416px;width:40px;height:40px}.shop_shield_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-123px -1416px;width:40px;height:40px}.shop_shield_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-164px -1416px;width:40px;height:40px}.shop_shield_special_yeti{background-image:url(spritesmith3.png);background-position:-205px -1416px;width:40px;height:40px}.shop_weapon_special_candycane{background-image:url(spritesmith3.png);background-position:-246px -1416px;width:40px;height:40px}.shop_weapon_special_ski{background-image:url(spritesmith3.png);background-position:-287px -1416px;width:40px;height:40px}.shop_weapon_special_snowflake{background-image:url(spritesmith3.png);background-position:-328px -1416px;width:40px;height:40px}.shop_weapon_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-369px -1416px;width:40px;height:40px}.shop_weapon_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-410px -1416px;width:40px;height:40px}.shop_weapon_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-451px -1416px;width:40px;height:40px}.shop_weapon_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-492px -1416px;width:40px;height:40px}.shop_weapon_special_yeti{background-image:url(spritesmith3.png);background-position:-533px -1416px;width:40px;height:40px}.slim_armor_special_candycane{background-image:url(spritesmith3.png);background-position:-1234px -364px;width:90px;height:90px}.slim_armor_special_ski{background-image:url(spritesmith3.png);background-position:-1234px -455px;width:90px;height:90px}.slim_armor_special_snowflake{background-image:url(spritesmith3.png);background-position:-1234px -546px;width:90px;height:90px}.slim_armor_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1234px -637px;width:90px;height:90px}.slim_armor_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1234px -728px;width:90px;height:90px}.slim_armor_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-97px -1234px;width:96px;height:90px}.slim_armor_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-1234px -819px;width:90px;height:90px}.slim_armor_special_yeti{background-image:url(spritesmith3.png);background-position:-1234px -910px;width:90px;height:90px}.weapon_special_candycane{background-image:url(spritesmith3.png);background-position:-1234px -1001px;width:90px;height:90px}.weapon_special_ski{background-image:url(spritesmith3.png);background-position:-1234px -1092px;width:90px;height:90px}.weapon_special_snowflake{background-image:url(spritesmith3.png);background-position:-194px -1234px;width:90px;height:90px}.weapon_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-285px -1234px;width:90px;height:90px}.weapon_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-376px -1234px;width:90px;height:90px}.weapon_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-467px -1234px;width:96px;height:90px}.weapon_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-564px -1234px;width:90px;height:90px}.weapon_special_yeti{background-image:url(spritesmith3.png);background-position:-655px -1234px;width:90px;height:90px}.back_special_wondercon_black{background-image:url(spritesmith3.png);background-position:-746px -1234px;width:90px;height:90px}.back_special_wondercon_red{background-image:url(spritesmith3.png);background-position:-837px -1234px;width:90px;height:90px}.body_special_wondercon_black{background-image:url(spritesmith3.png);background-position:-928px -1234px;width:90px;height:90px}.body_special_wondercon_gold{background-image:url(spritesmith3.png);background-position:-1019px -1234px;width:90px;height:90px}.body_special_wondercon_red{background-image:url(spritesmith3.png);background-position:-1110px -1234px;width:90px;height:90px}.eyewear_special_wondercon_black{background-image:url(spritesmith3.png);background-position:-1201px -1234px;width:90px;height:90px}.eyewear_special_wondercon_red{background-image:url(spritesmith3.png);background-position:-1325px 0;width:90px;height:90px}.shop_back_special_wondercon_black{background-image:url(spritesmith3.png);background-position:-1457px -82px;width:40px;height:40px}.shop_back_special_wondercon_red{background-image:url(spritesmith3.png);background-position:-1457px -123px;width:40px;height:40px}.shop_body_special_wondercon_black{background-image:url(spritesmith3.png);background-position:-1457px -164px;width:40px;height:40px}.shop_body_special_wondercon_gold{background-image:url(spritesmith3.png);background-position:-1457px -205px;width:40px;height:40px}.shop_body_special_wondercon_red{background-image:url(spritesmith3.png);background-position:-1457px -246px;width:40px;height:40px}.shop_eyewear_special_wondercon_black{background-image:url(spritesmith3.png);background-position:-1457px -287px;width:40px;height:40px}.shop_eyewear_special_wondercon_red{background-image:url(spritesmith3.png);background-position:-1457px -328px;width:40px;height:40px}.head_0{background-image:url(spritesmith3.png);background-position:-1325px -91px;width:90px;height:90px}.customize-option.head_0{background-image:url(spritesmith3.png);background-position:-1350px -106px;width:60px;height:60px}.head_healer_1{background-image:url(spritesmith3.png);background-position:-1325px -182px;width:90px;height:90px}.head_healer_2{background-image:url(spritesmith3.png);background-position:-1325px -273px;width:90px;height:90px}.head_healer_3{background-image:url(spritesmith3.png);background-position:-1325px -364px;width:90px;height:90px}.head_healer_4{background-image:url(spritesmith3.png);background-position:-1325px -455px;width:90px;height:90px}.head_healer_5{background-image:url(spritesmith3.png);background-position:-1325px -546px;width:90px;height:90px}.head_rogue_1{background-image:url(spritesmith3.png);background-position:-1325px -637px;width:90px;height:90px}.head_rogue_2{background-image:url(spritesmith3.png);background-position:-1325px -728px;width:90px;height:90px}.head_rogue_3{background-image:url(spritesmith3.png);background-position:-1325px -819px;width:90px;height:90px}.head_rogue_4{background-image:url(spritesmith3.png);background-position:-1325px -910px;width:90px;height:90px}.head_rogue_5{background-image:url(spritesmith3.png);background-position:-1325px -1001px;width:90px;height:90px}.head_special_2{background-image:url(spritesmith3.png);background-position:-1325px -1092px;width:90px;height:90px}.head_warrior_1{background-image:url(spritesmith3.png);background-position:-1325px -1183px;width:90px;height:90px}.head_warrior_2{background-image:url(spritesmith3.png);background-position:0 -1325px;width:90px;height:90px}.head_warrior_3{background-image:url(spritesmith3.png);background-position:-91px -1325px;width:90px;height:90px}.head_warrior_4{background-image:url(spritesmith3.png);background-position:-182px -1325px;width:90px;height:90px}.head_warrior_5{background-image:url(spritesmith3.png);background-position:-273px -1325px;width:90px;height:90px}.head_wizard_1{background-image:url(spritesmith3.png);background-position:-364px -1325px;width:90px;height:90px}.head_wizard_2{background-image:url(spritesmith3.png);background-position:-455px -1325px;width:90px;height:90px}.head_wizard_3{background-image:url(spritesmith3.png);background-position:-546px -1325px;width:90px;height:90px}.head_wizard_4{background-image:url(spritesmith3.png);background-position:-637px -1325px;width:90px;height:90px}.head_wizard_5{background-image:url(spritesmith3.png);background-position:-182px -506px;width:90px;height:90px}.shop_head_healer_1{background-image:url(spritesmith3.png);background-position:-1457px -1271px;width:40px;height:40px}.shop_head_healer_2{background-image:url(spritesmith3.png);background-position:-1457px -1312px;width:40px;height:40px}.shop_head_healer_3{background-image:url(spritesmith3.png);background-position:-1457px -1353px;width:40px;height:40px}.shop_head_healer_4{background-image:url(spritesmith4.png);background-position:-1786px -1460px;width:40px;height:40px}.shop_head_healer_5{background-image:url(spritesmith4.png);background-position:-1704px -1214px;width:40px;height:40px}.shop_head_rogue_1{background-image:url(spritesmith4.png);background-position:-1827px -1460px;width:40px;height:40px}.shop_head_rogue_2{background-image:url(spritesmith4.png);background-position:-1827px -1214px;width:40px;height:40px}.shop_head_rogue_3{background-image:url(spritesmith4.png);background-position:-1827px -1255px;width:40px;height:40px}.shop_head_rogue_4{background-image:url(spritesmith4.png);background-position:-1950px -1255px;width:40px;height:40px}.shop_head_rogue_5{background-image:url(spritesmith4.png);background-position:-1868px -1296px;width:40px;height:40px}.shop_head_special_0{background-image:url(spritesmith4.png);background-position:-1704px -1419px;width:40px;height:40px}.shop_head_special_1{background-image:url(spritesmith4.png);background-position:-1786px -1419px;width:40px;height:40px}.shop_head_special_2{background-image:url(spritesmith4.png);background-position:-1950px -1419px;width:40px;height:40px}.shop_head_warrior_1{background-image:url(spritesmith4.png);background-position:-1991px -1419px;width:40px;height:40px}.shop_head_warrior_2{background-image:url(spritesmith4.png);background-position:-1704px -1460px;width:40px;height:40px}.shop_head_warrior_3{background-image:url(spritesmith4.png);background-position:-1745px -1460px;width:40px;height:40px}.shop_head_warrior_4{background-image:url(spritesmith4.png);background-position:-1950px -1583px;width:40px;height:40px}.shop_head_warrior_5{background-image:url(spritesmith4.png);background-position:-1909px -1583px;width:40px;height:40px}.shop_head_wizard_1{background-image:url(spritesmith4.png);background-position:-1868px -1583px;width:40px;height:40px}.shop_head_wizard_2{background-image:url(spritesmith4.png);background-position:-1827px -1583px;width:40px;height:40px}.shop_head_wizard_3{background-image:url(spritesmith4.png);background-position:-1786px -1583px;width:40px;height:40px}.shop_head_wizard_4{background-image:url(spritesmith4.png);background-position:-1745px -1583px;width:40px;height:40px}.shop_head_wizard_5{background-image:url(spritesmith4.png);background-position:-1704px -1583px;width:40px;height:40px}.shield_healer_1{background-image:url(spritesmith4.png);background-position:-1613px -1183px;width:90px;height:90px}.shield_healer_2{background-image:url(spritesmith4.png);background-position:-1613px -1274px;width:90px;height:90px}.shield_healer_3{background-image:url(spritesmith4.png);background-position:-1613px -1365px;width:90px;height:90px}.shield_healer_4{background-image:url(spritesmith4.png);background-position:-1613px -1456px;width:90px;height:90px}.shield_healer_5{background-image:url(spritesmith4.png);background-position:-810px -1602px;width:90px;height:90px}.shield_rogue_0{background-image:url(spritesmith4.png);background-position:-901px -1602px;width:90px;height:90px}.shield_rogue_1{background-image:url(spritesmith4.png);background-position:-992px -1602px;width:103px;height:90px}.shield_rogue_2{background-image:url(spritesmith4.png);background-position:-780px -1405px;width:103px;height:90px}.shield_rogue_3{background-image:url(spritesmith4.png);background-position:-884px -1405px;width:114px;height:90px}.shield_rogue_4{background-image:url(spritesmith4.png);background-position:-1420px -1050px;width:96px;height:90px}.shield_rogue_5{background-image:url(spritesmith4.png);background-position:-999px -1405px;width:114px;height:90px}.shield_rogue_6{background-image:url(spritesmith4.png);background-position:-1114px -1405px;width:114px;height:90px}.shield_special_1{background-image:url(spritesmith4.png);background-position:-1613px -273px;width:90px;height:90px}.shield_special_goldenknight{background-image:url(spritesmith4.png);background-position:0 -1602px;width:111px;height:90px}.shield_warrior_1{background-image:url(spritesmith4.png);background-position:-1613px -364px;width:90px;height:90px}.shield_warrior_2{background-image:url(spritesmith4.png);background-position:-1613px -455px;width:90px;height:90px}.shield_warrior_3{background-image:url(spritesmith4.png);background-position:-1613px -546px;width:90px;height:90px}.shield_warrior_4{background-image:url(spritesmith4.png);background-position:-1613px -728px;width:90px;height:90px}.shield_warrior_5{background-image:url(spritesmith4.png);background-position:-1613px -1001px;width:90px;height:90px}.shop_shield_healer_1{background-image:url(spritesmith4.png);background-position:-1991px -1542px;width:40px;height:40px}.shop_shield_healer_2{background-image:url(spritesmith4.png);background-position:-1950px -1542px;width:40px;height:40px}.shop_shield_healer_3{background-image:url(spritesmith4.png);background-position:-1909px -1542px;width:40px;height:40px}.shop_shield_healer_4{background-image:url(spritesmith4.png);background-position:-1868px -1542px;width:40px;height:40px}.shop_shield_healer_5{background-image:url(spritesmith4.png);background-position:-1827px -1542px;width:40px;height:40px}.shop_shield_rogue_0{background-image:url(spritesmith4.png);background-position:-1786px -1542px;width:40px;height:40px}.shop_shield_rogue_1{background-image:url(spritesmith4.png);background-position:-1745px -1542px;width:40px;height:40px}.shop_shield_rogue_2{background-image:url(spritesmith4.png);background-position:-1704px -1542px;width:40px;height:40px}.shop_shield_rogue_3{background-image:url(spritesmith4.png);background-position:-1991px -1501px;width:40px;height:40px}.shop_shield_rogue_4{background-image:url(spritesmith4.png);background-position:-1950px -1501px;width:40px;height:40px}.shop_shield_rogue_5{background-image:url(spritesmith4.png);background-position:-1909px -1501px;width:40px;height:40px}.shop_shield_rogue_6{background-image:url(spritesmith4.png);background-position:-1868px -1501px;width:40px;height:40px}.shop_shield_special_0{background-image:url(spritesmith4.png);background-position:-1827px -1501px;width:40px;height:40px}.shop_shield_special_1{background-image:url(spritesmith4.png);background-position:-1786px -1501px;width:40px;height:40px}.shop_shield_special_goldenknight{background-image:url(spritesmith4.png);background-position:-1745px -1501px;width:40px;height:40px}.shop_shield_warrior_1{background-image:url(spritesmith4.png);background-position:-1704px -1501px;width:40px;height:40px}.shop_shield_warrior_2{background-image:url(spritesmith4.png);background-position:-1991px -1460px;width:40px;height:40px}.shop_shield_warrior_3{background-image:url(spritesmith4.png);background-position:-1950px -1460px;width:40px;height:40px}.shop_shield_warrior_4{background-image:url(spritesmith4.png);background-position:-1909px -1460px;width:40px;height:40px}.shop_shield_warrior_5{background-image:url(spritesmith4.png);background-position:-1991px -1378px;width:40px;height:40px}.shop_weapon_healer_0{background-image:url(spritesmith4.png);background-position:-1909px -1378px;width:40px;height:40px}.shop_weapon_healer_1{background-image:url(spritesmith4.png);background-position:-1991px -1583px;width:40px;height:40px}.shop_weapon_healer_2{background-image:url(spritesmith4.png);background-position:-1827px -1378px;width:40px;height:40px}.shop_weapon_healer_3{background-image:url(spritesmith4.png);background-position:-1786px -1378px;width:40px;height:40px}.shop_weapon_healer_4{background-image:url(spritesmith4.png);background-position:-1745px -1378px;width:40px;height:40px}.shop_weapon_healer_5{background-image:url(spritesmith4.png);background-position:-1704px -1378px;width:40px;height:40px}.shop_weapon_healer_6{background-image:url(spritesmith4.png);background-position:-1991px -1337px;width:40px;height:40px}.shop_weapon_rogue_0{background-image:url(spritesmith4.png);background-position:-1950px -1337px;width:40px;height:40px}.shop_weapon_rogue_1{background-image:url(spritesmith4.png);background-position:-1909px -1337px;width:40px;height:40px}.shop_weapon_rogue_2{background-image:url(spritesmith4.png);background-position:-1868px -1337px;width:40px;height:40px}.shop_weapon_rogue_3{background-image:url(spritesmith4.png);background-position:-1827px -1337px;width:40px;height:40px}.shop_weapon_rogue_4{background-image:url(spritesmith4.png);background-position:-1786px -1337px;width:40px;height:40px}.shop_weapon_rogue_5{background-image:url(spritesmith4.png);background-position:-1745px -1337px;width:40px;height:40px}.shop_weapon_rogue_6{background-image:url(spritesmith4.png);background-position:-1704px -1337px;width:40px;height:40px}.shop_weapon_special_0{background-image:url(spritesmith4.png);background-position:-1991px -1296px;width:40px;height:40px}.shop_weapon_special_1{background-image:url(spritesmith4.png);background-position:-1950px -1296px;width:40px;height:40px}.shop_weapon_special_2{background-image:url(spritesmith4.png);background-position:-1909px -1296px;width:40px;height:40px}.shop_weapon_special_3{background-image:url(spritesmith4.png);background-position:-1827px -1296px;width:40px;height:40px}.shop_weapon_special_critical{background-image:url(spritesmith4.png);background-position:-1786px -1296px;width:40px;height:40px}.shop_weapon_warrior_0{background-image:url(spritesmith4.png);background-position:-1745px -1296px;width:40px;height:40px}.shop_weapon_warrior_1{background-image:url(spritesmith4.png);background-position:-1704px -1296px;width:40px;height:40px}.shop_weapon_warrior_2{background-image:url(spritesmith4.png);background-position:-1991px -1255px;width:40px;height:40px}.shop_weapon_warrior_3{background-image:url(spritesmith4.png);background-position:-1909px -1255px;width:40px;height:40px}.shop_weapon_warrior_4{background-image:url(spritesmith4.png);background-position:-1868px -1255px;width:40px;height:40px}.shop_weapon_warrior_5{background-image:url(spritesmith4.png);background-position:-1786px -1255px;width:40px;height:40px}.shop_weapon_warrior_6{background-image:url(spritesmith4.png);background-position:-1745px -1255px;width:40px;height:40px}.shop_weapon_wizard_0{background-image:url(spritesmith4.png);background-position:-1704px -1255px;width:40px;height:40px}.shop_weapon_wizard_1{background-image:url(spritesmith4.png);background-position:-1991px -1214px;width:40px;height:40px}.shop_weapon_wizard_2{background-image:url(spritesmith4.png);background-position:-1950px -1214px;width:40px;height:40px}.shop_weapon_wizard_3{background-image:url(spritesmith4.png);background-position:-1909px -1214px;width:40px;height:40px}.shop_weapon_wizard_4{background-image:url(spritesmith4.png);background-position:-1868px -1214px;width:40px;height:40px}.shop_weapon_wizard_5{background-image:url(spritesmith4.png);background-position:-1786px -1214px;width:40px;height:40px}.shop_weapon_wizard_6{background-image:url(spritesmith4.png);background-position:-1745px -1214px;width:40px;height:40px}.weapon_healer_0{background-image:url(spritesmith4.png);background-position:-1218px -1037px;width:90px;height:90px}.weapon_healer_1{background-image:url(spritesmith4.png);background-position:-1229px -1405px;width:90px;height:90px}.weapon_healer_2{background-image:url(spritesmith4.png);background-position:-1320px -1405px;width:90px;height:90px}.weapon_healer_3{background-image:url(spritesmith4.png);background-position:-1411px -1405px;width:90px;height:90px}.weapon_healer_4{background-image:url(spritesmith4.png);background-position:-1522px 0;width:90px;height:90px}.weapon_healer_5{background-image:url(spritesmith4.png);background-position:-1522px -91px;width:90px;height:90px}.weapon_healer_6{background-image:url(spritesmith4.png);background-position:-1522px -182px;width:90px;height:90px}.weapon_rogue_0{background-image:url(spritesmith4.png);background-position:-1522px -273px;width:90px;height:90px}.weapon_rogue_1{background-image:url(spritesmith4.png);background-position:-1522px -364px;width:90px;height:90px}.weapon_rogue_2{background-image:url(spritesmith4.png);background-position:-1522px -455px;width:90px;height:90px}.weapon_rogue_3{background-image:url(spritesmith4.png);background-position:-1522px -546px;width:90px;height:90px}.weapon_rogue_4{background-image:url(spritesmith4.png);background-position:-1522px -637px;width:90px;height:90px}.weapon_rogue_5{background-image:url(spritesmith4.png);background-position:-1522px -728px;width:90px;height:90px}.weapon_rogue_6{background-image:url(spritesmith4.png);background-position:-1522px -819px;width:90px;height:90px}.weapon_special_1{background-image:url(spritesmith4.png);background-position:0 -1511px;width:102px;height:90px}.weapon_special_2{background-image:url(spritesmith4.png);background-position:-1522px -910px;width:90px;height:90px}.weapon_special_3{background-image:url(spritesmith4.png);background-position:-1522px -1001px;width:90px;height:90px}.weapon_warrior_0{background-image:url(spritesmith4.png);background-position:-1522px -1092px;width:90px;height:90px}.weapon_warrior_1{background-image:url(spritesmith4.png);background-position:-1522px -1183px;width:90px;height:90px}.weapon_warrior_2{background-image:url(spritesmith4.png);background-position:-1522px -1274px;width:90px;height:90px}.weapon_warrior_3{background-image:url(spritesmith4.png);background-position:-1522px -1365px;width:90px;height:90px}.weapon_warrior_4{background-image:url(spritesmith4.png);background-position:-103px -1511px;width:90px;height:90px}.weapon_warrior_5{background-image:url(spritesmith4.png);background-position:-194px -1511px;width:90px;height:90px}.weapon_warrior_6{background-image:url(spritesmith4.png);background-position:-285px -1511px;width:90px;height:90px}.weapon_wizard_0{background-image:url(spritesmith4.png);background-position:-376px -1511px;width:90px;height:90px}.weapon_wizard_1{background-image:url(spritesmith4.png);background-position:-467px -1511px;width:90px;height:90px}.weapon_wizard_2{background-image:url(spritesmith4.png);background-position:-558px -1511px;width:90px;height:90px}.weapon_wizard_3{background-image:url(spritesmith4.png);background-position:-649px -1511px;width:90px;height:90px}.weapon_wizard_4{background-image:url(spritesmith4.png);background-position:-740px -1511px;width:90px;height:90px}.weapon_wizard_5{background-image:url(spritesmith4.png);background-position:-831px -1511px;width:90px;height:90px}.weapon_wizard_6{background-image:url(spritesmith4.png);background-position:-922px -1511px;width:90px;height:90px}.GrimReaper{background-image:url(spritesmith4.png);background-position:-1704px -160px;width:57px;height:66px}.Pet_Currency_Gem{background-image:url(spritesmith4.png);background-position:-1704px -1624px;width:45px;height:39px}.Pet_Currency_Gem1x{background-image:url(spritesmith4.png);background-position:-1994px -268px;width:15px;height:13px}.Pet_Currency_Gem2x{background-image:url(spritesmith4.png);background-position:-1998px -597px;width:30px;height:26px}.PixelPaw-Gold{background-image:url(spritesmith4.png);background-position:-1820px -282px;width:51px;height:51px}.PixelPaw{background-image:url(spritesmith4.png);background-position:-1802px -337px;width:51px;height:51px}.PixelPaw002{background-image:url(spritesmith4.png);background-position:-1970px -282px;width:51px;height:51px}.avatar_floral_healer{background-image:url(spritesmith4.png);background-position:-1420px -838px;width:99px;height:99px}.avatar_floral_rogue{background-image:url(spritesmith4.png);background-position:-1420px -732px;width:99px;height:99px}.avatar_floral_warrior{background-image:url(spritesmith4.png);background-position:-1420px -626px;width:99px;height:99px}.avatar_floral_wizard{background-image:url(spritesmith4.png);background-position:-1420px -520px;width:99px;height:99px}.inventory_present{background-image:url(spritesmith4.png);background-position:-1872px -282px;width:48px;height:51px}.inventory_quest_scroll{background-image:url(spritesmith4.png);background-position:-1985px -160px;width:48px;height:51px}.inventory_quest_scroll_locked{background-image:url(spritesmith4.png);background-position:-1851px -649px;width:48px;height:51px}.inventory_special_fortify{background-image:url(spritesmith4.png);background-position:-1927px -160px;width:57px;height:54px}.inventory_special_nye{background-image:url(spritesmith4.png);background-position:-1704px -227px;width:57px;height:54px}.inventory_special_opaquePotion{background-image:url(spritesmith4.png);background-position:-1868px -1460px;width:40px;height:40px}.inventory_special_shinySeed{background-image:url(spritesmith4.png);background-position:-1762px -227px;width:57px;height:54px}.inventory_special_snowball{background-image:url(spritesmith4.png);background-position:-1820px -227px;width:57px;height:54px}.inventory_special_spookDust{background-image:url(spritesmith4.png);background-position:-1878px -227px;width:57px;height:54px}.inventory_special_trinket{background-image:url(spritesmith4.png);background-position:-1704px -337px;width:48px;height:51px}.inventory_special_valentine{background-image:url(spritesmith4.png);background-position:-1704px -282px;width:57px;height:54px}.pet_key{background-image:url(spritesmith4.png);background-position:-1936px -227px;width:57px;height:54px}.rebirth_orb{background-image:url(spritesmith4.png);background-position:-1762px -282px;width:57px;height:54px}.snowman{background-image:url(spritesmith4.png);background-position:-628px -1602px;width:90px;height:90px}.spookman{background-image:url(spritesmith4.png);background-position:-719px -1602px;width:90px;height:90px}.zzz{background-image:url(spritesmith4.png);background-position:-1994px -227px;width:40px;height:40px}.zzz_light{background-image:url(spritesmith4.png);background-position:-1868px -1378px;width:40px;height:40px}.npc_alex{background-image:url(spritesmith4.png);background-position:-753px -1037px;width:162px;height:138px}.npc_bailey{background-image:url(spritesmith4.png);background-position:-1857px -84px;width:60px;height:72px}.npc_daniel{background-image:url(spritesmith4.png);background-position:-1314px -275px;width:135px;height:123px}.npc_ian{background-image:url(spritesmith4.png);background-position:-1314px -139px;width:75px;height:135px}.npc_justin{background-image:url(spritesmith4.png);background-position:-1314px -399px;width:84px;height:120px}.npc_justin_head{background-image:url(spritesmith4.png);background-position:-1998px -389px;width:36px;height:39px}.npc_matt{background-image:url(spritesmith4.png);background-position:-916px -1037px;width:195px;height:138px}.npc_timetravelers{background-image:url(spritesmith4.png);background-position:-1100px -465px;width:195px;height:138px}.npc_timetravelers_active{background-image:url(spritesmith4.png);background-position:-1100px -604px;width:195px;height:138px}.npc_tyler{background-image:url(spritesmith4.png);background-position:-1613px -1092px;width:90px;height:90px}.seasonalshop_closed{background-image:url(spritesmith4.png);background-position:-1100px -743px;width:162px;height:138px}.seasonalshop_spring2015{background-image:url(spritesmith4.png);background-position:-1100px -882px;width:162px;height:138px}.2014_Fall_HealerPROMO2{background-image:url(spritesmith4.png);background-position:-1613px -910px;width:90px;height:90px}.2014_Fall_Mage_PROMO9{background-image:url(spritesmith4.png);background-position:-218px -1602px;width:120px;height:90px}.2014_Fall_RoguePROMO3{background-image:url(spritesmith4.png);background-position:-112px -1602px;width:105px;height:90px}.2014_Fall_Warrior_PROMO{background-image:url(spritesmith4.png);background-position:-1613px -819px;width:90px;height:90px}.promo_item_notif{background-image:url(spritesmith4.png);background-position:-530px -1405px;width:249px;height:102px}.promo_mystery_201405{background-image:url(spritesmith4.png);background-position:-1613px -637px;width:90px;height:90px}.promo_mystery_201406{background-image:url(spritesmith4.png);background-position:-1420px -944px;width:90px;height:96px}.promo_mystery_201407{background-image:url(spritesmith4.png);background-position:-1884px -160px;width:42px;height:62px}.promo_mystery_201408{background-image:url(spritesmith4.png);background-position:-1918px -84px;width:60px;height:71px}.promo_mystery_201409{background-image:url(spritesmith4.png);background-position:-1613px -182px;width:90px;height:90px}.promo_mystery_201410{background-image:url(spritesmith4.png);background-position:-1762px -160px;width:72px;height:63px}.promo_mystery_201411{background-image:url(spritesmith4.png);background-position:-1613px -91px;width:90px;height:90px}.promo_mystery_201412{background-image:url(spritesmith4.png);background-position:-1979px -84px;width:42px;height:66px}.promo_mystery_201501{background-image:url(spritesmith4.png);background-position:-1835px -160px;width:48px;height:63px}.promo_mystery_201502{background-image:url(spritesmith4.png);background-position:-1613px 0;width:90px;height:90px}.promo_mystery_201503{background-image:url(spritesmith4.png);background-position:-1520px -1511px;width:90px;height:90px}.promo_mystery_3014{background-image:url(spritesmith4.png);background-position:-1302px -1511px;width:217px;height:90px}.promo_partyhats{background-image:url(spritesmith4.png);background-position:-1796px -1117px;width:115px;height:47px}.promo_pastel_skin{background-image:url(spritesmith4.png);background-position:-1704px 0;width:330px;height:83px}.customize-option.promo_pastel_skin{background-image:url(spritesmith4.png);background-position:-1729px -15px;width:60px;height:60px}.promo_shimmer_hair{background-image:url(spritesmith4.png);background-position:-1096px -1602px;width:330px;height:83px}.customize-option.promo_shimmer_hair{background-image:url(spritesmith4.png);background-position:-1121px -1617px;width:60px;height:60px}.promo_springclasses2014{background-image:url(spritesmith4.png);background-position:-1013px -1511px;width:288px;height:90px}.promo_springclasses2015{background-image:url(spritesmith4.png);background-position:-339px -1602px;width:288px;height:90px}.promo_updos{background-image:url(spritesmith4.png);background-position:-1100px -175px;width:156px;height:147px}.promo_winterclasses2015{background-image:url(spritesmith4.png);background-position:0 -1188px;width:325px;height:110px}.promo_winteryhair{background-image:url(spritesmith4.png);background-position:-1704px -84px;width:152px;height:75px}.customize-option.promo_winteryhair{background-image:url(spritesmith4.png);background-position:-1729px -99px;width:60px;height:60px}.inventory_quest_scroll_atom1{background-image:url(spritesmith4.png);background-position:-1854px -337px;width:48px;height:51px}.inventory_quest_scroll_atom2{background-image:url(spritesmith4.png);background-position:-1903px -337px;width:48px;height:51px}.inventory_quest_scroll_atom2_locked{background-image:url(spritesmith4.png);background-position:-1952px -337px;width:48px;height:51px}.inventory_quest_scroll_atom3{background-image:url(spritesmith4.png);background-position:-1704px -389px;width:48px;height:51px}.inventory_quest_scroll_atom3_locked{background-image:url(spritesmith4.png);background-position:-1753px -389px;width:48px;height:51px}.inventory_quest_scroll_basilist{background-image:url(spritesmith4.png);background-position:-1802px -389px;width:48px;height:51px}.inventory_quest_scroll_bunny{background-image:url(spritesmith4.png);background-position:-1851px -389px;width:48px;height:51px}.inventory_quest_scroll_dilatory_derby{background-image:url(spritesmith4.png);background-position:-1900px -389px;width:48px;height:51px}.inventory_quest_scroll_egg{background-image:url(spritesmith4.png);background-position:-1949px -389px;width:48px;height:51px}.inventory_quest_scroll_evilsanta{background-image:url(spritesmith4.png);background-position:-1704px -441px;width:48px;height:51px}.inventory_quest_scroll_evilsanta2{background-image:url(spritesmith4.png);background-position:-1753px -441px;width:48px;height:51px}.inventory_quest_scroll_ghost_stag{background-image:url(spritesmith4.png);background-position:-1802px -441px;width:48px;height:51px}.inventory_quest_scroll_goldenknight1{background-image:url(spritesmith4.png);background-position:-1851px -441px;width:48px;height:51px}.inventory_quest_scroll_goldenknight2{background-image:url(spritesmith4.png);background-position:-1900px -441px;width:48px;height:51px}.inventory_quest_scroll_goldenknight2_locked{background-image:url(spritesmith4.png);background-position:-1949px -441px;width:48px;height:51px}.inventory_quest_scroll_goldenknight3{background-image:url(spritesmith4.png);background-position:-1704px -493px;width:48px;height:51px}.inventory_quest_scroll_goldenknight3_locked{background-image:url(spritesmith4.png);background-position:-1753px -493px;width:48px;height:51px}.inventory_quest_scroll_gryphon{background-image:url(spritesmith4.png);background-position:-1802px -493px;width:48px;height:51px}.inventory_quest_scroll_harpy{background-image:url(spritesmith4.png);background-position:-1851px -493px;width:48px;height:51px}.inventory_quest_scroll_hedgehog{background-image:url(spritesmith4.png);background-position:-1900px -493px;width:48px;height:51px}.inventory_quest_scroll_moonstone1{background-image:url(spritesmith4.png);background-position:-1949px -493px;width:48px;height:51px}.inventory_quest_scroll_moonstone2{background-image:url(spritesmith4.png);background-position:-1704px -545px;width:48px;height:51px}.inventory_quest_scroll_moonstone2_locked{background-image:url(spritesmith4.png);background-position:-1753px -545px;width:48px;height:51px}.inventory_quest_scroll_moonstone3{background-image:url(spritesmith4.png);background-position:-1802px -545px;width:48px;height:51px}.inventory_quest_scroll_moonstone3_locked{background-image:url(spritesmith4.png);background-position:-1851px -545px;width:48px;height:51px}.inventory_quest_scroll_octopus{background-image:url(spritesmith4.png);background-position:-1900px -545px;width:48px;height:51px}.inventory_quest_scroll_owl{background-image:url(spritesmith4.png);background-position:-1949px -545px;width:48px;height:51px}.inventory_quest_scroll_penguin{background-image:url(spritesmith4.png);background-position:-1704px -597px;width:48px;height:51px}.inventory_quest_scroll_rat{background-image:url(spritesmith4.png);background-position:-1753px -597px;width:48px;height:51px}.inventory_quest_scroll_rock{background-image:url(spritesmith4.png);background-position:-1802px -597px;width:48px;height:51px}.inventory_quest_scroll_rooster{background-image:url(spritesmith4.png);background-position:-1851px -597px;width:48px;height:51px}.inventory_quest_scroll_slime{background-image:url(spritesmith4.png);background-position:-1900px -597px;width:48px;height:51px}.inventory_quest_scroll_spider{background-image:url(spritesmith4.png);background-position:-1949px -597px;width:48px;height:51px}.inventory_quest_scroll_trex{background-image:url(spritesmith4.png);background-position:-1704px -649px;width:48px;height:51px}.inventory_quest_scroll_trex_undead{background-image:url(spritesmith4.png);background-position:-1753px -649px;width:48px;height:51px}.inventory_quest_scroll_vice1{background-image:url(spritesmith4.png);background-position:-1802px -649px;width:48px;height:51px}.inventory_quest_scroll_vice2{background-image:url(spritesmith4.png);background-position:-1704px -1117px;width:48px;height:51px}.inventory_quest_scroll_vice2_locked{background-image:url(spritesmith4.png);background-position:-1900px -649px;width:48px;height:51px}.inventory_quest_scroll_vice3{background-image:url(spritesmith4.png);background-position:-1949px -649px;width:48px;height:51px}.inventory_quest_scroll_vice3_locked{background-image:url(spritesmith4.png);background-position:-1704px -701px;width:48px;height:51px}.quest_atom1{background-image:url(spritesmith4.png);background-position:-251px -1037px;width:250px;height:150px}.quest_atom2{background-image:url(spritesmith4.png);background-position:-1314px 0;width:207px;height:138px}.quest_atom3{background-image:url(spritesmith4.png);background-position:-622px -672px;width:216px;height:180px}.quest_basilist{background-image:url(spritesmith4.png);background-position:-1100px -323px;width:189px;height:141px}.quest_bunny{background-image:url(spritesmith4.png);background-position:0 -672px;width:210px;height:186px}.quest_dilatory{background-image:url(spritesmith4.png);background-position:-660px 0;width:219px;height:219px}.quest_dilatory_derby{background-image:url(spritesmith4.png);background-position:-660px -220px;width:219px;height:219px}.quest_egg_plainEgg{background-image:url(spritesmith4.png);background-position:-1753px -701px;width:48px;height:51px}.quest_evilsanta{background-image:url(spritesmith4.png);background-position:-1390px -139px;width:118px;height:131px}.quest_ghost_stag{background-image:url(spritesmith4.png);background-position:0 -452px;width:219px;height:219px}.quest_goldenknight1_testimony{background-image:url(spritesmith4.png);background-position:-1802px -701px;width:48px;height:51px}.quest_goldenknight2{background-image:url(spritesmith4.png);background-position:-502px -1037px;width:250px;height:150px}.quest_goldenknight3{background-image:url(spritesmith4.png);background-position:0 0;width:219px;height:231px}.quest_gryphon{background-image:url(spritesmith4.png);background-position:-839px -672px;width:216px;height:177px}.quest_harpy{background-image:url(spritesmith4.png);background-position:-880px 0;width:219px;height:219px}.quest_hedgehog{background-image:url(spritesmith4.png);background-position:-211px -672px;width:219px;height:186px}.quest_moonstone1_moonstone{background-image:url(spritesmith4.png);background-position:-1998px -545px;width:30px;height:30px}.quest_moonstone2{background-image:url(spritesmith4.png);background-position:-880px -220px;width:219px;height:219px}.quest_moonstone3{background-image:url(spritesmith4.png);background-position:-220px 0;width:219px;height:219px}.quest_octopus{background-image:url(spritesmith4.png);background-position:0 -859px;width:222px;height:177px}.quest_owl{background-image:url(spritesmith4.png);background-position:-660px -452px;width:219px;height:219px}.quest_penguin{background-image:url(spritesmith4.png);background-position:-431px -672px;width:190px;height:183px}.quest_rat{background-image:url(spritesmith4.png);background-position:-220px -452px;width:219px;height:219px}.quest_rock{background-image:url(spritesmith4.png);background-position:-880px -440px;width:216px;height:216px}.quest_rooster{background-image:url(spritesmith4.png);background-position:-1100px 0;width:213px;height:174px}.quest_slime{background-image:url(spritesmith4.png);background-position:-440px -232px;width:219px;height:219px}.quest_spider{background-image:url(spritesmith4.png);background-position:0 -1037px;width:250px;height:150px}.quest_stressbeast{background-image:url(spritesmith4.png);background-position:-220px -232px;width:219px;height:219px}.quest_stressbeast_bailey{background-image:url(spritesmith4.png);background-position:0 -232px;width:219px;height:219px}.quest_stressbeast_guide{background-image:url(spritesmith4.png);background-position:-440px -452px;width:219px;height:219px}.quest_stressbeast_stables{background-image:url(spritesmith4.png);background-position:-440px 0;width:219px;height:219px}.quest_trex{background-image:url(spritesmith4.png);background-position:-440px -859px;width:204px;height:177px}.quest_trex_undead{background-image:url(spritesmith4.png);background-position:-223px -859px;width:216px;height:177px}.quest_vice1{background-image:url(spritesmith4.png);background-position:-862px -859px;width:216px;height:177px}.quest_vice2_lightCrystal{background-image:url(spritesmith4.png);background-position:-1950px -1378px;width:40px;height:40px}.quest_vice3{background-image:url(spritesmith4.png);background-position:-645px -859px;width:216px;height:177px}.shop_copper{background-image:url(spritesmith4.png);background-position:-1998px -624px;width:32px;height:22px}.shop_eyes{background-image:url(spritesmith4.png);background-position:-1745px -1419px;width:40px;height:40px}.shop_gold{background-image:url(spritesmith4.png);background-position:-1998px -649px;width:32px;height:22px}.shop_opaquePotion{background-image:url(spritesmith4.png);background-position:-1827px -1419px;width:40px;height:40px}.shop_potion{background-image:url(spritesmith4.png);background-position:-1868px -1419px;width:40px;height:40px}.shop_reroll{background-image:url(spritesmith4.png);background-position:-1909px -1419px;width:40px;height:40px}.shop_shinySeed{background-image:url(spritesmith4.png);background-position:-2001px -337px;width:32px;height:32px}.shop_silver{background-image:url(spritesmith4.png);background-position:-1998px -672px;width:32px;height:22px}.shop_snowball{background-image:url(spritesmith4.png);background-position:-1998px -493px;width:32px;height:32px}.shop_spookDust{background-image:url(spritesmith4.png);background-position:-1998px -441px;width:32px;height:32px}.Pet_Egg_BearCub{background-image:url(spritesmith4.png);background-position:-1851px -701px;width:48px;height:51px}.Pet_Egg_Bunny{background-image:url(spritesmith4.png);background-position:-1900px -701px;width:48px;height:51px}.Pet_Egg_Cactus{background-image:url(spritesmith4.png);background-position:-1949px -701px;width:48px;height:51px}.Pet_Egg_Deer{background-image:url(spritesmith4.png);background-position:-1704px -753px;width:48px;height:51px}.Pet_Egg_Dragon{background-image:url(spritesmith4.png);background-position:-1753px -753px;width:48px;height:51px}.Pet_Egg_Egg{background-image:url(spritesmith4.png);background-position:-1802px -753px;width:48px;height:51px}.Pet_Egg_FlyingPig{background-image:url(spritesmith4.png);background-position:-1851px -753px;width:48px;height:51px}.Pet_Egg_Fox{background-image:url(spritesmith4.png);background-position:-1900px -753px;width:48px;height:51px}.Pet_Egg_Gryphon{background-image:url(spritesmith4.png);background-position:-1949px -753px;width:48px;height:51px}.Pet_Egg_Hedgehog{background-image:url(spritesmith4.png);background-position:-1704px -805px;width:48px;height:51px}.Pet_Egg_LionCub{background-image:url(spritesmith4.png);background-position:-1753px -805px;width:48px;height:51px}.Pet_Egg_Octopus{background-image:url(spritesmith4.png);background-position:-1802px -805px;width:48px;height:51px}.Pet_Egg_Owl{background-image:url(spritesmith4.png);background-position:-1851px -805px;width:48px;height:51px}.Pet_Egg_PandaCub{background-image:url(spritesmith4.png);background-position:-1900px -805px;width:48px;height:51px}.Pet_Egg_Parrot{background-image:url(spritesmith4.png);background-position:-1949px -805px;width:48px;height:51px}.Pet_Egg_Penguin{background-image:url(spritesmith4.png);background-position:-1704px -857px;width:48px;height:51px}.Pet_Egg_PolarBear{background-image:url(spritesmith4.png);background-position:-1753px -857px;width:48px;height:51px}.Pet_Egg_Rat{background-image:url(spritesmith4.png);background-position:-1802px -857px;width:48px;height:51px}.Pet_Egg_Rock{background-image:url(spritesmith4.png);background-position:-1851px -857px;width:48px;height:51px}.Pet_Egg_Rooster{background-image:url(spritesmith4.png);background-position:-1900px -857px;width:48px;height:51px}.Pet_Egg_Seahorse{background-image:url(spritesmith4.png);background-position:-1949px -857px;width:48px;height:51px}.Pet_Egg_Slime{background-image:url(spritesmith4.png);background-position:-1704px -909px;width:48px;height:51px}.Pet_Egg_Spider{background-image:url(spritesmith4.png);background-position:-1753px -909px;width:48px;height:51px}.Pet_Egg_TRex{background-image:url(spritesmith4.png);background-position:-1802px -909px;width:48px;height:51px}.Pet_Egg_TigerCub{background-image:url(spritesmith4.png);background-position:-1851px -909px;width:48px;height:51px}.Pet_Egg_Wolf{background-image:url(spritesmith4.png);background-position:-1900px -909px;width:48px;height:51px}.Pet_Food_Cake_Base{background-image:url(spritesmith4.png);background-position:-1926px -1169px;width:43px;height:43px}.Pet_Food_Cake_CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1839px -1169px;width:42px;height:44px}.Pet_Food_Cake_CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1912px -1117px;width:43px;height:45px}.Pet_Food_Cake_Desert{background-image:url(spritesmith4.png);background-position:-1882px -1169px;width:43px;height:44px}.Pet_Food_Cake_Golden{background-image:url(spritesmith4.png);background-position:-1970px -1169px;width:43px;height:42px}.Pet_Food_Cake_Red{background-image:url(spritesmith4.png);background-position:-1956px -1117px;width:43px;height:44px}.Pet_Food_Cake_Shade{background-image:url(spritesmith4.png);background-position:-1795px -1169px;width:43px;height:44px}.Pet_Food_Cake_Skeleton{background-image:url(spritesmith4.png);background-position:-1753px -1117px;width:42px;height:47px}.Pet_Food_Cake_White{background-image:url(spritesmith4.png);background-position:-1750px -1169px;width:44px;height:44px}.Pet_Food_Cake_Zombie{background-image:url(spritesmith4.png);background-position:-1704px -1169px;width:45px;height:44px}.Pet_Food_Candy_Base{background-image:url(spritesmith4.png);background-position:-1851px -1013px;width:48px;height:51px}.Pet_Food_Candy_CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1900px -1013px;width:48px;height:51px}.Pet_Food_Candy_CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1949px -1013px;width:48px;height:51px}.Pet_Food_Candy_Desert{background-image:url(spritesmith4.png);background-position:-1704px -1065px;width:48px;height:51px}.Pet_Food_Candy_Golden{background-image:url(spritesmith4.png);background-position:-1753px -1065px;width:48px;height:51px}.Pet_Food_Candy_Red{background-image:url(spritesmith4.png);background-position:-1802px -1065px;width:48px;height:51px}.Pet_Food_Candy_Shade{background-image:url(spritesmith4.png);background-position:-1851px -1065px;width:48px;height:51px}.Pet_Food_Candy_Skeleton{background-image:url(spritesmith4.png);background-position:-1900px -1065px;width:48px;height:51px}.Pet_Food_Candy_White{background-image:url(spritesmith4.png);background-position:-1949px -1065px;width:48px;height:51px}.Pet_Food_Candy_Zombie{background-image:url(spritesmith4.png);background-position:-1802px -1013px;width:48px;height:51px}.Pet_Food_Chocolate{background-image:url(spritesmith4.png);background-position:-1753px -1013px;width:48px;height:51px}.Pet_Food_CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1704px -1013px;width:48px;height:51px}.Pet_Food_CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1949px -961px;width:48px;height:51px}.Pet_Food_Fish{background-image:url(spritesmith4.png);background-position:-1900px -961px;width:48px;height:51px}.Pet_Food_Honey{background-image:url(spritesmith4.png);background-position:-1851px -961px;width:48px;height:51px}.Pet_Food_Meat{background-image:url(spritesmith4.png);background-position:-1802px -961px;width:48px;height:51px}.Pet_Food_Milk{background-image:url(spritesmith4.png);background-position:-1753px -961px;width:48px;height:51px}.Pet_Food_Potatoe{background-image:url(spritesmith4.png);background-position:-1704px -961px;width:48px;height:51px}.Pet_Food_RottenMeat{background-image:url(spritesmith4.png);background-position:-1949px -909px;width:48px;height:51px}.Pet_Food_Saddle{background-image:url(spritesmith4.png);background-position:-1921px -282px;width:48px;height:51px}.Pet_Food_Strawberry{background-image:url(spritesmith4.png);background-position:-1753px -337px;width:48px;height:51px}.Mount_Body_BearCub-Base{background-image:url(spritesmith4.png);background-position:-848px -1299px;width:105px;height:105px}.Mount_Body_BearCub-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:0 -1299px;width:105px;height:105px}.Mount_Body_BearCub-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1060px -1299px;width:105px;height:105px}.Mount_Body_BearCub-Desert{background-image:url(spritesmith4.png);background-position:-1166px -1299px;width:105px;height:105px}.Mount_Body_BearCub-Golden{background-image:url(spritesmith4.png);background-position:-1272px -1299px;width:105px;height:105px}.Mount_Body_BearCub-Polar{background-image:url(spritesmith4.png);background-position:-1314px -520px;width:105px;height:105px}.Mount_Body_BearCub-Red{background-image:url(spritesmith4.png);background-position:-1314px -626px;width:105px;height:105px}.Mount_Body_BearCub-Shade{background-image:url(spritesmith4.png);background-position:-1314px -732px;width:105px;height:105px}.Mount_Body_BearCub-Skeleton{background-image:url(spritesmith4.png);background-position:-1314px -838px;width:105px;height:105px}.Mount_Body_BearCub-White{background-image:url(spritesmith4.png);background-position:-1314px -944px;width:105px;height:105px}.Mount_Body_BearCub-Zombie{background-image:url(spritesmith4.png);background-position:-1314px -1050px;width:105px;height:105px}.Mount_Body_Bunny-Base{background-image:url(spritesmith4.png);background-position:-1112px -1037px;width:105px;height:105px}.Mount_Body_Bunny-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-326px -1188px;width:105px;height:105px}.Mount_Body_Bunny-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-432px -1188px;width:105px;height:105px}.Mount_Body_Bunny-Desert{background-image:url(spritesmith4.png);background-position:-538px -1188px;width:105px;height:105px}.Mount_Body_Bunny-Golden{background-image:url(spritesmith4.png);background-position:-644px -1188px;width:105px;height:105px}.Mount_Body_Bunny-Red{background-image:url(spritesmith4.png);background-position:-750px -1188px;width:105px;height:105px}.Mount_Body_Bunny-Shade{background-image:url(spritesmith4.png);background-position:-856px -1188px;width:105px;height:105px}.Mount_Body_Bunny-Skeleton{background-image:url(spritesmith4.png);background-position:-962px -1188px;width:105px;height:105px}.Mount_Body_Bunny-White{background-image:url(spritesmith4.png);background-position:-1068px -1188px;width:105px;height:105px}.Mount_Body_Bunny-Zombie{background-image:url(spritesmith4.png);background-position:-1174px -1188px;width:105px;height:105px}.Mount_Body_Cactus-Base{background-image:url(spritesmith4.png);background-position:-1280px -1188px;width:105px;height:105px}.Mount_Body_Cactus-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1386px -1188px;width:105px;height:105px}.Mount_Body_Cactus-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-106px -1299px;width:105px;height:105px}.Mount_Body_Cactus-Desert{background-image:url(spritesmith4.png);background-position:-212px -1299px;width:105px;height:105px}.Mount_Body_Cactus-Golden{background-image:url(spritesmith4.png);background-position:-318px -1299px;width:105px;height:105px}.Mount_Body_Cactus-Red{background-image:url(spritesmith4.png);background-position:-424px -1299px;width:105px;height:105px}.Mount_Body_Cactus-Shade{background-image:url(spritesmith4.png);background-position:-530px -1299px;width:105px;height:105px}.Mount_Body_Cactus-Skeleton{background-image:url(spritesmith4.png);background-position:-636px -1299px;width:105px;height:105px}.Mount_Body_Cactus-White{background-image:url(spritesmith4.png);background-position:-742px -1299px;width:105px;height:105px}.Mount_Body_Cactus-Zombie{background-image:url(spritesmith4.png);background-position:-954px -1299px;width:105px;height:105px}.Mount_Body_Deer-Base{background-image:url(spritesmith4.png);background-position:-212px -1405px;width:105px;height:105px}.Mount_Body_Deer-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-318px -1405px;width:105px;height:105px}.Mount_Body_Deer-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-106px -1405px;width:105px;height:105px}.Mount_Body_Deer-Desert{background-image:url(spritesmith4.png);background-position:0 -1405px;width:105px;height:105px}.Mount_Body_Deer-Golden{background-image:url(spritesmith4.png);background-position:-1378px -1299px;width:105px;height:105px}.Mount_Body_Deer-Red{background-image:url(spritesmith4.png);background-position:-1399px -399px;width:105px;height:105px}.Mount_Body_Deer-Shade{background-image:url(spritesmith4.png);background-position:-424px -1405px;width:105px;height:105px}.Mount_Body_Deer-Skeleton{background-image:url(spritesmith5.png);background-position:-968px -530px;width:105px;height:105px}.Mount_Body_Deer-White{background-image:url(spritesmith5.png);background-position:-1498px -530px;width:105px;height:105px}.Mount_Body_Deer-Zombie{background-image:url(spritesmith5.png);background-position:-1498px -742px;width:105px;height:105px}.Mount_Body_Dragon-Base{background-image:url(spritesmith5.png);background-position:-1498px -848px;width:105px;height:105px}.Mount_Body_Dragon-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1498px -954px;width:105px;height:105px}.Mount_Body_Dragon-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1498px -1060px;width:105px;height:105px}.Mount_Body_Dragon-Desert{background-image:url(spritesmith5.png);background-position:-1498px -1166px;width:105px;height:105px}.Mount_Body_Dragon-Golden{background-image:url(spritesmith5.png);background-position:-1498px -1272px;width:105px;height:105px}.Mount_Body_Dragon-Red{background-image:url(spritesmith5.png);background-position:0 -1468px;width:105px;height:105px}.Mount_Body_Dragon-Shade{background-image:url(spritesmith5.png);background-position:-106px -1468px;width:105px;height:105px}.Mount_Body_Dragon-Skeleton{background-image:url(spritesmith5.png);background-position:-212px -1468px;width:105px;height:105px}.Mount_Body_Dragon-White{background-image:url(spritesmith5.png);background-position:-318px -1468px;width:105px;height:105px}.Mount_Body_Dragon-Zombie{background-image:url(spritesmith5.png);background-position:-954px -1892px;width:105px;height:105px}.Mount_Body_Egg-Base{background-image:url(spritesmith5.png);background-position:-106px -408px;width:105px;height:105px}.Mount_Body_Egg-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-212px -408px;width:105px;height:105px}.Mount_Body_Egg-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-318px -408px;width:105px;height:105px}.Mount_Body_Egg-Desert{background-image:url(spritesmith5.png);background-position:-424px -408px;width:105px;height:105px}.Mount_Body_Egg-Golden{background-image:url(spritesmith5.png);background-position:-544px 0;width:105px;height:105px}.Mount_Body_Egg-Red{background-image:url(spritesmith5.png);background-position:-544px -106px;width:105px;height:105px}.Mount_Body_Egg-Shade{background-image:url(spritesmith5.png);background-position:-544px -212px;width:105px;height:105px}.Mount_Body_Egg-Skeleton{background-image:url(spritesmith5.png);background-position:-544px -318px;width:105px;height:105px}.Mount_Body_Egg-White{background-image:url(spritesmith5.png);background-position:0 -514px;width:105px;height:105px}.Mount_Body_Egg-Zombie{background-image:url(spritesmith5.png);background-position:-106px -514px;width:105px;height:105px}.Mount_Body_FlyingPig-Base{background-image:url(spritesmith5.png);background-position:-212px -514px;width:105px;height:105px}.Mount_Body_FlyingPig-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-318px -514px;width:105px;height:105px}.Mount_Body_FlyingPig-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-424px -514px;width:105px;height:105px}.Mount_Body_FlyingPig-Desert{background-image:url(spritesmith5.png);background-position:-530px -514px;width:105px;height:105px}.Mount_Body_FlyingPig-Golden{background-image:url(spritesmith5.png);background-position:-650px 0;width:105px;height:105px}.Mount_Body_FlyingPig-Red{background-image:url(spritesmith5.png);background-position:-650px -106px;width:105px;height:105px}.Mount_Body_FlyingPig-Shade{background-image:url(spritesmith5.png);background-position:-650px -212px;width:105px;height:105px}.Mount_Body_FlyingPig-Skeleton{background-image:url(spritesmith5.png);background-position:-650px -318px;width:105px;height:105px}.Mount_Body_FlyingPig-White{background-image:url(spritesmith5.png);background-position:-650px -424px;width:105px;height:105px}.Mount_Body_FlyingPig-Zombie{background-image:url(spritesmith5.png);background-position:0 -620px;width:105px;height:105px}.Mount_Body_Fox-Base{background-image:url(spritesmith5.png);background-position:-106px -620px;width:105px;height:105px}.Mount_Body_Fox-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-212px -620px;width:105px;height:105px}.Mount_Body_Fox-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-318px -620px;width:105px;height:105px}.Mount_Body_Fox-Desert{background-image:url(spritesmith5.png);background-position:-424px -620px;width:105px;height:105px}.Mount_Body_Fox-Golden{background-image:url(spritesmith5.png);background-position:-530px -620px;width:105px;height:105px}.Mount_Body_Fox-Red{background-image:url(spritesmith5.png);background-position:-636px -620px;width:105px;height:105px}.Mount_Body_Fox-Shade{background-image:url(spritesmith5.png);background-position:-756px 0;width:105px;height:105px}.Mount_Body_Fox-Skeleton{background-image:url(spritesmith5.png);background-position:-756px -106px;width:105px;height:105px}.Mount_Body_Fox-White{background-image:url(spritesmith5.png);background-position:-756px -212px;width:105px;height:105px}.Mount_Body_Fox-Zombie{background-image:url(spritesmith5.png);background-position:-756px -318px;width:105px;height:105px}.Mount_Body_Gryphon-Base{background-image:url(spritesmith5.png);background-position:-756px -424px;width:105px;height:105px}.Mount_Body_Gryphon-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-756px -530px;width:105px;height:105px}.Mount_Body_Gryphon-CottonCandyPink{background-image:url(spritesmith5.png);background-position:0 -726px;width:105px;height:105px}.Mount_Body_Gryphon-Desert{background-image:url(spritesmith5.png);background-position:-106px -726px;width:105px;height:105px}.Mount_Body_Gryphon-Golden{background-image:url(spritesmith5.png);background-position:-212px -726px;width:105px;height:105px}.Mount_Body_Gryphon-Red{background-image:url(spritesmith5.png);background-position:-318px -726px;width:105px;height:105px}.Mount_Body_Gryphon-Shade{background-image:url(spritesmith5.png);background-position:-424px -726px;width:105px;height:105px}.Mount_Body_Gryphon-Skeleton{background-image:url(spritesmith5.png);background-position:-530px -726px;width:105px;height:105px}.Mount_Body_Gryphon-White{background-image:url(spritesmith5.png);background-position:-636px -726px;width:105px;height:105px}.Mount_Body_Gryphon-Zombie{background-image:url(spritesmith5.png);background-position:-742px -726px;width:105px;height:105px}.Mount_Body_Hedgehog-Base{background-image:url(spritesmith5.png);background-position:-862px 0;width:105px;height:105px}.Mount_Body_Hedgehog-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-862px -106px;width:105px;height:105px}.Mount_Body_Hedgehog-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-862px -212px;width:105px;height:105px}.Mount_Body_Hedgehog-Desert{background-image:url(spritesmith5.png);background-position:-862px -318px;width:105px;height:105px}.Mount_Body_Hedgehog-Golden{background-image:url(spritesmith5.png);background-position:-862px -424px;width:105px;height:105px}.Mount_Body_Hedgehog-Red{background-image:url(spritesmith5.png);background-position:-862px -530px;width:105px;height:105px}.Mount_Body_Hedgehog-Shade{background-image:url(spritesmith5.png);background-position:-862px -636px;width:105px;height:105px}.Mount_Body_Hedgehog-Skeleton{background-image:url(spritesmith5.png);background-position:0 -832px;width:105px;height:105px}.Mount_Body_Hedgehog-White{background-image:url(spritesmith5.png);background-position:-106px -832px;width:105px;height:105px}.Mount_Body_Hedgehog-Zombie{background-image:url(spritesmith5.png);background-position:-212px -832px;width:105px;height:105px}.Mount_Body_LionCub-Base{background-image:url(spritesmith5.png);background-position:-318px -832px;width:105px;height:105px}.Mount_Body_LionCub-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-424px -832px;width:105px;height:105px}.Mount_Body_LionCub-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-530px -832px;width:105px;height:105px}.Mount_Body_LionCub-Desert{background-image:url(spritesmith5.png);background-position:-636px -832px;width:105px;height:105px}.Mount_Body_LionCub-Ethereal{background-image:url(spritesmith5.png);background-position:-742px -832px;width:105px;height:105px}.Mount_Body_LionCub-Golden{background-image:url(spritesmith5.png);background-position:-848px -832px;width:105px;height:105px}.Mount_Body_LionCub-Red{background-image:url(spritesmith5.png);background-position:-968px 0;width:105px;height:105px}.Mount_Body_LionCub-Shade{background-image:url(spritesmith5.png);background-position:-968px -106px;width:105px;height:105px}.Mount_Body_LionCub-Skeleton{background-image:url(spritesmith5.png);background-position:-968px -212px;width:105px;height:105px}.Mount_Body_LionCub-White{background-image:url(spritesmith5.png);background-position:-968px -318px;width:105px;height:105px}.Mount_Body_LionCub-Zombie{background-image:url(spritesmith5.png);background-position:-968px -424px;width:105px;height:105px}.Mount_Body_Mammoth-Base{background-image:url(spritesmith5.png);background-position:-408px -136px;width:105px;height:123px}.Mount_Body_MantisShrimp-Base{background-image:url(spritesmith5.png);background-position:0 -938px;width:108px;height:105px}.Mount_Body_Octopus-Base{background-image:url(spritesmith5.png);background-position:-968px -636px;width:105px;height:105px}.Mount_Body_Octopus-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-968px -742px;width:105px;height:105px}.Mount_Body_Octopus-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-109px -938px;width:105px;height:105px}.Mount_Body_Octopus-Desert{background-image:url(spritesmith5.png);background-position:-215px -938px;width:105px;height:105px}.Mount_Body_Octopus-Golden{background-image:url(spritesmith5.png);background-position:-321px -938px;width:105px;height:105px}.Mount_Body_Octopus-Red{background-image:url(spritesmith5.png);background-position:-427px -938px;width:105px;height:105px}.Mount_Body_Octopus-Shade{background-image:url(spritesmith5.png);background-position:-533px -938px;width:105px;height:105px}.Mount_Body_Octopus-Skeleton{background-image:url(spritesmith5.png);background-position:-639px -938px;width:105px;height:105px}.Mount_Body_Octopus-White{background-image:url(spritesmith5.png);background-position:-745px -938px;width:105px;height:105px}.Mount_Body_Octopus-Zombie{background-image:url(spritesmith5.png);background-position:-851px -938px;width:105px;height:105px}.Mount_Body_Owl-Base{background-image:url(spritesmith5.png);background-position:-957px -938px;width:105px;height:105px}.Mount_Body_Owl-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1074px 0;width:105px;height:105px}.Mount_Body_Owl-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1074px -106px;width:105px;height:105px}.Mount_Body_Owl-Desert{background-image:url(spritesmith5.png);background-position:-1074px -212px;width:105px;height:105px}.Mount_Body_Owl-Golden{background-image:url(spritesmith5.png);background-position:-1074px -318px;width:105px;height:105px}.Mount_Body_Owl-Red{background-image:url(spritesmith5.png);background-position:-1074px -424px;width:105px;height:105px}.Mount_Body_Owl-Shade{background-image:url(spritesmith5.png);background-position:-1074px -530px;width:105px;height:105px}.Mount_Body_Owl-Skeleton{background-image:url(spritesmith5.png);background-position:-1074px -636px;width:105px;height:105px}.Mount_Body_Owl-White{background-image:url(spritesmith5.png);background-position:-1074px -742px;width:105px;height:105px}.Mount_Body_Owl-Zombie{background-image:url(spritesmith5.png);background-position:-1074px -848px;width:105px;height:105px}.Mount_Body_PandaCub-Base{background-image:url(spritesmith5.png);background-position:0 -1044px;width:105px;height:105px}.Mount_Body_PandaCub-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-106px -1044px;width:105px;height:105px}.Mount_Body_PandaCub-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-212px -1044px;width:105px;height:105px}.Mount_Body_PandaCub-Desert{background-image:url(spritesmith5.png);background-position:-318px -1044px;width:105px;height:105px}.Mount_Body_PandaCub-Golden{background-image:url(spritesmith5.png);background-position:-424px -1044px;width:105px;height:105px}.Mount_Body_PandaCub-Red{background-image:url(spritesmith5.png);background-position:-530px -1044px;width:105px;height:105px}.Mount_Body_PandaCub-Shade{background-image:url(spritesmith5.png);background-position:-636px -1044px;width:105px;height:105px}.Mount_Body_PandaCub-Skeleton{background-image:url(spritesmith5.png);background-position:-742px -1044px;width:105px;height:105px}.Mount_Body_PandaCub-White{background-image:url(spritesmith5.png);background-position:-848px -1044px;width:105px;height:105px}.Mount_Body_PandaCub-Zombie{background-image:url(spritesmith5.png);background-position:-954px -1044px;width:105px;height:105px}.Mount_Body_Parrot-Base{background-image:url(spritesmith5.png);background-position:-1060px -1044px;width:105px;height:105px}.Mount_Body_Parrot-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1180px 0;width:105px;height:105px}.Mount_Body_Parrot-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1180px -106px;width:105px;height:105px}.Mount_Body_Parrot-Desert{background-image:url(spritesmith5.png);background-position:-1180px -212px;width:105px;height:105px}.Mount_Body_Parrot-Golden{background-image:url(spritesmith5.png);background-position:-1180px -318px;width:105px;height:105px}.Mount_Body_Parrot-Red{background-image:url(spritesmith5.png);background-position:-1180px -424px;width:105px;height:105px}.Mount_Body_Parrot-Shade{background-image:url(spritesmith5.png);background-position:-1180px -530px;width:105px;height:105px}.Mount_Body_Parrot-Skeleton{background-image:url(spritesmith5.png);background-position:-1180px -636px;width:105px;height:105px}.Mount_Body_Parrot-White{background-image:url(spritesmith5.png);background-position:-1180px -742px;width:105px;height:105px}.Mount_Body_Parrot-Zombie{background-image:url(spritesmith5.png);background-position:-1180px -848px;width:105px;height:105px}.Mount_Body_Penguin-Base{background-image:url(spritesmith5.png);background-position:-1180px -954px;width:105px;height:105px}.Mount_Body_Penguin-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:0 -1150px;width:105px;height:105px}.Mount_Body_Penguin-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-106px -1150px;width:105px;height:105px}.Mount_Body_Penguin-Desert{background-image:url(spritesmith5.png);background-position:-212px -1150px;width:105px;height:105px}.Mount_Body_Penguin-Golden{background-image:url(spritesmith5.png);background-position:-318px -1150px;width:105px;height:105px}.Mount_Body_Penguin-Red{background-image:url(spritesmith5.png);background-position:-424px -1150px;width:105px;height:105px}.Mount_Body_Penguin-Shade{background-image:url(spritesmith5.png);background-position:-530px -1150px;width:105px;height:105px}.Mount_Body_Penguin-Skeleton{background-image:url(spritesmith5.png);background-position:-636px -1150px;width:105px;height:105px}.Mount_Body_Penguin-White{background-image:url(spritesmith5.png);background-position:-742px -1150px;width:105px;height:105px}.Mount_Body_Penguin-Zombie{background-image:url(spritesmith5.png);background-position:-848px -1150px;width:105px;height:105px}.Mount_Body_Rat-Base{background-image:url(spritesmith5.png);background-position:-954px -1150px;width:105px;height:105px}.Mount_Body_Rat-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1060px -1150px;width:105px;height:105px}.Mount_Body_Rat-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1166px -1150px;width:105px;height:105px}.Mount_Body_Rat-Desert{background-image:url(spritesmith5.png);background-position:-1286px 0;width:105px;height:105px}.Mount_Body_Rat-Golden{background-image:url(spritesmith5.png);background-position:-1286px -106px;width:105px;height:105px}.Mount_Body_Rat-Red{background-image:url(spritesmith5.png);background-position:-1286px -212px;width:105px;height:105px}.Mount_Body_Rat-Shade{background-image:url(spritesmith5.png);background-position:-1286px -318px;width:105px;height:105px}.Mount_Body_Rat-Skeleton{background-image:url(spritesmith5.png);background-position:-1286px -424px;width:105px;height:105px}.Mount_Body_Rat-White{background-image:url(spritesmith5.png);background-position:-1286px -530px;width:105px;height:105px}.Mount_Body_Rat-Zombie{background-image:url(spritesmith5.png);background-position:-1286px -636px;width:105px;height:105px}.Mount_Body_Rock-Base{background-image:url(spritesmith5.png);background-position:-1286px -742px;width:105px;height:105px}.Mount_Body_Rock-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1286px -848px;width:105px;height:105px}.Mount_Body_Rock-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1286px -954px;width:105px;height:105px}.Mount_Body_Rock-Desert{background-image:url(spritesmith5.png);background-position:-1286px -1060px;width:105px;height:105px}.Mount_Body_Rock-Golden{background-image:url(spritesmith5.png);background-position:0 -1256px;width:105px;height:105px}.Mount_Body_Rock-Red{background-image:url(spritesmith5.png);background-position:-106px -1256px;width:105px;height:105px}.Mount_Body_Rock-Shade{background-image:url(spritesmith5.png);background-position:-212px -1256px;width:105px;height:105px}.Mount_Body_Rock-Skeleton{background-image:url(spritesmith5.png);background-position:-318px -1256px;width:105px;height:105px}.Mount_Body_Rock-White{background-image:url(spritesmith5.png);background-position:-424px -1256px;width:105px;height:105px}.Mount_Body_Rock-Zombie{background-image:url(spritesmith5.png);background-position:-530px -1256px;width:105px;height:105px}.Mount_Body_Rooster-Base{background-image:url(spritesmith5.png);background-position:-636px -1256px;width:105px;height:105px}.Mount_Body_Rooster-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-742px -1256px;width:105px;height:105px}.Mount_Body_Rooster-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-848px -1256px;width:105px;height:105px}.Mount_Body_Rooster-Desert{background-image:url(spritesmith5.png);background-position:-954px -1256px;width:105px;height:105px}.Mount_Body_Rooster-Golden{background-image:url(spritesmith5.png);background-position:-1060px -1256px;width:105px;height:105px}.Mount_Body_Rooster-Red{background-image:url(spritesmith5.png);background-position:-1166px -1256px;width:105px;height:105px}.Mount_Body_Rooster-Shade{background-image:url(spritesmith5.png);background-position:-1272px -1256px;width:105px;height:105px}.Mount_Body_Rooster-Skeleton{background-image:url(spritesmith5.png);background-position:-1392px 0;width:105px;height:105px}.Mount_Body_Rooster-White{background-image:url(spritesmith5.png);background-position:-1392px -106px;width:105px;height:105px}.Mount_Body_Rooster-Zombie{background-image:url(spritesmith5.png);background-position:-1392px -212px;width:105px;height:105px}.Mount_Body_Seahorse-Base{background-image:url(spritesmith5.png);background-position:-1392px -318px;width:105px;height:105px}.Mount_Body_Seahorse-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1392px -424px;width:105px;height:105px}.Mount_Body_Seahorse-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1392px -530px;width:105px;height:105px}.Mount_Body_Seahorse-Desert{background-image:url(spritesmith5.png);background-position:-1392px -636px;width:105px;height:105px}.Mount_Body_Seahorse-Golden{background-image:url(spritesmith5.png);background-position:-1392px -742px;width:105px;height:105px}.Mount_Body_Seahorse-Red{background-image:url(spritesmith5.png);background-position:-1392px -848px;width:105px;height:105px}.Mount_Body_Seahorse-Shade{background-image:url(spritesmith5.png);background-position:-1392px -954px;width:105px;height:105px}.Mount_Body_Seahorse-Skeleton{background-image:url(spritesmith5.png);background-position:-1392px -1060px;width:105px;height:105px}.Mount_Body_Seahorse-White{background-image:url(spritesmith5.png);background-position:-1392px -1166px;width:105px;height:105px}.Mount_Body_Seahorse-Zombie{background-image:url(spritesmith5.png);background-position:0 -1362px;width:105px;height:105px}.Mount_Body_Slime-Base{background-image:url(spritesmith5.png);background-position:-106px -1362px;width:105px;height:105px}.Mount_Body_Slime-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-212px -1362px;width:105px;height:105px}.Mount_Body_Slime-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-318px -1362px;width:105px;height:105px}.Mount_Body_Slime-Desert{background-image:url(spritesmith5.png);background-position:-424px -1362px;width:105px;height:105px}.Mount_Body_Slime-Golden{background-image:url(spritesmith5.png);background-position:-530px -1362px;width:105px;height:105px}.Mount_Body_Slime-Red{background-image:url(spritesmith5.png);background-position:-636px -1362px;width:105px;height:105px}.Mount_Body_Slime-Shade{background-image:url(spritesmith5.png);background-position:-742px -1362px;width:105px;height:105px}.Mount_Body_Slime-Skeleton{background-image:url(spritesmith5.png);background-position:-848px -1362px;width:105px;height:105px}.Mount_Body_Slime-White{background-image:url(spritesmith5.png);background-position:-954px -1362px;width:105px;height:105px}.Mount_Body_Slime-Zombie{background-image:url(spritesmith5.png);background-position:-1060px -1362px;width:105px;height:105px}.Mount_Body_Spider-Base{background-image:url(spritesmith5.png);background-position:-1166px -1362px;width:105px;height:105px}.Mount_Body_Spider-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1272px -1362px;width:105px;height:105px}.Mount_Body_Spider-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1378px -1362px;width:105px;height:105px}.Mount_Body_Spider-Desert{background-image:url(spritesmith5.png);background-position:-1498px 0;width:105px;height:105px}.Mount_Body_Spider-Golden{background-image:url(spritesmith5.png);background-position:-1498px -106px;width:105px;height:105px}.Mount_Body_Spider-Red{background-image:url(spritesmith5.png);background-position:-1498px -212px;width:105px;height:105px}.Mount_Body_Spider-Shade{background-image:url(spritesmith5.png);background-position:-1498px -318px;width:105px;height:105px}.Mount_Body_Spider-Skeleton{background-image:url(spritesmith5.png);background-position:-1498px -424px;width:105px;height:105px}.Mount_Body_Spider-White{background-image:url(spritesmith5.png);background-position:0 -408px;width:105px;height:105px}.Mount_Body_Spider-Zombie{background-image:url(spritesmith5.png);background-position:-1498px -636px;width:105px;height:105px}.Mount_Body_TRex-Base{background-image:url(spritesmith5.png);background-position:-136px 0;width:135px;height:135px}.Mount_Body_TRex-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:0 -136px;width:135px;height:135px}.Mount_Body_TRex-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-136px -136px;width:135px;height:135px}.Mount_Body_TRex-Desert{background-image:url(spritesmith5.png);background-position:-272px 0;width:135px;height:135px}.Mount_Body_TRex-Golden{background-image:url(spritesmith5.png);background-position:0 0;width:135px;height:135px}.Mount_Body_TRex-Red{background-image:url(spritesmith5.png);background-position:-272px -136px;width:135px;height:135px}.Mount_Body_TRex-Shade{background-image:url(spritesmith5.png);background-position:0 -272px;width:135px;height:135px}.Mount_Body_TRex-Skeleton{background-image:url(spritesmith5.png);background-position:-136px -272px;width:135px;height:135px}.Mount_Body_TRex-White{background-image:url(spritesmith5.png);background-position:-272px -272px;width:135px;height:135px}.Mount_Body_TRex-Zombie{background-image:url(spritesmith5.png);background-position:-408px 0;width:135px;height:135px}.Mount_Body_TigerCub-Base{background-image:url(spritesmith5.png);background-position:-424px -1468px;width:105px;height:105px}.Mount_Body_TigerCub-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-530px -1468px;width:105px;height:105px}.Mount_Body_TigerCub-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-636px -1468px;width:105px;height:105px}.Mount_Body_TigerCub-Desert{background-image:url(spritesmith5.png);background-position:-742px -1468px;width:105px;height:105px}.Mount_Body_TigerCub-Golden{background-image:url(spritesmith5.png);background-position:-848px -1468px;width:105px;height:105px}.Mount_Body_TigerCub-Red{background-image:url(spritesmith5.png);background-position:-954px -1468px;width:105px;height:105px}.Mount_Body_TigerCub-Shade{background-image:url(spritesmith5.png);background-position:-1060px -1468px;width:105px;height:105px}.Mount_Body_TigerCub-Skeleton{background-image:url(spritesmith5.png);background-position:-1166px -1468px;width:105px;height:105px}.Mount_Body_TigerCub-White{background-image:url(spritesmith5.png);background-position:-1272px -1468px;width:105px;height:105px}.Mount_Body_TigerCub-Zombie{background-image:url(spritesmith5.png);background-position:-1378px -1468px;width:105px;height:105px}.Mount_Body_Turkey-Base{background-image:url(spritesmith5.png);background-position:-1484px -1468px;width:105px;height:105px}.Mount_Body_Wolf-Base{background-image:url(spritesmith5.png);background-position:-1604px 0;width:105px;height:105px}.Mount_Body_Wolf-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1604px -106px;width:105px;height:105px}.Mount_Body_Wolf-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1604px -212px;width:105px;height:105px}.Mount_Body_Wolf-Desert{background-image:url(spritesmith5.png);background-position:-1604px -318px;width:105px;height:105px}.Mount_Body_Wolf-Golden{background-image:url(spritesmith5.png);background-position:-1604px -424px;width:105px;height:105px}.Mount_Body_Wolf-Red{background-image:url(spritesmith5.png);background-position:-1604px -530px;width:105px;height:105px}.Mount_Body_Wolf-Shade{background-image:url(spritesmith5.png);background-position:-1604px -636px;width:105px;height:105px}.Mount_Body_Wolf-Skeleton{background-image:url(spritesmith5.png);background-position:-1604px -742px;width:105px;height:105px}.Mount_Body_Wolf-White{background-image:url(spritesmith5.png);background-position:-1604px -848px;width:105px;height:105px}.Mount_Body_Wolf-Zombie{background-image:url(spritesmith5.png);background-position:-1604px -954px;width:105px;height:105px}.Mount_Head_BearCub-Base{background-image:url(spritesmith5.png);background-position:-1604px -1060px;width:105px;height:105px}.Mount_Head_BearCub-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1604px -1166px;width:105px;height:105px}.Mount_Head_BearCub-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1604px -1272px;width:105px;height:105px}.Mount_Head_BearCub-Desert{background-image:url(spritesmith5.png);background-position:-1604px -1378px;width:105px;height:105px}.Mount_Head_BearCub-Golden{background-image:url(spritesmith5.png);background-position:0 -1574px;width:105px;height:105px}.Mount_Head_BearCub-Polar{background-image:url(spritesmith5.png);background-position:-106px -1574px;width:105px;height:105px}.Mount_Head_BearCub-Red{background-image:url(spritesmith5.png);background-position:-212px -1574px;width:105px;height:105px}.Mount_Head_BearCub-Shade{background-image:url(spritesmith5.png);background-position:-318px -1574px;width:105px;height:105px}.Mount_Head_BearCub-Skeleton{background-image:url(spritesmith5.png);background-position:-424px -1574px;width:105px;height:105px}.Mount_Head_BearCub-White{background-image:url(spritesmith5.png);background-position:-530px -1574px;width:105px;height:105px}.Mount_Head_BearCub-Zombie{background-image:url(spritesmith5.png);background-position:-636px -1574px;width:105px;height:105px}.Mount_Head_Bunny-Base{background-image:url(spritesmith5.png);background-position:-742px -1574px;width:105px;height:105px}.Mount_Head_Bunny-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-848px -1574px;width:105px;height:105px}.Mount_Head_Bunny-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-954px -1574px;width:105px;height:105px}.Mount_Head_Bunny-Desert{background-image:url(spritesmith5.png);background-position:-1060px -1574px;width:105px;height:105px}.Mount_Head_Bunny-Golden{background-image:url(spritesmith5.png);background-position:-1166px -1574px;width:105px;height:105px}.Mount_Head_Bunny-Red{background-image:url(spritesmith5.png);background-position:-1272px -1574px;width:105px;height:105px}.Mount_Head_Bunny-Shade{background-image:url(spritesmith5.png);background-position:-1378px -1574px;width:105px;height:105px}.Mount_Head_Bunny-Skeleton{background-image:url(spritesmith5.png);background-position:-1484px -1574px;width:105px;height:105px}.Mount_Head_Bunny-White{background-image:url(spritesmith5.png);background-position:-1590px -1574px;width:105px;height:105px}.Mount_Head_Bunny-Zombie{background-image:url(spritesmith5.png);background-position:-1710px 0;width:105px;height:105px}.Mount_Head_Cactus-Base{background-image:url(spritesmith5.png);background-position:-1710px -106px;width:105px;height:105px}.Mount_Head_Cactus-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1710px -212px;width:105px;height:105px}.Mount_Head_Cactus-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1710px -318px;width:105px;height:105px}.Mount_Head_Cactus-Desert{background-image:url(spritesmith5.png);background-position:-1710px -424px;width:105px;height:105px}.Mount_Head_Cactus-Golden{background-image:url(spritesmith5.png);background-position:-1710px -530px;width:105px;height:105px}.Mount_Head_Cactus-Red{background-image:url(spritesmith5.png);background-position:-1710px -636px;width:105px;height:105px}.Mount_Head_Cactus-Shade{background-image:url(spritesmith5.png);background-position:-1710px -742px;width:105px;height:105px}.Mount_Head_Cactus-Skeleton{background-image:url(spritesmith5.png);background-position:-1710px -848px;width:105px;height:105px}.Mount_Head_Cactus-White{background-image:url(spritesmith5.png);background-position:-1710px -954px;width:105px;height:105px}.Mount_Head_Cactus-Zombie{background-image:url(spritesmith5.png);background-position:-1710px -1060px;width:105px;height:105px}.Mount_Head_Deer-Base{background-image:url(spritesmith5.png);background-position:-1710px -1166px;width:105px;height:105px}.Mount_Head_Deer-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1710px -1272px;width:105px;height:105px}.Mount_Head_Deer-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1710px -1378px;width:105px;height:105px}.Mount_Head_Deer-Desert{background-image:url(spritesmith5.png);background-position:-1710px -1484px;width:105px;height:105px}.Mount_Head_Deer-Golden{background-image:url(spritesmith5.png);background-position:0 -1680px;width:105px;height:105px}.Mount_Head_Deer-Red{background-image:url(spritesmith5.png);background-position:-106px -1680px;width:105px;height:105px}.Mount_Head_Deer-Shade{background-image:url(spritesmith5.png);background-position:-212px -1680px;width:105px;height:105px}.Mount_Head_Deer-Skeleton{background-image:url(spritesmith5.png);background-position:-318px -1680px;width:105px;height:105px}.Mount_Head_Deer-White{background-image:url(spritesmith5.png);background-position:-424px -1680px;width:105px;height:105px}.Mount_Head_Deer-Zombie{background-image:url(spritesmith5.png);background-position:-530px -1680px;width:105px;height:105px}.Mount_Head_Dragon-Base{background-image:url(spritesmith5.png);background-position:-636px -1680px;width:105px;height:105px}.Mount_Head_Dragon-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-742px -1680px;width:105px;height:105px}.Mount_Head_Dragon-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-848px -1680px;width:105px;height:105px}.Mount_Head_Dragon-Desert{background-image:url(spritesmith5.png);background-position:-954px -1680px;width:105px;height:105px}.Mount_Head_Dragon-Golden{background-image:url(spritesmith5.png);background-position:-1060px -1680px;width:105px;height:105px}.Mount_Head_Dragon-Red{background-image:url(spritesmith5.png);background-position:-1166px -1680px;width:105px;height:105px}.Mount_Head_Dragon-Shade{background-image:url(spritesmith5.png);background-position:-1272px -1680px;width:105px;height:105px}.Mount_Head_Dragon-Skeleton{background-image:url(spritesmith5.png);background-position:-1378px -1680px;width:105px;height:105px}.Mount_Head_Dragon-White{background-image:url(spritesmith5.png);background-position:-1484px -1680px;width:105px;height:105px}.Mount_Head_Dragon-Zombie{background-image:url(spritesmith5.png);background-position:-1590px -1680px;width:105px;height:105px}.Mount_Head_Egg-Base{background-image:url(spritesmith5.png);background-position:-1696px -1680px;width:105px;height:105px}.Mount_Head_Egg-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1816px 0;width:105px;height:105px}.Mount_Head_Egg-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1816px -106px;width:105px;height:105px}.Mount_Head_Egg-Desert{background-image:url(spritesmith5.png);background-position:-1816px -212px;width:105px;height:105px}.Mount_Head_Egg-Golden{background-image:url(spritesmith5.png);background-position:-1816px -318px;width:105px;height:105px}.Mount_Head_Egg-Red{background-image:url(spritesmith5.png);background-position:-1816px -424px;width:105px;height:105px}.Mount_Head_Egg-Shade{background-image:url(spritesmith5.png);background-position:-1816px -530px;width:105px;height:105px}.Mount_Head_Egg-Skeleton{background-image:url(spritesmith5.png);background-position:-1816px -636px;width:105px;height:105px}.Mount_Head_Egg-White{background-image:url(spritesmith5.png);background-position:-1816px -742px;width:105px;height:105px}.Mount_Head_Egg-Zombie{background-image:url(spritesmith5.png);background-position:-1816px -848px;width:105px;height:105px}.Mount_Head_FlyingPig-Base{background-image:url(spritesmith5.png);background-position:-1816px -954px;width:105px;height:105px}.Mount_Head_FlyingPig-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1816px -1060px;width:105px;height:105px}.Mount_Head_FlyingPig-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1816px -1166px;width:105px;height:105px}.Mount_Head_FlyingPig-Desert{background-image:url(spritesmith5.png);background-position:-1816px -1272px;width:105px;height:105px}.Mount_Head_FlyingPig-Golden{background-image:url(spritesmith5.png);background-position:-1816px -1378px;width:105px;height:105px}.Mount_Head_FlyingPig-Red{background-image:url(spritesmith5.png);background-position:-1816px -1484px;width:105px;height:105px}.Mount_Head_FlyingPig-Shade{background-image:url(spritesmith5.png);background-position:-1816px -1590px;width:105px;height:105px}.Mount_Head_FlyingPig-Skeleton{background-image:url(spritesmith5.png);background-position:0 -1786px;width:105px;height:105px}.Mount_Head_FlyingPig-White{background-image:url(spritesmith5.png);background-position:-106px -1786px;width:105px;height:105px}.Mount_Head_FlyingPig-Zombie{background-image:url(spritesmith5.png);background-position:-212px -1786px;width:105px;height:105px}.Mount_Head_Fox-Base{background-image:url(spritesmith5.png);background-position:-318px -1786px;width:105px;height:105px}.Mount_Head_Fox-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-424px -1786px;width:105px;height:105px}.Mount_Head_Fox-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-530px -1786px;width:105px;height:105px}.Mount_Head_Fox-Desert{background-image:url(spritesmith5.png);background-position:-636px -1786px;width:105px;height:105px}.Mount_Head_Fox-Golden{background-image:url(spritesmith5.png);background-position:-742px -1786px;width:105px;height:105px}.Mount_Head_Fox-Red{background-image:url(spritesmith5.png);background-position:-848px -1786px;width:105px;height:105px}.Mount_Head_Fox-Shade{background-image:url(spritesmith5.png);background-position:-954px -1786px;width:105px;height:105px}.Mount_Head_Fox-Skeleton{background-image:url(spritesmith5.png);background-position:-1060px -1786px;width:105px;height:105px}.Mount_Head_Fox-White{background-image:url(spritesmith5.png);background-position:-1166px -1786px;width:105px;height:105px}.Mount_Head_Fox-Zombie{background-image:url(spritesmith5.png);background-position:-1272px -1786px;width:105px;height:105px}.Mount_Head_Gryphon-Base{background-image:url(spritesmith5.png);background-position:-1378px -1786px;width:105px;height:105px}.Mount_Head_Gryphon-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1484px -1786px;width:105px;height:105px}.Mount_Head_Gryphon-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1590px -1786px;width:105px;height:105px}.Mount_Head_Gryphon-Desert{background-image:url(spritesmith5.png);background-position:-1696px -1786px;width:105px;height:105px}.Mount_Head_Gryphon-Golden{background-image:url(spritesmith5.png);background-position:-1802px -1786px;width:105px;height:105px}.Mount_Head_Gryphon-Red{background-image:url(spritesmith5.png);background-position:-1922px 0;width:105px;height:105px}.Mount_Head_Gryphon-Shade{background-image:url(spritesmith5.png);background-position:-1922px -106px;width:105px;height:105px}.Mount_Head_Gryphon-Skeleton{background-image:url(spritesmith5.png);background-position:-1922px -212px;width:105px;height:105px}.Mount_Head_Gryphon-White{background-image:url(spritesmith5.png);background-position:-1922px -318px;width:105px;height:105px}.Mount_Head_Gryphon-Zombie{background-image:url(spritesmith5.png);background-position:-1922px -424px;width:105px;height:105px}.Mount_Head_Hedgehog-Base{background-image:url(spritesmith5.png);background-position:-1922px -530px;width:105px;height:105px}.Mount_Head_Hedgehog-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1922px -636px;width:105px;height:105px}.Mount_Head_Hedgehog-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1922px -742px;width:105px;height:105px}.Mount_Head_Hedgehog-Desert{background-image:url(spritesmith5.png);background-position:-1922px -848px;width:105px;height:105px}.Mount_Head_Hedgehog-Golden{background-image:url(spritesmith5.png);background-position:-1922px -954px;width:105px;height:105px}.Mount_Head_Hedgehog-Red{background-image:url(spritesmith5.png);background-position:-1922px -1060px;width:105px;height:105px}.Mount_Head_Hedgehog-Shade{background-image:url(spritesmith5.png);background-position:-1922px -1166px;width:105px;height:105px}.Mount_Head_Hedgehog-Skeleton{background-image:url(spritesmith5.png);background-position:-1922px -1272px;width:105px;height:105px}.Mount_Head_Hedgehog-White{background-image:url(spritesmith5.png);background-position:-1922px -1378px;width:105px;height:105px}.Mount_Head_Hedgehog-Zombie{background-image:url(spritesmith5.png);background-position:-1922px -1484px;width:105px;height:105px}.Mount_Head_LionCub-Base{background-image:url(spritesmith5.png);background-position:-1922px -1590px;width:105px;height:105px}.Mount_Head_LionCub-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1922px -1696px;width:105px;height:105px}.Mount_Head_LionCub-CottonCandyPink{background-image:url(spritesmith5.png);background-position:0 -1892px;width:105px;height:105px}.Mount_Head_LionCub-Desert{background-image:url(spritesmith5.png);background-position:-106px -1892px;width:105px;height:105px}.Mount_Head_LionCub-Ethereal{background-image:url(spritesmith5.png);background-position:-212px -1892px;width:105px;height:105px}.Mount_Head_LionCub-Golden{background-image:url(spritesmith5.png);background-position:-318px -1892px;width:105px;height:105px}.Mount_Head_LionCub-Red{background-image:url(spritesmith5.png);background-position:-424px -1892px;width:105px;height:105px}.Mount_Head_LionCub-Shade{background-image:url(spritesmith5.png);background-position:-530px -1892px;width:105px;height:105px}.Mount_Head_LionCub-Skeleton{background-image:url(spritesmith5.png);background-position:-636px -1892px;width:105px;height:105px}.Mount_Head_LionCub-White{background-image:url(spritesmith5.png);background-position:-742px -1892px;width:105px;height:105px}.Mount_Head_LionCub-Zombie{background-image:url(spritesmith5.png);background-position:-848px -1892px;width:105px;height:105px}.Mount_Head_Mammoth-Base{background-image:url(spritesmith5.png);background-position:-408px -260px;width:105px;height:123px}.Mount_Head_MantisShrimp-Base{background-image:url(spritesmith5.png);background-position:-1060px -1892px;width:108px;height:105px}.Mount_Head_Octopus-Base{background-image:url(spritesmith5.png);background-position:-1169px -1892px;width:105px;height:105px}.Mount_Head_Octopus-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1275px -1892px;width:105px;height:105px}.Mount_Head_Octopus-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1381px -1892px;width:105px;height:105px}.Mount_Head_Octopus-Desert{background-image:url(spritesmith5.png);background-position:-1487px -1892px;width:105px;height:105px}.Mount_Head_Octopus-Golden{background-image:url(spritesmith5.png);background-position:-1593px -1892px;width:105px;height:105px}.Mount_Head_Octopus-Red{background-image:url(spritesmith5.png);background-position:-1699px -1892px;width:105px;height:105px}.Mount_Head_Octopus-Shade{background-image:url(spritesmith5.png);background-position:-1805px -1892px;width:105px;height:105px}.Mount_Head_Octopus-Skeleton{background-image:url(spritesmith5.png);background-position:-1911px -1892px;width:105px;height:105px}.Mount_Head_Octopus-White{background-image:url(spritesmith5.png);background-position:-2028px 0;width:105px;height:105px}.Mount_Head_Octopus-Zombie{background-image:url(spritesmith5.png);background-position:-2028px -106px;width:105px;height:105px}.Mount_Head_Owl-Base{background-image:url(spritesmith5.png);background-position:-2028px -212px;width:105px;height:105px}.Mount_Head_Owl-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-2028px -318px;width:105px;height:105px}.Mount_Head_Owl-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-2028px -424px;width:105px;height:105px}.Mount_Head_Owl-Desert{background-image:url(spritesmith5.png);background-position:-2028px -530px;width:105px;height:105px}.Mount_Head_Owl-Golden{background-image:url(spritesmith5.png);background-position:-2028px -636px;width:105px;height:105px}.Mount_Head_Owl-Red{background-image:url(spritesmith5.png);background-position:-2028px -742px;width:105px;height:105px}.Mount_Head_Owl-Shade{background-image:url(spritesmith5.png);background-position:-2028px -848px;width:105px;height:105px}.Mount_Head_Owl-Skeleton{background-image:url(spritesmith5.png);background-position:-2028px -954px;width:105px;height:105px}.Mount_Head_Owl-White{background-image:url(spritesmith5.png);background-position:-2028px -1060px;width:105px;height:105px}.Mount_Head_Owl-Zombie{background-image:url(spritesmith5.png);background-position:-2028px -1166px;width:105px;height:105px}.Mount_Head_PandaCub-Base{background-image:url(spritesmith5.png);background-position:-2028px -1272px;width:105px;height:105px}.Mount_Head_PandaCub-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-2028px -1378px;width:105px;height:105px}.Mount_Head_PandaCub-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-2028px -1484px;width:105px;height:105px}.Mount_Head_PandaCub-Desert{background-image:url(spritesmith5.png);background-position:-2028px -1590px;width:105px;height:105px}.Mount_Head_PandaCub-Golden{background-image:url(spritesmith5.png);background-position:-2028px -1696px;width:105px;height:105px}.Mount_Head_PandaCub-Red{background-image:url(spritesmith5.png);background-position:-2028px -1802px;width:105px;height:105px}.Mount_Head_PandaCub-Shade{background-image:url(spritesmith5.png);background-position:0 -1998px;width:105px;height:105px}.Mount_Head_PandaCub-Skeleton{background-image:url(spritesmith5.png);background-position:-106px -1998px;width:105px;height:105px}.Mount_Head_PandaCub-White{background-image:url(spritesmith5.png);background-position:-212px -1998px;width:105px;height:105px}.Mount_Head_PandaCub-Zombie{background-image:url(spritesmith5.png);background-position:-318px -1998px;width:105px;height:105px}.Mount_Head_Parrot-Base{background-image:url(spritesmith5.png);background-position:-424px -1998px;width:105px;height:105px}.Mount_Head_Parrot-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-530px -1998px;width:105px;height:105px}.Mount_Head_Parrot-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-636px -1998px;width:105px;height:105px}.Mount_Head_Parrot-Desert{background-image:url(spritesmith5.png);background-position:-742px -1998px;width:105px;height:105px}.Mount_Head_Parrot-Golden{background-image:url(spritesmith5.png);background-position:-848px -1998px;width:105px;height:105px}.Mount_Head_Parrot-Red{background-image:url(spritesmith5.png);background-position:-954px -1998px;width:105px;height:105px}.Mount_Head_Parrot-Shade{background-image:url(spritesmith5.png);background-position:-1060px -1998px;width:105px;height:105px}.Mount_Head_Parrot-Skeleton{background-image:url(spritesmith5.png);background-position:-1166px -1998px;width:105px;height:105px}.Mount_Head_Parrot-White{background-image:url(spritesmith6.png);background-position:-968px -212px;width:105px;height:105px}.Mount_Head_Parrot-Zombie{background-image:url(spritesmith6.png);background-position:-636px -1044px;width:105px;height:105px}.Mount_Head_Penguin-Base{background-image:url(spritesmith6.png);background-position:-636px -726px;width:105px;height:105px}.Mount_Head_Penguin-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-968px -318px;width:105px;height:105px}.Mount_Head_Penguin-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-968px -424px;width:105px;height:105px}.Mount_Head_Penguin-Desert{background-image:url(spritesmith6.png);background-position:-968px -530px;width:105px;height:105px}.Mount_Head_Penguin-Golden{background-image:url(spritesmith6.png);background-position:-968px -636px;width:105px;height:105px}.Mount_Head_Penguin-Red{background-image:url(spritesmith6.png);background-position:-968px -742px;width:105px;height:105px}.Mount_Head_Penguin-Shade{background-image:url(spritesmith6.png);background-position:0 -938px;width:105px;height:105px}.Mount_Head_Penguin-Skeleton{background-image:url(spritesmith6.png);background-position:-106px -938px;width:105px;height:105px}.Mount_Head_Penguin-White{background-image:url(spritesmith6.png);background-position:-212px -938px;width:105px;height:105px}.Mount_Head_Penguin-Zombie{background-image:url(spritesmith6.png);background-position:-318px -938px;width:105px;height:105px}.Mount_Head_Rat-Base{background-image:url(spritesmith6.png);background-position:-408px -242px;width:105px;height:105px}.Mount_Head_Rat-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:0 -408px;width:105px;height:105px}.Mount_Head_Rat-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-106px -408px;width:105px;height:105px}.Mount_Head_Rat-Desert{background-image:url(spritesmith6.png);background-position:-212px -408px;width:105px;height:105px}.Mount_Head_Rat-Golden{background-image:url(spritesmith6.png);background-position:-318px -408px;width:105px;height:105px}.Mount_Head_Rat-Red{background-image:url(spritesmith6.png);background-position:-424px -408px;width:105px;height:105px}.Mount_Head_Rat-Shade{background-image:url(spritesmith6.png);background-position:-544px 0;width:105px;height:105px}.Mount_Head_Rat-Skeleton{background-image:url(spritesmith6.png);background-position:-544px -106px;width:105px;height:105px}.Mount_Head_Rat-White{background-image:url(spritesmith6.png);background-position:-544px -212px;width:105px;height:105px}.Mount_Head_Rat-Zombie{background-image:url(spritesmith6.png);background-position:-544px -318px;width:105px;height:105px}.Mount_Head_Rock-Base{background-image:url(spritesmith6.png);background-position:0 -514px;width:105px;height:105px}.Mount_Head_Rock-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-106px -514px;width:105px;height:105px}.Mount_Head_Rock-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-212px -514px;width:105px;height:105px}.Mount_Head_Rock-Desert{background-image:url(spritesmith6.png);background-position:-318px -514px;width:105px;height:105px}.Mount_Head_Rock-Golden{background-image:url(spritesmith6.png);background-position:-424px -514px;width:105px;height:105px}.Mount_Head_Rock-Red{background-image:url(spritesmith6.png);background-position:-530px -514px;width:105px;height:105px}.Mount_Head_Rock-Shade{background-image:url(spritesmith6.png);background-position:-650px 0;width:105px;height:105px}.Mount_Head_Rock-Skeleton{background-image:url(spritesmith6.png);background-position:-650px -106px;width:105px;height:105px}.Mount_Head_Rock-White{background-image:url(spritesmith6.png);background-position:-650px -212px;width:105px;height:105px}.Mount_Head_Rock-Zombie{background-image:url(spritesmith6.png);background-position:-650px -318px;width:105px;height:105px}.Mount_Head_Rooster-Base{background-image:url(spritesmith6.png);background-position:-650px -424px;width:105px;height:105px}.Mount_Head_Rooster-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:0 -620px;width:105px;height:105px}.Mount_Head_Rooster-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-106px -620px;width:105px;height:105px}.Mount_Head_Rooster-Desert{background-image:url(spritesmith6.png);background-position:-212px -620px;width:105px;height:105px}.Mount_Head_Rooster-Golden{background-image:url(spritesmith6.png);background-position:-318px -620px;width:105px;height:105px}.Mount_Head_Rooster-Red{background-image:url(spritesmith6.png);background-position:-424px -620px;width:105px;height:105px}.Mount_Head_Rooster-Shade{background-image:url(spritesmith6.png);background-position:-530px -620px;width:105px;height:105px}.Mount_Head_Rooster-Skeleton{background-image:url(spritesmith6.png);background-position:-636px -620px;width:105px;height:105px}.Mount_Head_Rooster-White{background-image:url(spritesmith6.png);background-position:-756px 0;width:105px;height:105px}.Mount_Head_Rooster-Zombie{background-image:url(spritesmith6.png);background-position:-756px -106px;width:105px;height:105px}.Mount_Head_Seahorse-Base{background-image:url(spritesmith6.png);background-position:-756px -212px;width:105px;height:105px}.Mount_Head_Seahorse-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-756px -318px;width:105px;height:105px}.Mount_Head_Seahorse-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-756px -424px;width:105px;height:105px}.Mount_Head_Seahorse-Desert{background-image:url(spritesmith6.png);background-position:-756px -530px;width:105px;height:105px}.Mount_Head_Seahorse-Golden{background-image:url(spritesmith6.png);background-position:0 -726px;width:105px;height:105px}.Mount_Head_Seahorse-Red{background-image:url(spritesmith6.png);background-position:-106px -726px;width:105px;height:105px}.Mount_Head_Seahorse-Shade{background-image:url(spritesmith6.png);background-position:-212px -726px;width:105px;height:105px}.Mount_Head_Seahorse-Skeleton{background-image:url(spritesmith6.png);background-position:-318px -726px;width:105px;height:105px}.Mount_Head_Seahorse-White{background-image:url(spritesmith6.png);background-position:-424px -726px;width:105px;height:105px}.Mount_Head_Seahorse-Zombie{background-image:url(spritesmith6.png);background-position:-530px -726px;width:105px;height:105px}.Mount_Head_Slime-Base{background-image:url(spritesmith6.png);background-position:-408px -136px;width:105px;height:105px}.Mount_Head_Slime-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-742px -726px;width:105px;height:105px}.Mount_Head_Slime-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-862px 0;width:105px;height:105px}.Mount_Head_Slime-Desert{background-image:url(spritesmith6.png);background-position:-862px -106px;width:105px;height:105px}.Mount_Head_Slime-Golden{background-image:url(spritesmith6.png);background-position:-862px -212px;width:105px;height:105px}.Mount_Head_Slime-Red{background-image:url(spritesmith6.png);background-position:-862px -318px;width:105px;height:105px}.Mount_Head_Slime-Shade{background-image:url(spritesmith6.png);background-position:-862px -424px;width:105px;height:105px}.Mount_Head_Slime-Skeleton{background-image:url(spritesmith6.png);background-position:-862px -530px;width:105px;height:105px}.Mount_Head_Slime-White{background-image:url(spritesmith6.png);background-position:-862px -636px;width:105px;height:105px}.Mount_Head_Slime-Zombie{background-image:url(spritesmith6.png);background-position:0 -832px;width:105px;height:105px}.Mount_Head_Spider-Base{background-image:url(spritesmith6.png);background-position:-106px -832px;width:105px;height:105px}.Mount_Head_Spider-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-212px -832px;width:105px;height:105px}.Mount_Head_Spider-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-318px -832px;width:105px;height:105px}.Mount_Head_Spider-Desert{background-image:url(spritesmith6.png);background-position:-424px -832px;width:105px;height:105px}.Mount_Head_Spider-Golden{background-image:url(spritesmith6.png);background-position:-530px -832px;width:105px;height:105px}.Mount_Head_Spider-Red{background-image:url(spritesmith6.png);background-position:-636px -832px;width:105px;height:105px}.Mount_Head_Spider-Shade{background-image:url(spritesmith6.png);background-position:-742px -832px;width:105px;height:105px}.Mount_Head_Spider-Skeleton{background-image:url(spritesmith6.png);background-position:-848px -832px;width:105px;height:105px}.Mount_Head_Spider-White{background-image:url(spritesmith6.png);background-position:-968px 0;width:105px;height:105px}.Mount_Head_Spider-Zombie{background-image:url(spritesmith6.png);background-position:-968px -106px;width:105px;height:105px}.Mount_Head_TRex-Base{background-image:url(spritesmith6.png);background-position:-272px -136px;width:135px;height:135px}.Mount_Head_TRex-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:0 -136px;width:135px;height:135px}.Mount_Head_TRex-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-136px -136px;width:135px;height:135px}.Mount_Head_TRex-Desert{background-image:url(spritesmith6.png);background-position:-272px 0;width:135px;height:135px}.Mount_Head_TRex-Golden{background-image:url(spritesmith6.png);background-position:0 0;width:135px;height:135px}.Mount_Head_TRex-Red{background-image:url(spritesmith6.png);background-position:0 -272px;width:135px;height:135px}.Mount_Head_TRex-Shade{background-image:url(spritesmith6.png);background-position:-136px -272px;width:135px;height:135px}.Mount_Head_TRex-Skeleton{background-image:url(spritesmith6.png);background-position:-272px -272px;width:135px;height:135px}.Mount_Head_TRex-White{background-image:url(spritesmith6.png);background-position:-408px 0;width:135px;height:135px}.Mount_Head_TRex-Zombie{background-image:url(spritesmith6.png);background-position:-136px 0;width:135px;height:135px}.Mount_Head_TigerCub-Base{background-image:url(spritesmith6.png);background-position:-424px -938px;width:105px;height:105px}.Mount_Head_TigerCub-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-530px -938px;width:105px;height:105px}.Mount_Head_TigerCub-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-636px -938px;width:105px;height:105px}.Mount_Head_TigerCub-Desert{background-image:url(spritesmith6.png);background-position:-742px -938px;width:105px;height:105px}.Mount_Head_TigerCub-Golden{background-image:url(spritesmith6.png);background-position:-848px -938px;width:105px;height:105px}.Mount_Head_TigerCub-Red{background-image:url(spritesmith6.png);background-position:-954px -938px;width:105px;height:105px}.Mount_Head_TigerCub-Shade{background-image:url(spritesmith6.png);background-position:-1074px 0;width:105px;height:105px}.Mount_Head_TigerCub-Skeleton{background-image:url(spritesmith6.png);background-position:-1074px -106px;width:105px;height:105px}.Mount_Head_TigerCub-White{background-image:url(spritesmith6.png);background-position:-1074px -212px;width:105px;height:105px}.Mount_Head_TigerCub-Zombie{background-image:url(spritesmith6.png);background-position:-1074px -318px;width:105px;height:105px}.Mount_Head_Turkey-Base{background-image:url(spritesmith6.png);background-position:-1074px -424px;width:105px;height:105px}.Mount_Head_Wolf-Base{background-image:url(spritesmith6.png);background-position:-1074px -530px;width:105px;height:105px}.Mount_Head_Wolf-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1074px -636px;width:105px;height:105px}.Mount_Head_Wolf-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1074px -742px;width:105px;height:105px}.Mount_Head_Wolf-Desert{background-image:url(spritesmith6.png);background-position:-1074px -848px;width:105px;height:105px}.Mount_Head_Wolf-Golden{background-image:url(spritesmith6.png);background-position:0 -1044px;width:105px;height:105px}.Mount_Head_Wolf-Red{background-image:url(spritesmith6.png);background-position:-106px -1044px;width:105px;height:105px}.Mount_Head_Wolf-Shade{background-image:url(spritesmith6.png);background-position:-212px -1044px;width:105px;height:105px}.Mount_Head_Wolf-Skeleton{background-image:url(spritesmith6.png);background-position:-318px -1044px;width:105px;height:105px}.Mount_Head_Wolf-White{background-image:url(spritesmith6.png);background-position:-424px -1044px;width:105px;height:105px}.Mount_Head_Wolf-Zombie{background-image:url(spritesmith6.png);background-position:-530px -1044px;width:105px;height:105px}.Pet-BearCub-Base{background-image:url(spritesmith6.png);background-position:-742px -1044px;width:81px;height:99px}.Pet-BearCub-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-824px -1044px;width:81px;height:99px}.Pet-BearCub-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-906px -1044px;width:81px;height:99px}.Pet-BearCub-Desert{background-image:url(spritesmith6.png);background-position:-988px -1044px;width:81px;height:99px}.Pet-BearCub-Golden{background-image:url(spritesmith6.png);background-position:-1070px -1044px;width:81px;height:99px}.Pet-BearCub-Polar{background-image:url(spritesmith6.png);background-position:-1180px 0;width:81px;height:99px}.Pet-BearCub-Red{background-image:url(spritesmith6.png);background-position:-1180px -100px;width:81px;height:99px}.Pet-BearCub-Shade{background-image:url(spritesmith6.png);background-position:-1180px -200px;width:81px;height:99px}.Pet-BearCub-Skeleton{background-image:url(spritesmith6.png);background-position:-1180px -300px;width:81px;height:99px}.Pet-BearCub-White{background-image:url(spritesmith6.png);background-position:-1180px -400px;width:81px;height:99px}.Pet-BearCub-Zombie{background-image:url(spritesmith6.png);background-position:-1180px -500px;width:81px;height:99px}.Pet-Bunny-Base{background-image:url(spritesmith6.png);background-position:-1180px -600px;width:81px;height:99px}.Pet-Bunny-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1180px -700px;width:81px;height:99px}.Pet-Bunny-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1180px -800px;width:81px;height:99px}.Pet-Bunny-Desert{background-image:url(spritesmith6.png);background-position:-1180px -900px;width:81px;height:99px}.Pet-Bunny-Golden{background-image:url(spritesmith6.png);background-position:-1180px -1000px;width:81px;height:99px}.Pet-Bunny-Red{background-image:url(spritesmith6.png);background-position:0 -1150px;width:81px;height:99px}.Pet-Bunny-Shade{background-image:url(spritesmith6.png);background-position:-82px -1150px;width:81px;height:99px}.Pet-Bunny-Skeleton{background-image:url(spritesmith6.png);background-position:-164px -1150px;width:81px;height:99px}.Pet-Bunny-White{background-image:url(spritesmith6.png);background-position:-246px -1150px;width:81px;height:99px}.Pet-Bunny-Zombie{background-image:url(spritesmith6.png);background-position:-328px -1150px;width:81px;height:99px}.Pet-Cactus-Base{background-image:url(spritesmith6.png);background-position:-410px -1150px;width:81px;height:99px}.Pet-Cactus-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-492px -1150px;width:81px;height:99px}.Pet-Cactus-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-574px -1150px;width:81px;height:99px}.Pet-Cactus-Desert{background-image:url(spritesmith6.png);background-position:-656px -1150px;width:81px;height:99px}.Pet-Cactus-Golden{background-image:url(spritesmith6.png);background-position:-738px -1150px;width:81px;height:99px}.Pet-Cactus-Red{background-image:url(spritesmith6.png);background-position:-820px -1150px;width:81px;height:99px}.Pet-Cactus-Shade{background-image:url(spritesmith6.png);background-position:-902px -1150px;width:81px;height:99px}.Pet-Cactus-Skeleton{background-image:url(spritesmith6.png);background-position:-984px -1150px;width:81px;height:99px}.Pet-Cactus-White{background-image:url(spritesmith6.png);background-position:-1066px -1150px;width:81px;height:99px}.Pet-Cactus-Zombie{background-image:url(spritesmith6.png);background-position:-1148px -1150px;width:81px;height:99px}.Pet-Deer-Base{background-image:url(spritesmith6.png);background-position:-1262px 0;width:81px;height:99px}.Pet-Deer-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1262px -100px;width:81px;height:99px}.Pet-Deer-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1262px -200px;width:81px;height:99px}.Pet-Deer-Desert{background-image:url(spritesmith6.png);background-position:-1262px -300px;width:81px;height:99px}.Pet-Deer-Golden{background-image:url(spritesmith6.png);background-position:-1262px -400px;width:81px;height:99px}.Pet-Deer-Red{background-image:url(spritesmith6.png);background-position:-1262px -500px;width:81px;height:99px}.Pet-Deer-Shade{background-image:url(spritesmith6.png);background-position:-1262px -600px;width:81px;height:99px}.Pet-Deer-Skeleton{background-image:url(spritesmith6.png);background-position:-1262px -700px;width:81px;height:99px}.Pet-Deer-White{background-image:url(spritesmith6.png);background-position:-1262px -800px;width:81px;height:99px}.Pet-Deer-Zombie{background-image:url(spritesmith6.png);background-position:-1262px -900px;width:81px;height:99px}.Pet-Dragon-Base{background-image:url(spritesmith6.png);background-position:-1262px -1000px;width:81px;height:99px}.Pet-Dragon-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1262px -1100px;width:81px;height:99px}.Pet-Dragon-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1344px 0;width:81px;height:99px}.Pet-Dragon-Desert{background-image:url(spritesmith6.png);background-position:-1344px -100px;width:81px;height:99px}.Pet-Dragon-Golden{background-image:url(spritesmith6.png);background-position:-1344px -200px;width:81px;height:99px}.Pet-Dragon-Hydra{background-image:url(spritesmith6.png);background-position:-1344px -300px;width:81px;height:99px}.Pet-Dragon-Red{background-image:url(spritesmith6.png);background-position:-1344px -400px;width:81px;height:99px}.Pet-Dragon-Shade{background-image:url(spritesmith6.png);background-position:-1344px -500px;width:81px;height:99px}.Pet-Dragon-Skeleton{background-image:url(spritesmith6.png);background-position:-1344px -600px;width:81px;height:99px}.Pet-Dragon-White{background-image:url(spritesmith6.png);background-position:-1344px -700px;width:81px;height:99px}.Pet-Dragon-Zombie{background-image:url(spritesmith6.png);background-position:-1344px -800px;width:81px;height:99px}.Pet-Egg-Base{background-image:url(spritesmith6.png);background-position:-1344px -900px;width:81px;height:99px}.Pet-Egg-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1344px -1000px;width:81px;height:99px}.Pet-Egg-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1344px -1100px;width:81px;height:99px}.Pet-Egg-Desert{background-image:url(spritesmith6.png);background-position:0 -1250px;width:81px;height:99px}.Pet-Egg-Golden{background-image:url(spritesmith6.png);background-position:-82px -1250px;width:81px;height:99px}.Pet-Egg-Red{background-image:url(spritesmith6.png);background-position:-164px -1250px;width:81px;height:99px}.Pet-Egg-Shade{background-image:url(spritesmith6.png);background-position:-246px -1250px;width:81px;height:99px}.Pet-Egg-Skeleton{background-image:url(spritesmith6.png);background-position:-328px -1250px;width:81px;height:99px}.Pet-Egg-White{background-image:url(spritesmith6.png);background-position:-410px -1250px;width:81px;height:99px}.Pet-Egg-Zombie{background-image:url(spritesmith6.png);background-position:-492px -1250px;width:81px;height:99px}.Pet-FlyingPig-Base{background-image:url(spritesmith6.png);background-position:-574px -1250px;width:81px;height:99px}.Pet-FlyingPig-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-656px -1250px;width:81px;height:99px}.Pet-FlyingPig-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-738px -1250px;width:81px;height:99px}.Pet-FlyingPig-Desert{background-image:url(spritesmith6.png);background-position:-820px -1250px;width:81px;height:99px}.Pet-FlyingPig-Golden{background-image:url(spritesmith6.png);background-position:-902px -1250px;width:81px;height:99px}.Pet-FlyingPig-Red{background-image:url(spritesmith6.png);background-position:-984px -1250px;width:81px;height:99px}.Pet-FlyingPig-Shade{background-image:url(spritesmith6.png);background-position:-1066px -1250px;width:81px;height:99px}.Pet-FlyingPig-Skeleton{background-image:url(spritesmith6.png);background-position:-1148px -1250px;width:81px;height:99px}.Pet-FlyingPig-White{background-image:url(spritesmith6.png);background-position:-1230px -1250px;width:81px;height:99px}.Pet-FlyingPig-Zombie{background-image:url(spritesmith6.png);background-position:-1312px -1250px;width:81px;height:99px}.Pet-Fox-Base{background-image:url(spritesmith6.png);background-position:-1426px 0;width:81px;height:99px}.Pet-Fox-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1426px -100px;width:81px;height:99px}.Pet-Fox-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1426px -200px;width:81px;height:99px}.Pet-Fox-Desert{background-image:url(spritesmith6.png);background-position:-1426px -300px;width:81px;height:99px}.Pet-Fox-Golden{background-image:url(spritesmith6.png);background-position:-1426px -400px;width:81px;height:99px}.Pet-Fox-Red{background-image:url(spritesmith6.png);background-position:-1426px -500px;width:81px;height:99px}.Pet-Fox-Shade{background-image:url(spritesmith6.png);background-position:-1426px -600px;width:81px;height:99px}.Pet-Fox-Skeleton{background-image:url(spritesmith6.png);background-position:-1426px -700px;width:81px;height:99px}.Pet-Fox-White{background-image:url(spritesmith6.png);background-position:-1426px -800px;width:81px;height:99px}.Pet-Fox-Zombie{background-image:url(spritesmith6.png);background-position:-1426px -900px;width:81px;height:99px}.Pet-Gryphon-Base{background-image:url(spritesmith6.png);background-position:-1426px -1000px;width:81px;height:99px}.Pet-Gryphon-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1426px -1100px;width:81px;height:99px}.Pet-Gryphon-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1426px -1200px;width:81px;height:99px}.Pet-Gryphon-Desert{background-image:url(spritesmith6.png);background-position:0 -1350px;width:81px;height:99px}.Pet-Gryphon-Golden{background-image:url(spritesmith6.png);background-position:-82px -1350px;width:81px;height:99px}.Pet-Gryphon-Red{background-image:url(spritesmith6.png);background-position:-164px -1350px;width:81px;height:99px}.Pet-Gryphon-Shade{background-image:url(spritesmith6.png);background-position:-246px -1350px;width:81px;height:99px}.Pet-Gryphon-Skeleton{background-image:url(spritesmith6.png);background-position:-328px -1350px;width:81px;height:99px}.Pet-Gryphon-White{background-image:url(spritesmith6.png);background-position:-410px -1350px;width:81px;height:99px}.Pet-Gryphon-Zombie{background-image:url(spritesmith6.png);background-position:-492px -1350px;width:81px;height:99px}.Pet-Hedgehog-Base{background-image:url(spritesmith6.png);background-position:-574px -1350px;width:81px;height:99px}.Pet-Hedgehog-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-656px -1350px;width:81px;height:99px}.Pet-Hedgehog-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-738px -1350px;width:81px;height:99px}.Pet-Hedgehog-Desert{background-image:url(spritesmith6.png);background-position:-820px -1350px;width:81px;height:99px}.Pet-Hedgehog-Golden{background-image:url(spritesmith6.png);background-position:-902px -1350px;width:81px;height:99px}.Pet-Hedgehog-Red{background-image:url(spritesmith6.png);background-position:-984px -1350px;width:81px;height:99px}.Pet-Hedgehog-Shade{background-image:url(spritesmith6.png);background-position:-1066px -1350px;width:81px;height:99px}.Pet-Hedgehog-Skeleton{background-image:url(spritesmith6.png);background-position:-1148px -1350px;width:81px;height:99px}.Pet-Hedgehog-White{background-image:url(spritesmith6.png);background-position:-1230px -1350px;width:81px;height:99px}.Pet-Hedgehog-Zombie{background-image:url(spritesmith6.png);background-position:-1312px -1350px;width:81px;height:99px}.Pet-JackOLantern-Base{background-image:url(spritesmith6.png);background-position:-1394px -1350px;width:81px;height:99px}.Pet-LionCub-Base{background-image:url(spritesmith6.png);background-position:-1508px 0;width:81px;height:99px}.Pet-LionCub-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1508px -100px;width:81px;height:99px}.Pet-LionCub-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1508px -200px;width:81px;height:99px}.Pet-LionCub-Desert{background-image:url(spritesmith6.png);background-position:-1508px -300px;width:81px;height:99px}.Pet-LionCub-Golden{background-image:url(spritesmith6.png);background-position:-1508px -400px;width:81px;height:99px}.Pet-LionCub-Red{background-image:url(spritesmith6.png);background-position:-1508px -500px;width:81px;height:99px}.Pet-LionCub-Shade{background-image:url(spritesmith6.png);background-position:-1508px -600px;width:81px;height:99px}.Pet-LionCub-Skeleton{background-image:url(spritesmith6.png);background-position:-1508px -700px;width:81px;height:99px}.Pet-LionCub-White{background-image:url(spritesmith6.png);background-position:-1508px -800px;width:81px;height:99px}.Pet-LionCub-Zombie{background-image:url(spritesmith6.png);background-position:-1508px -900px;width:81px;height:99px}.Pet-Mammoth-Base{background-image:url(spritesmith6.png);background-position:-1508px -1000px;width:81px;height:99px}.Pet-MantisShrimp-Base{background-image:url(spritesmith6.png);background-position:-1508px -1100px;width:81px;height:99px}.Pet-Octopus-Base{background-image:url(spritesmith6.png);background-position:-1508px -1200px;width:81px;height:99px}.Pet-Octopus-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1508px -1300px;width:81px;height:99px}.Pet-Octopus-CottonCandyPink{background-image:url(spritesmith6.png);background-position:0 -1450px;width:81px;height:99px}.Pet-Octopus-Desert{background-image:url(spritesmith6.png);background-position:-82px -1450px;width:81px;height:99px}.Pet-Octopus-Golden{background-image:url(spritesmith6.png);background-position:-164px -1450px;width:81px;height:99px}.Pet-Octopus-Red{background-image:url(spritesmith6.png);background-position:-246px -1450px;width:81px;height:99px}.Pet-Octopus-Shade{background-image:url(spritesmith6.png);background-position:-328px -1450px;width:81px;height:99px}.Pet-Octopus-Skeleton{background-image:url(spritesmith6.png);background-position:-410px -1450px;width:81px;height:99px}.Pet-Octopus-White{background-image:url(spritesmith6.png);background-position:-492px -1450px;width:81px;height:99px}.Pet-Octopus-Zombie{background-image:url(spritesmith6.png);background-position:-574px -1450px;width:81px;height:99px}.Pet-Owl-Base{background-image:url(spritesmith6.png);background-position:-656px -1450px;width:81px;height:99px}.Pet-Owl-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-738px -1450px;width:81px;height:99px}.Pet-Owl-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-820px -1450px;width:81px;height:99px}.Pet-Owl-Desert{background-image:url(spritesmith6.png);background-position:-902px -1450px;width:81px;height:99px}.Pet-Owl-Golden{background-image:url(spritesmith6.png);background-position:-984px -1450px;width:81px;height:99px}.Pet-Owl-Red{background-image:url(spritesmith6.png);background-position:-1066px -1450px;width:81px;height:99px}.Pet-Owl-Shade{background-image:url(spritesmith6.png);background-position:-1148px -1450px;width:81px;height:99px}.Pet-Owl-Skeleton{background-image:url(spritesmith6.png);background-position:-1230px -1450px;width:81px;height:99px}.Pet-Owl-White{background-image:url(spritesmith6.png);background-position:-1312px -1450px;width:81px;height:99px}.Pet-Owl-Zombie{background-image:url(spritesmith6.png);background-position:-1394px -1450px;width:81px;height:99px}.Pet-PandaCub-Base{background-image:url(spritesmith6.png);background-position:-1476px -1450px;width:81px;height:99px}.Pet-PandaCub-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1590px 0;width:81px;height:99px}.Pet-PandaCub-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1590px -100px;width:81px;height:99px}.Pet-PandaCub-Desert{background-image:url(spritesmith6.png);background-position:-1590px -200px;width:81px;height:99px}.Pet-PandaCub-Golden{background-image:url(spritesmith6.png);background-position:-1590px -300px;width:81px;height:99px}.Pet-PandaCub-Red{background-image:url(spritesmith6.png);background-position:-1590px -400px;width:81px;height:99px}.Pet-PandaCub-Shade{background-image:url(spritesmith6.png);background-position:-1590px -500px;width:81px;height:99px}.Pet-PandaCub-Skeleton{background-image:url(spritesmith6.png);background-position:-1590px -600px;width:81px;height:99px}.Pet-PandaCub-White{background-image:url(spritesmith6.png);background-position:-1590px -700px;width:81px;height:99px}.Pet-PandaCub-Zombie{background-image:url(spritesmith6.png);background-position:-1590px -800px;width:81px;height:99px}.Pet-Parrot-Base{background-image:url(spritesmith6.png);background-position:-1590px -900px;width:81px;height:99px}.Pet-Parrot-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1590px -1000px;width:81px;height:99px}.Pet-Parrot-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1590px -1100px;width:81px;height:99px}.Pet-Parrot-Desert{background-image:url(spritesmith6.png);background-position:-1590px -1200px;width:81px;height:99px}.Pet-Parrot-Golden{background-image:url(spritesmith6.png);background-position:-1590px -1300px;width:81px;height:99px}.Pet-Parrot-Red{background-image:url(spritesmith6.png);background-position:-1590px -1400px;width:81px;height:99px}.Pet-Parrot-Shade{background-image:url(spritesmith6.png);background-position:0 -1550px;width:81px;height:99px}.Pet-Parrot-Skeleton{background-image:url(spritesmith6.png);background-position:-82px -1550px;width:81px;height:99px}.Pet-Parrot-White{background-image:url(spritesmith6.png);background-position:-164px -1550px;width:81px;height:99px}.Pet-Parrot-Zombie{background-image:url(spritesmith6.png);background-position:-246px -1550px;width:81px;height:99px}.Pet-Penguin-Base{background-image:url(spritesmith6.png);background-position:-328px -1550px;width:81px;height:99px}.Pet-Penguin-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-410px -1550px;width:81px;height:99px}.Pet-Penguin-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-492px -1550px;width:81px;height:99px}.Pet-Penguin-Desert{background-image:url(spritesmith6.png);background-position:-574px -1550px;width:81px;height:99px}.Pet-Penguin-Golden{background-image:url(spritesmith6.png);background-position:-656px -1550px;width:81px;height:99px}.Pet-Penguin-Red{background-image:url(spritesmith6.png);background-position:-738px -1550px;width:81px;height:99px}.Pet-Penguin-Shade{background-image:url(spritesmith6.png);background-position:-820px -1550px;width:81px;height:99px}.Pet-Penguin-Skeleton{background-image:url(spritesmith6.png);background-position:-902px -1550px;width:81px;height:99px}.Pet-Penguin-White{background-image:url(spritesmith6.png);background-position:-984px -1550px;width:81px;height:99px}.Pet-Penguin-Zombie{background-image:url(spritesmith6.png);background-position:-1066px -1550px;width:81px;height:99px}.Pet-Rat-Base{background-image:url(spritesmith6.png);background-position:-1148px -1550px;width:81px;height:99px}.Pet-Rat-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1230px -1550px;width:81px;height:99px}.Pet-Rat-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1312px -1550px;width:81px;height:99px}.Pet-Rat-Desert{background-image:url(spritesmith6.png);background-position:-1394px -1550px;width:81px;height:99px}.Pet-Rat-Golden{background-image:url(spritesmith6.png);background-position:-1476px -1550px;width:81px;height:99px}.Pet-Rat-Red{background-image:url(spritesmith6.png);background-position:-1558px -1550px;width:81px;height:99px}.Pet-Rat-Shade{background-image:url(spritesmith6.png);background-position:-1672px 0;width:81px;height:99px}.Pet-Rat-Skeleton{background-image:url(spritesmith6.png);background-position:-1672px -100px;width:81px;height:99px}.Pet-Rat-White{background-image:url(spritesmith6.png);background-position:-1672px -200px;width:81px;height:99px}.Pet-Rat-Zombie{background-image:url(spritesmith6.png);background-position:-1672px -300px;width:81px;height:99px}.Pet-Rock-Base{background-image:url(spritesmith6.png);background-position:-1672px -400px;width:81px;height:99px}.Pet-Rock-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1672px -500px;width:81px;height:99px}.Pet-Rock-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1672px -600px;width:81px;height:99px}.Pet-Rock-Desert{background-image:url(spritesmith6.png);background-position:-1672px -700px;width:81px;height:99px}.Pet-Rock-Golden{background-image:url(spritesmith6.png);background-position:-1672px -800px;width:81px;height:99px}.Pet-Rock-Red{background-image:url(spritesmith6.png);background-position:-1672px -900px;width:81px;height:99px}.Pet-Rock-Shade{background-image:url(spritesmith6.png);background-position:-1672px -1000px;width:81px;height:99px}.Pet-Rock-Skeleton{background-image:url(spritesmith6.png);background-position:-1672px -1100px;width:81px;height:99px}.Pet-Rock-White{background-image:url(spritesmith6.png);background-position:-1672px -1200px;width:81px;height:99px}.Pet-Rock-Zombie{background-image:url(spritesmith6.png);background-position:-1672px -1300px;width:81px;height:99px}.Pet-Rooster-Base{background-image:url(spritesmith6.png);background-position:-1672px -1400px;width:81px;height:99px}.Pet-Rooster-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1672px -1500px;width:81px;height:99px}.Pet-Rooster-CottonCandyPink{background-image:url(spritesmith6.png);background-position:0 -1650px;width:81px;height:99px}.Pet-Rooster-Desert{background-image:url(spritesmith6.png);background-position:-82px -1650px;width:81px;height:99px}.Pet-Rooster-Golden{background-image:url(spritesmith6.png);background-position:-164px -1650px;width:81px;height:99px}.Pet-Rooster-Red{background-image:url(spritesmith6.png);background-position:-246px -1650px;width:81px;height:99px}.Pet-Rooster-Shade{background-image:url(spritesmith6.png);background-position:-328px -1650px;width:81px;height:99px}.Pet-Rooster-Skeleton{background-image:url(spritesmith6.png);background-position:-410px -1650px;width:81px;height:99px}.Pet-Rooster-White{background-image:url(spritesmith6.png);background-position:-492px -1650px;width:81px;height:99px}.Pet-Rooster-Zombie{background-image:url(spritesmith6.png);background-position:-574px -1650px;width:81px;height:99px}.Pet-Seahorse-Base{background-image:url(spritesmith6.png);background-position:-656px -1650px;width:81px;height:99px}.Pet-Seahorse-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-738px -1650px;width:81px;height:99px}.Pet-Seahorse-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-820px -1650px;width:81px;height:99px}.Pet-Seahorse-Desert{background-image:url(spritesmith6.png);background-position:-902px -1650px;width:81px;height:99px}.Pet-Seahorse-Golden{background-image:url(spritesmith6.png);background-position:-984px -1650px;width:81px;height:99px}.Pet-Seahorse-Red{background-image:url(spritesmith6.png);background-position:-1066px -1650px;width:81px;height:99px}.Pet-Seahorse-Shade{background-image:url(spritesmith6.png);background-position:-1148px -1650px;width:81px;height:99px}.Pet-Seahorse-Skeleton{background-image:url(spritesmith6.png);background-position:-1230px -1650px;width:81px;height:99px}.Pet-Seahorse-White{background-image:url(spritesmith6.png);background-position:-1312px -1650px;width:81px;height:99px}.Pet-Seahorse-Zombie{background-image:url(spritesmith6.png);background-position:-1394px -1650px;width:81px;height:99px}.Pet-Slime-Base{background-image:url(spritesmith6.png);background-position:-1476px -1650px;width:81px;height:99px}.Pet-Slime-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1558px -1650px;width:81px;height:99px}.Pet-Slime-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1640px -1650px;width:81px;height:99px}.Pet-Slime-Desert{background-image:url(spritesmith6.png);background-position:-1754px 0;width:81px;height:99px}.Pet-Slime-Golden{background-image:url(spritesmith6.png);background-position:-1754px -100px;width:81px;height:99px}.Pet-Slime-Red{background-image:url(spritesmith6.png);background-position:-1754px -200px;width:81px;height:99px}.Pet-Slime-Shade{background-image:url(spritesmith6.png);background-position:-1754px -300px;width:81px;height:99px}.Pet-Slime-Skeleton{background-image:url(spritesmith6.png);background-position:-1754px -400px;width:81px;height:99px}.Pet-Slime-White{background-image:url(spritesmith6.png);background-position:-1754px -500px;width:81px;height:99px}.Pet-Slime-Zombie{background-image:url(spritesmith6.png);background-position:-1754px -600px;width:81px;height:99px}.Pet-Spider-Base{background-image:url(spritesmith6.png);background-position:-1754px -700px;width:81px;height:99px}.Pet-Spider-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1754px -800px;width:81px;height:99px}.Pet-Spider-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1754px -900px;width:81px;height:99px}.Pet-Spider-Desert{background-image:url(spritesmith6.png);background-position:-1754px -1000px;width:81px;height:99px}.Pet-Spider-Golden{background-image:url(spritesmith6.png);background-position:-1754px -1100px;width:81px;height:99px}.Pet-Spider-Red{background-image:url(spritesmith6.png);background-position:-1754px -1200px;width:81px;height:99px}.Pet-Spider-Shade{background-image:url(spritesmith6.png);background-position:-1754px -1300px;width:81px;height:99px}.Pet-Spider-Skeleton{background-image:url(spritesmith6.png);background-position:-1754px -1400px;width:81px;height:99px}.Pet-Spider-White{background-image:url(spritesmith6.png);background-position:-1754px -1500px;width:81px;height:99px}.Pet-Spider-Zombie{background-image:url(spritesmith6.png);background-position:-1754px -1600px;width:81px;height:99px}.Pet-TRex-Base{background-image:url(spritesmith6.png);background-position:-1836px 0;width:81px;height:99px}.Pet-TRex-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1836px -100px;width:81px;height:99px}.Pet-TRex-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1836px -200px;width:81px;height:99px}.Pet-TRex-Desert{background-image:url(spritesmith6.png);background-position:-1836px -300px;width:81px;height:99px}.Pet-TRex-Golden{background-image:url(spritesmith6.png);background-position:-1836px -400px;width:81px;height:99px}.Pet-TRex-Red{background-image:url(spritesmith6.png);background-position:-1836px -500px;width:81px;height:99px}.Pet-TRex-Shade{background-image:url(spritesmith6.png);background-position:-1836px -600px;width:81px;height:99px}.Pet-TRex-Skeleton{background-image:url(spritesmith6.png);background-position:-1836px -700px;width:81px;height:99px}.Pet-TRex-White{background-image:url(spritesmith6.png);background-position:-1836px -800px;width:81px;height:99px}.Pet-TRex-Zombie{background-image:url(spritesmith6.png);background-position:-1836px -900px;width:81px;height:99px}.Pet-TigerCub-Base{background-image:url(spritesmith6.png);background-position:-1836px -1000px;width:81px;height:99px}.Pet-TigerCub-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1836px -1100px;width:81px;height:99px}.Pet-TigerCub-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1836px -1200px;width:81px;height:99px}.Pet-TigerCub-Desert{background-image:url(spritesmith6.png);background-position:-1836px -1300px;width:81px;height:99px}.Pet-TigerCub-Golden{background-image:url(spritesmith6.png);background-position:-1836px -1400px;width:81px;height:99px}.Pet-TigerCub-Red{background-image:url(spritesmith6.png);background-position:-1836px -1500px;width:81px;height:99px}.Pet-TigerCub-Shade{background-image:url(spritesmith6.png);background-position:-1836px -1600px;width:81px;height:99px}.Pet-TigerCub-Skeleton{background-image:url(spritesmith6.png);background-position:0 -1750px;width:81px;height:99px}.Pet-TigerCub-White{background-image:url(spritesmith6.png);background-position:-82px -1750px;width:81px;height:99px}.Pet-TigerCub-Zombie{background-image:url(spritesmith6.png);background-position:-164px -1750px;width:81px;height:99px}.Pet-Turkey-Base{background-image:url(spritesmith6.png);background-position:-246px -1750px;width:81px;height:99px}.Pet-Wolf-Base{background-image:url(spritesmith6.png);background-position:-328px -1750px;width:81px;height:99px}.Pet-Wolf-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-410px -1750px;width:81px;height:99px}.Pet-Wolf-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-492px -1750px;width:81px;height:99px}.Pet-Wolf-Desert{background-image:url(spritesmith6.png);background-position:-574px -1750px;width:81px;height:99px}.Pet-Wolf-Golden{background-image:url(spritesmith6.png);background-position:-656px -1750px;width:81px;height:99px}.Pet-Wolf-Red{background-image:url(spritesmith6.png);background-position:-738px -1750px;width:81px;height:99px}.Pet-Wolf-Shade{background-image:url(spritesmith6.png);background-position:-820px -1750px;width:81px;height:99px}.Pet-Wolf-Skeleton{background-image:url(spritesmith6.png);background-position:-902px -1750px;width:81px;height:99px}.Pet-Wolf-Veteran{background-image:url(spritesmith6.png);background-position:-984px -1750px;width:81px;height:99px}.Pet-Wolf-White{background-image:url(spritesmith6.png);background-position:-1066px -1750px;width:81px;height:99px}.Pet-Wolf-Zombie{background-image:url(spritesmith6.png);background-position:-1148px -1750px;width:81px;height:99px}.Pet_HatchingPotion_Base{background-image:url(spritesmith6.png);background-position:-1074px -954px;width:48px;height:51px}.Pet_HatchingPotion_CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1123px -954px;width:48px;height:51px}.Pet_HatchingPotion_CottonCandyPink{background-image:url(spritesmith6.png);background-position:-968px -848px;width:48px;height:51px}.Pet_HatchingPotion_Desert{background-image:url(spritesmith6.png);background-position:-1017px -848px;width:48px;height:51px}.Pet_HatchingPotion_Golden{background-image:url(spritesmith6.png);background-position:-862px -742px;width:48px;height:51px}.Pet_HatchingPotion_Red{background-image:url(spritesmith6.png);background-position:-911px -742px;width:48px;height:51px}.Pet_HatchingPotion_Shade{background-image:url(spritesmith6.png);background-position:-756px -636px;width:48px;height:51px}.Pet_HatchingPotion_Skeleton{background-image:url(spritesmith6.png);background-position:-805px -636px;width:48px;height:51px}.Pet_HatchingPotion_White{background-image:url(spritesmith6.png);background-position:-650px -530px;width:48px;height:51px}.Pet_HatchingPotion_Zombie{background-image:url(spritesmith6.png);background-position:-699px -530px;width:48px;height:51px}.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(/common/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(/common/img/sprites/backer-only/BackerOnly-Equip-ShadeHelmet.gif) no-repeat}.head_special_1{background:url(/common/img/sprites/backer-only/ContributorOnly-Equip-CrystalHelmet.gif) no-repeat;margin-top:3px}.broad_armor_special_0,.slim_armor_special_0{background:url(/common/img/sprites/backer-only/BackerOnly-Equip-ShadeArmor.gif) no-repeat}.broad_armor_special_1,.slim_armor_special_1{background:url(/common/img/sprites/backer-only/ContributorOnly-Equip-CrystalArmor.gif) no-repeat}.shield_special_0{background:url(/common/img/sprites/backer-only/BackerOnly-Shield-TormentedSkull.gif) no-repeat}.weapon_special_0{background:url(/common/img/sprites/backer-only/BackerOnly-Weapon-DarkSoulsBlade.gif) no-repeat}.Pet-Wolf-Cerberus{width:105px;height:72px;background:url(/common/img/sprites/backer-only/BackerOnly-Pet-CerberusPup.gif) no-repeat}.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
+.achievement-alien{background-image:url(spritesmith0.png);background-position:-1403px -1301px;width:24px;height:26px}.achievement-alpha{background-image:url(spritesmith0.png);background-position:-1833px -1729px;width:24px;height:26px}.achievement-armor{background-image:url(spritesmith0.png);background-position:-1378px -1301px;width:24px;height:26px}.achievement-boot{background-image:url(spritesmith0.png);background-position:-1353px -1301px;width:24px;height:26px}.achievement-bow{background-image:url(spritesmith0.png);background-position:-1403px -1274px;width:24px;height:26px}.achievement-cactus{background-image:url(spritesmith0.png);background-position:-1378px -1274px;width:24px;height:26px}.achievement-cake{background-image:url(spritesmith0.png);background-position:-1353px -1274px;width:24px;height:26px}.achievement-cave{background-image:url(spritesmith0.png);background-position:-1494px -1392px;width:24px;height:26px}.achievement-coffin{background-image:url(spritesmith0.png);background-position:-1469px -1392px;width:24px;height:26px}.achievement-comment{background-image:url(spritesmith0.png);background-position:-1444px -1392px;width:24px;height:26px}.achievement-costumeContest{background-image:url(spritesmith0.png);background-position:-1494px -1365px;width:24px;height:26px}.achievement-dilatory{background-image:url(spritesmith0.png);background-position:-1469px -1365px;width:24px;height:26px}.achievement-firefox{background-image:url(spritesmith0.png);background-position:-1444px -1365px;width:24px;height:26px}.achievement-habitBirthday{background-image:url(spritesmith0.png);background-position:-1585px -1483px;width:24px;height:26px}.achievement-heart{background-image:url(spritesmith0.png);background-position:-1560px -1483px;width:24px;height:26px}.achievement-karaoke{background-image:url(spritesmith0.png);background-position:-1535px -1483px;width:24px;height:26px}.achievement-ninja{background-image:url(spritesmith0.png);background-position:-1585px -1456px;width:24px;height:26px}.achievement-nye{background-image:url(spritesmith0.png);background-position:-1560px -1456px;width:24px;height:26px}.achievement-perfect{background-image:url(spritesmith0.png);background-position:-1808px -1729px;width:24px;height:26px}.achievement-rat{background-image:url(spritesmith0.png);background-position:-1676px -1574px;width:24px;height:26px}.achievement-shield{background-image:url(spritesmith0.png);background-position:-1651px -1574px;width:24px;height:26px}.achievement-shinySeed{background-image:url(spritesmith0.png);background-position:-1626px -1574px;width:24px;height:26px}.achievement-snowball{background-image:url(spritesmith0.png);background-position:-1676px -1547px;width:24px;height:26px}.achievement-spookDust{background-image:url(spritesmith0.png);background-position:-1651px -1547px;width:24px;height:26px}.achievement-stoikalm{background-image:url(spritesmith0.png);background-position:-1626px -1547px;width:24px;height:26px}.achievement-sun{background-image:url(spritesmith0.png);background-position:-1767px -1665px;width:24px;height:26px}.achievement-sword{background-image:url(spritesmith0.png);background-position:-1742px -1665px;width:24px;height:26px}.achievement-thermometer{background-image:url(spritesmith0.png);background-position:-1717px -1665px;width:24px;height:26px}.achievement-tree{background-image:url(spritesmith0.png);background-position:-1767px -1638px;width:24px;height:26px}.achievement-triadbingo{background-image:url(spritesmith0.png);background-position:-1742px -1638px;width:24px;height:26px}.achievement-ultimate-healer{background-image:url(spritesmith0.png);background-position:-1717px -1638px;width:24px;height:26px}.achievement-ultimate-mage{background-image:url(spritesmith0.png);background-position:-1858px -1756px;width:24px;height:26px}.achievement-ultimate-rogue{background-image:url(spritesmith0.png);background-position:-1833px -1756px;width:24px;height:26px}.achievement-ultimate-warrior{background-image:url(spritesmith0.png);background-position:-1808px -1756px;width:24px;height:26px}.achievement-valentine{background-image:url(spritesmith0.png);background-position:-1858px -1729px;width:24px;height:26px}.achievement-wolf{background-image:url(spritesmith0.png);background-position:-1535px -1456px;width:24px;height:26px}.background_autumn_forest{background-image:url(spritesmith0.png);background-position:-707px 0;width:140px;height:147px}.background_beach{background-image:url(spritesmith0.png);background-position:-283px 0;width:141px;height:147px}.background_blacksmithy{background-image:url(spritesmith0.png);background-position:0 -148px;width:140px;height:147px}.background_cherry_trees{background-image:url(spritesmith0.png);background-position:-141px -148px;width:140px;height:147px}.background_clouds{background-image:url(spritesmith0.png);background-position:-282px -148px;width:140px;height:147px}.background_coral_reef{background-image:url(spritesmith0.png);background-position:-425px 0;width:140px;height:147px}.background_crystal_cave{background-image:url(spritesmith0.png);background-position:-425px -148px;width:140px;height:147px}.background_distant_castle{background-image:url(spritesmith0.png);background-position:0 -296px;width:140px;height:147px}.background_drifting_raft{background-image:url(spritesmith0.png);background-position:-141px -296px;width:140px;height:147px}.background_dusty_canyons{background-image:url(spritesmith0.png);background-position:-282px -296px;width:140px;height:147px}.background_fairy_ring{background-image:url(spritesmith0.png);background-position:-423px -296px;width:140px;height:147px}.background_floral_meadow{background-image:url(spritesmith0.png);background-position:-566px 0;width:140px;height:147px}.background_forest{background-image:url(spritesmith0.png);background-position:-566px -148px;width:140px;height:147px}.background_frigid_peak{background-image:url(spritesmith0.png);background-position:-566px -296px;width:140px;height:147px}.background_graveyard{background-image:url(spritesmith0.png);background-position:0 -444px;width:140px;height:147px}.background_gumdrop_land{background-image:url(spritesmith0.png);background-position:-141px -444px;width:140px;height:147px}.background_harvest_feast{background-image:url(spritesmith0.png);background-position:-282px -444px;width:140px;height:147px}.background_harvest_fields{background-image:url(spritesmith0.png);background-position:-423px -444px;width:141px;height:147px}.background_haunted_house{background-image:url(spritesmith0.png);background-position:-565px -444px;width:140px;height:147px}.background_ice_cave{background-image:url(spritesmith0.png);background-position:0 0;width:141px;height:147px}.background_iceberg{background-image:url(spritesmith0.png);background-position:-707px -148px;width:140px;height:147px}.background_island_waterfalls{background-image:url(spritesmith0.png);background-position:-707px -296px;width:140px;height:147px}.background_marble_temple{background-image:url(spritesmith0.png);background-position:0 -592px;width:141px;height:147px}.background_mountain_lake{background-image:url(spritesmith0.png);background-position:-707px -444px;width:140px;height:147px}.background_open_waters{background-image:url(spritesmith0.png);background-position:-142px -592px;width:141px;height:147px}.background_pagodas{background-image:url(spritesmith0.png);background-position:-284px -592px;width:140px;height:147px}.background_pumpkin_patch{background-image:url(spritesmith0.png);background-position:-425px -592px;width:140px;height:147px}.background_rolling_hills{background-image:url(spritesmith0.png);background-position:-566px -592px;width:141px;height:147px}.background_seafarer_ship{background-image:url(spritesmith0.png);background-position:-848px 0;width:140px;height:147px}.background_shimmery_bubbles{background-image:url(spritesmith0.png);background-position:-848px -148px;width:140px;height:147px}.background_snowy_pines{background-image:url(spritesmith0.png);background-position:-848px -296px;width:140px;height:147px}.background_south_pole{background-image:url(spritesmith0.png);background-position:-848px -444px;width:140px;height:147px}.background_spring_rain{background-image:url(spritesmith0.png);background-position:-848px -592px;width:140px;height:147px}.background_stained_glass{background-image:url(spritesmith0.png);background-position:0 -740px;width:140px;height:147px}.background_starry_skies{background-image:url(spritesmith0.png);background-position:-141px -740px;width:140px;height:147px}.background_sunset_meadow{background-image:url(spritesmith0.png);background-position:-282px -740px;width:140px;height:147px}.background_thunderstorm{background-image:url(spritesmith0.png);background-position:-423px -740px;width:141px;height:147px}.background_twinkly_lights{background-image:url(spritesmith0.png);background-position:-565px -740px;width:141px;height:147px}.background_volcano{background-image:url(spritesmith0.png);background-position:-142px 0;width:140px;height:147px}.hair_beard_1_TRUred{background-image:url(spritesmith0.png);background-position:-1080px -91px;width:90px;height:90px}.customize-option.hair_beard_1_TRUred{background-image:url(spritesmith0.png);background-position:-1105px -106px;width:60px;height:60px}.hair_beard_1_aurora{background-image:url(spritesmith0.png);background-position:-1080px -182px;width:90px;height:90px}.customize-option.hair_beard_1_aurora{background-image:url(spritesmith0.png);background-position:-1105px -197px;width:60px;height:60px}.hair_beard_1_black{background-image:url(spritesmith0.png);background-position:-1080px -273px;width:90px;height:90px}.customize-option.hair_beard_1_black{background-image:url(spritesmith0.png);background-position:-1105px -288px;width:60px;height:60px}.hair_beard_1_blond{background-image:url(spritesmith0.png);background-position:-1080px -364px;width:90px;height:90px}.customize-option.hair_beard_1_blond{background-image:url(spritesmith0.png);background-position:-1105px -379px;width:60px;height:60px}.hair_beard_1_blue{background-image:url(spritesmith0.png);background-position:-1080px -455px;width:90px;height:90px}.customize-option.hair_beard_1_blue{background-image:url(spritesmith0.png);background-position:-1105px -470px;width:60px;height:60px}.hair_beard_1_brown{background-image:url(spritesmith0.png);background-position:-1080px -546px;width:90px;height:90px}.customize-option.hair_beard_1_brown{background-image:url(spritesmith0.png);background-position:-1105px -561px;width:60px;height:60px}.hair_beard_1_candycane{background-image:url(spritesmith0.png);background-position:-1080px -637px;width:90px;height:90px}.customize-option.hair_beard_1_candycane{background-image:url(spritesmith0.png);background-position:-1105px -652px;width:60px;height:60px}.hair_beard_1_candycorn{background-image:url(spritesmith0.png);background-position:-1080px -728px;width:90px;height:90px}.customize-option.hair_beard_1_candycorn{background-image:url(spritesmith0.png);background-position:-1105px -743px;width:60px;height:60px}.hair_beard_1_festive{background-image:url(spritesmith0.png);background-position:-1080px -819px;width:90px;height:90px}.customize-option.hair_beard_1_festive{background-image:url(spritesmith0.png);background-position:-1105px -834px;width:60px;height:60px}.hair_beard_1_frost{background-image:url(spritesmith0.png);background-position:-1080px -910px;width:90px;height:90px}.customize-option.hair_beard_1_frost{background-image:url(spritesmith0.png);background-position:-1105px -925px;width:60px;height:60px}.hair_beard_1_ghostwhite{background-image:url(spritesmith0.png);background-position:0 -1070px;width:90px;height:90px}.customize-option.hair_beard_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-25px -1085px;width:60px;height:60px}.hair_beard_1_green{background-image:url(spritesmith0.png);background-position:-91px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_green{background-image:url(spritesmith0.png);background-position:-116px -1085px;width:60px;height:60px}.hair_beard_1_halloween{background-image:url(spritesmith0.png);background-position:-182px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_halloween{background-image:url(spritesmith0.png);background-position:-207px -1085px;width:60px;height:60px}.hair_beard_1_holly{background-image:url(spritesmith0.png);background-position:-273px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_holly{background-image:url(spritesmith0.png);background-position:-298px -1085px;width:60px;height:60px}.hair_beard_1_hollygreen{background-image:url(spritesmith0.png);background-position:-364px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_hollygreen{background-image:url(spritesmith0.png);background-position:-389px -1085px;width:60px;height:60px}.hair_beard_1_midnight{background-image:url(spritesmith0.png);background-position:-455px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_midnight{background-image:url(spritesmith0.png);background-position:-480px -1085px;width:60px;height:60px}.hair_beard_1_pblue{background-image:url(spritesmith0.png);background-position:-546px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_pblue{background-image:url(spritesmith0.png);background-position:-571px -1085px;width:60px;height:60px}.hair_beard_1_peppermint{background-image:url(spritesmith0.png);background-position:-637px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_peppermint{background-image:url(spritesmith0.png);background-position:-662px -1085px;width:60px;height:60px}.hair_beard_1_pgreen{background-image:url(spritesmith0.png);background-position:-728px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_pgreen{background-image:url(spritesmith0.png);background-position:-753px -1085px;width:60px;height:60px}.hair_beard_1_porange{background-image:url(spritesmith0.png);background-position:-819px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_porange{background-image:url(spritesmith0.png);background-position:-844px -1085px;width:60px;height:60px}.hair_beard_1_ppink{background-image:url(spritesmith0.png);background-position:-910px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_ppink{background-image:url(spritesmith0.png);background-position:-935px -1085px;width:60px;height:60px}.hair_beard_1_ppurple{background-image:url(spritesmith0.png);background-position:-1001px -1070px;width:90px;height:90px}.customize-option.hair_beard_1_ppurple{background-image:url(spritesmith0.png);background-position:-1026px -1085px;width:60px;height:60px}.hair_beard_1_pumpkin{background-image:url(spritesmith0.png);background-position:-1171px 0;width:90px;height:90px}.customize-option.hair_beard_1_pumpkin{background-image:url(spritesmith0.png);background-position:-1196px -15px;width:60px;height:60px}.hair_beard_1_purple{background-image:url(spritesmith0.png);background-position:-1171px -91px;width:90px;height:90px}.customize-option.hair_beard_1_purple{background-image:url(spritesmith0.png);background-position:-1196px -106px;width:60px;height:60px}.hair_beard_1_pyellow{background-image:url(spritesmith0.png);background-position:-1171px -182px;width:90px;height:90px}.customize-option.hair_beard_1_pyellow{background-image:url(spritesmith0.png);background-position:-1196px -197px;width:60px;height:60px}.hair_beard_1_rainbow{background-image:url(spritesmith0.png);background-position:-1171px -273px;width:90px;height:90px}.customize-option.hair_beard_1_rainbow{background-image:url(spritesmith0.png);background-position:-1196px -288px;width:60px;height:60px}.hair_beard_1_red{background-image:url(spritesmith0.png);background-position:-1171px -364px;width:90px;height:90px}.customize-option.hair_beard_1_red{background-image:url(spritesmith0.png);background-position:-1196px -379px;width:60px;height:60px}.hair_beard_1_snowy{background-image:url(spritesmith0.png);background-position:-1171px -455px;width:90px;height:90px}.customize-option.hair_beard_1_snowy{background-image:url(spritesmith0.png);background-position:-1196px -470px;width:60px;height:60px}.hair_beard_1_white{background-image:url(spritesmith0.png);background-position:-1171px -546px;width:90px;height:90px}.customize-option.hair_beard_1_white{background-image:url(spritesmith0.png);background-position:-1196px -561px;width:60px;height:60px}.hair_beard_1_winternight{background-image:url(spritesmith0.png);background-position:-1171px -637px;width:90px;height:90px}.customize-option.hair_beard_1_winternight{background-image:url(spritesmith0.png);background-position:-1196px -652px;width:60px;height:60px}.hair_beard_1_winterstar{background-image:url(spritesmith0.png);background-position:-1171px -728px;width:90px;height:90px}.customize-option.hair_beard_1_winterstar{background-image:url(spritesmith0.png);background-position:-1196px -743px;width:60px;height:60px}.hair_beard_1_yellow{background-image:url(spritesmith0.png);background-position:-1171px -819px;width:90px;height:90px}.customize-option.hair_beard_1_yellow{background-image:url(spritesmith0.png);background-position:-1196px -834px;width:60px;height:60px}.hair_beard_1_zombie{background-image:url(spritesmith0.png);background-position:-1171px -910px;width:90px;height:90px}.customize-option.hair_beard_1_zombie{background-image:url(spritesmith0.png);background-position:-1196px -925px;width:60px;height:60px}.hair_beard_2_TRUred{background-image:url(spritesmith0.png);background-position:-1171px -1001px;width:90px;height:90px}.customize-option.hair_beard_2_TRUred{background-image:url(spritesmith0.png);background-position:-1196px -1016px;width:60px;height:60px}.hair_beard_2_aurora{background-image:url(spritesmith0.png);background-position:0 -1161px;width:90px;height:90px}.customize-option.hair_beard_2_aurora{background-image:url(spritesmith0.png);background-position:-25px -1176px;width:60px;height:60px}.hair_beard_2_black{background-image:url(spritesmith0.png);background-position:-91px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_black{background-image:url(spritesmith0.png);background-position:-116px -1176px;width:60px;height:60px}.hair_beard_2_blond{background-image:url(spritesmith0.png);background-position:-182px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_blond{background-image:url(spritesmith0.png);background-position:-207px -1176px;width:60px;height:60px}.hair_beard_2_blue{background-image:url(spritesmith0.png);background-position:-273px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_blue{background-image:url(spritesmith0.png);background-position:-298px -1176px;width:60px;height:60px}.hair_beard_2_brown{background-image:url(spritesmith0.png);background-position:-364px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_brown{background-image:url(spritesmith0.png);background-position:-389px -1176px;width:60px;height:60px}.hair_beard_2_candycane{background-image:url(spritesmith0.png);background-position:-455px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_candycane{background-image:url(spritesmith0.png);background-position:-480px -1176px;width:60px;height:60px}.hair_beard_2_candycorn{background-image:url(spritesmith0.png);background-position:-546px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_candycorn{background-image:url(spritesmith0.png);background-position:-571px -1176px;width:60px;height:60px}.hair_beard_2_festive{background-image:url(spritesmith0.png);background-position:-637px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_festive{background-image:url(spritesmith0.png);background-position:-662px -1176px;width:60px;height:60px}.hair_beard_2_frost{background-image:url(spritesmith0.png);background-position:-728px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_frost{background-image:url(spritesmith0.png);background-position:-753px -1176px;width:60px;height:60px}.hair_beard_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-819px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-844px -1176px;width:60px;height:60px}.hair_beard_2_green{background-image:url(spritesmith0.png);background-position:-910px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_green{background-image:url(spritesmith0.png);background-position:-935px -1176px;width:60px;height:60px}.hair_beard_2_halloween{background-image:url(spritesmith0.png);background-position:-1001px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_halloween{background-image:url(spritesmith0.png);background-position:-1026px -1176px;width:60px;height:60px}.hair_beard_2_holly{background-image:url(spritesmith0.png);background-position:-1092px -1161px;width:90px;height:90px}.customize-option.hair_beard_2_holly{background-image:url(spritesmith0.png);background-position:-1117px -1176px;width:60px;height:60px}.hair_beard_2_hollygreen{background-image:url(spritesmith0.png);background-position:-1262px 0;width:90px;height:90px}.customize-option.hair_beard_2_hollygreen{background-image:url(spritesmith0.png);background-position:-1287px -15px;width:60px;height:60px}.hair_beard_2_midnight{background-image:url(spritesmith0.png);background-position:-1262px -91px;width:90px;height:90px}.customize-option.hair_beard_2_midnight{background-image:url(spritesmith0.png);background-position:-1287px -106px;width:60px;height:60px}.hair_beard_2_pblue{background-image:url(spritesmith0.png);background-position:-1262px -182px;width:90px;height:90px}.customize-option.hair_beard_2_pblue{background-image:url(spritesmith0.png);background-position:-1287px -197px;width:60px;height:60px}.hair_beard_2_peppermint{background-image:url(spritesmith0.png);background-position:-1262px -273px;width:90px;height:90px}.customize-option.hair_beard_2_peppermint{background-image:url(spritesmith0.png);background-position:-1287px -288px;width:60px;height:60px}.hair_beard_2_pgreen{background-image:url(spritesmith0.png);background-position:-1262px -364px;width:90px;height:90px}.customize-option.hair_beard_2_pgreen{background-image:url(spritesmith0.png);background-position:-1287px -379px;width:60px;height:60px}.hair_beard_2_porange{background-image:url(spritesmith0.png);background-position:-1262px -455px;width:90px;height:90px}.customize-option.hair_beard_2_porange{background-image:url(spritesmith0.png);background-position:-1287px -470px;width:60px;height:60px}.hair_beard_2_ppink{background-image:url(spritesmith0.png);background-position:-1262px -546px;width:90px;height:90px}.customize-option.hair_beard_2_ppink{background-image:url(spritesmith0.png);background-position:-1287px -561px;width:60px;height:60px}.hair_beard_2_ppurple{background-image:url(spritesmith0.png);background-position:-1262px -637px;width:90px;height:90px}.customize-option.hair_beard_2_ppurple{background-image:url(spritesmith0.png);background-position:-1287px -652px;width:60px;height:60px}.hair_beard_2_pumpkin{background-image:url(spritesmith0.png);background-position:-1262px -728px;width:90px;height:90px}.customize-option.hair_beard_2_pumpkin{background-image:url(spritesmith0.png);background-position:-1287px -743px;width:60px;height:60px}.hair_beard_2_purple{background-image:url(spritesmith0.png);background-position:-1262px -819px;width:90px;height:90px}.customize-option.hair_beard_2_purple{background-image:url(spritesmith0.png);background-position:-1287px -834px;width:60px;height:60px}.hair_beard_2_pyellow{background-image:url(spritesmith0.png);background-position:-1262px -910px;width:90px;height:90px}.customize-option.hair_beard_2_pyellow{background-image:url(spritesmith0.png);background-position:-1287px -925px;width:60px;height:60px}.hair_beard_2_rainbow{background-image:url(spritesmith0.png);background-position:-1262px -1001px;width:90px;height:90px}.customize-option.hair_beard_2_rainbow{background-image:url(spritesmith0.png);background-position:-1287px -1016px;width:60px;height:60px}.hair_beard_2_red{background-image:url(spritesmith0.png);background-position:-1262px -1092px;width:90px;height:90px}.customize-option.hair_beard_2_red{background-image:url(spritesmith0.png);background-position:-1287px -1107px;width:60px;height:60px}.hair_beard_2_snowy{background-image:url(spritesmith0.png);background-position:0 -1252px;width:90px;height:90px}.customize-option.hair_beard_2_snowy{background-image:url(spritesmith0.png);background-position:-25px -1267px;width:60px;height:60px}.hair_beard_2_white{background-image:url(spritesmith0.png);background-position:-91px -1252px;width:90px;height:90px}.customize-option.hair_beard_2_white{background-image:url(spritesmith0.png);background-position:-116px -1267px;width:60px;height:60px}.hair_beard_2_winternight{background-image:url(spritesmith0.png);background-position:-182px -1252px;width:90px;height:90px}.customize-option.hair_beard_2_winternight{background-image:url(spritesmith0.png);background-position:-207px -1267px;width:60px;height:60px}.hair_beard_2_winterstar{background-image:url(spritesmith0.png);background-position:-273px -1252px;width:90px;height:90px}.customize-option.hair_beard_2_winterstar{background-image:url(spritesmith0.png);background-position:-298px -1267px;width:60px;height:60px}.hair_beard_2_yellow{background-image:url(spritesmith0.png);background-position:-364px -1252px;width:90px;height:90px}.customize-option.hair_beard_2_yellow{background-image:url(spritesmith0.png);background-position:-389px -1267px;width:60px;height:60px}.hair_beard_2_zombie{background-image:url(spritesmith0.png);background-position:-455px -1252px;width:90px;height:90px}.customize-option.hair_beard_2_zombie{background-image:url(spritesmith0.png);background-position:-480px -1267px;width:60px;height:60px}.hair_beard_3_TRUred{background-image:url(spritesmith0.png);background-position:-546px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_TRUred{background-image:url(spritesmith0.png);background-position:-571px -1267px;width:60px;height:60px}.hair_beard_3_aurora{background-image:url(spritesmith0.png);background-position:-637px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_aurora{background-image:url(spritesmith0.png);background-position:-662px -1267px;width:60px;height:60px}.hair_beard_3_black{background-image:url(spritesmith0.png);background-position:-728px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_black{background-image:url(spritesmith0.png);background-position:-753px -1267px;width:60px;height:60px}.hair_beard_3_blond{background-image:url(spritesmith0.png);background-position:-819px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_blond{background-image:url(spritesmith0.png);background-position:-844px -1267px;width:60px;height:60px}.hair_beard_3_blue{background-image:url(spritesmith0.png);background-position:-910px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_blue{background-image:url(spritesmith0.png);background-position:-935px -1267px;width:60px;height:60px}.hair_beard_3_brown{background-image:url(spritesmith0.png);background-position:-1001px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_brown{background-image:url(spritesmith0.png);background-position:-1026px -1267px;width:60px;height:60px}.hair_beard_3_candycane{background-image:url(spritesmith0.png);background-position:-1092px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_candycane{background-image:url(spritesmith0.png);background-position:-1117px -1267px;width:60px;height:60px}.hair_beard_3_candycorn{background-image:url(spritesmith0.png);background-position:-1183px -1252px;width:90px;height:90px}.customize-option.hair_beard_3_candycorn{background-image:url(spritesmith0.png);background-position:-1208px -1267px;width:60px;height:60px}.hair_beard_3_festive{background-image:url(spritesmith0.png);background-position:-1353px 0;width:90px;height:90px}.customize-option.hair_beard_3_festive{background-image:url(spritesmith0.png);background-position:-1378px -15px;width:60px;height:60px}.hair_beard_3_frost{background-image:url(spritesmith0.png);background-position:-1353px -91px;width:90px;height:90px}.customize-option.hair_beard_3_frost{background-image:url(spritesmith0.png);background-position:-1378px -106px;width:60px;height:60px}.hair_beard_3_ghostwhite{background-image:url(spritesmith0.png);background-position:-1353px -182px;width:90px;height:90px}.customize-option.hair_beard_3_ghostwhite{background-image:url(spritesmith0.png);background-position:-1378px -197px;width:60px;height:60px}.hair_beard_3_green{background-image:url(spritesmith0.png);background-position:-1353px -273px;width:90px;height:90px}.customize-option.hair_beard_3_green{background-image:url(spritesmith0.png);background-position:-1378px -288px;width:60px;height:60px}.hair_beard_3_halloween{background-image:url(spritesmith0.png);background-position:-1353px -364px;width:90px;height:90px}.customize-option.hair_beard_3_halloween{background-image:url(spritesmith0.png);background-position:-1378px -379px;width:60px;height:60px}.hair_beard_3_holly{background-image:url(spritesmith0.png);background-position:-1353px -455px;width:90px;height:90px}.customize-option.hair_beard_3_holly{background-image:url(spritesmith0.png);background-position:-1378px -470px;width:60px;height:60px}.hair_beard_3_hollygreen{background-image:url(spritesmith0.png);background-position:-1353px -546px;width:90px;height:90px}.customize-option.hair_beard_3_hollygreen{background-image:url(spritesmith0.png);background-position:-1378px -561px;width:60px;height:60px}.hair_beard_3_midnight{background-image:url(spritesmith0.png);background-position:-1353px -637px;width:90px;height:90px}.customize-option.hair_beard_3_midnight{background-image:url(spritesmith0.png);background-position:-1378px -652px;width:60px;height:60px}.hair_beard_3_pblue{background-image:url(spritesmith0.png);background-position:-1353px -728px;width:90px;height:90px}.customize-option.hair_beard_3_pblue{background-image:url(spritesmith0.png);background-position:-1378px -743px;width:60px;height:60px}.hair_beard_3_peppermint{background-image:url(spritesmith0.png);background-position:-1353px -819px;width:90px;height:90px}.customize-option.hair_beard_3_peppermint{background-image:url(spritesmith0.png);background-position:-1378px -834px;width:60px;height:60px}.hair_beard_3_pgreen{background-image:url(spritesmith0.png);background-position:-1353px -910px;width:90px;height:90px}.customize-option.hair_beard_3_pgreen{background-image:url(spritesmith0.png);background-position:-1378px -925px;width:60px;height:60px}.hair_beard_3_porange{background-image:url(spritesmith0.png);background-position:-1353px -1001px;width:90px;height:90px}.customize-option.hair_beard_3_porange{background-image:url(spritesmith0.png);background-position:-1378px -1016px;width:60px;height:60px}.hair_beard_3_ppink{background-image:url(spritesmith0.png);background-position:-1353px -1092px;width:90px;height:90px}.customize-option.hair_beard_3_ppink{background-image:url(spritesmith0.png);background-position:-1378px -1107px;width:60px;height:60px}.hair_beard_3_ppurple{background-image:url(spritesmith0.png);background-position:-1353px -1183px;width:90px;height:90px}.customize-option.hair_beard_3_ppurple{background-image:url(spritesmith0.png);background-position:-1378px -1198px;width:60px;height:60px}.hair_beard_3_pumpkin{background-image:url(spritesmith0.png);background-position:0 -1343px;width:90px;height:90px}.customize-option.hair_beard_3_pumpkin{background-image:url(spritesmith0.png);background-position:-25px -1358px;width:60px;height:60px}.hair_beard_3_purple{background-image:url(spritesmith0.png);background-position:-91px -1343px;width:90px;height:90px}.customize-option.hair_beard_3_purple{background-image:url(spritesmith0.png);background-position:-116px -1358px;width:60px;height:60px}.hair_beard_3_pyellow{background-image:url(spritesmith0.png);background-position:-182px -1343px;width:90px;height:90px}.customize-option.hair_beard_3_pyellow{background-image:url(spritesmith0.png);background-position:-207px -1358px;width:60px;height:60px}.hair_beard_3_rainbow{background-image:url(spritesmith0.png);background-position:-273px -1343px;width:90px;height:90px}.customize-option.hair_beard_3_rainbow{background-image:url(spritesmith0.png);background-position:-298px -1358px;width:60px;height:60px}.hair_beard_3_red{background-image:url(spritesmith0.png);background-position:-364px -1343px;width:90px;height:90px}.customize-option.hair_beard_3_red{background-image:url(spritesmith0.png);background-position:-389px -1358px;width:60px;height:60px}.hair_beard_3_snowy{background-image:url(spritesmith0.png);background-position:-455px -1343px;width:90px;height:90px}.customize-option.hair_beard_3_snowy{background-image:url(spritesmith0.png);background-position:-480px -1358px;width:60px;height:60px}.hair_beard_3_white{background-image:url(spritesmith0.png);background-position:-546px -1343px;width:90px;height:90px}.customize-option.hair_beard_3_white{background-image:url(spritesmith0.png);background-position:-571px -1358px;width:60px;height:60px}.hair_beard_3_winternight{background-image:url(spritesmith0.png);background-position:-637px -1343px;width:90px;height:90px}.customize-option.hair_beard_3_winternight{background-image:url(spritesmith0.png);background-position:-662px -1358px;width:60px;height:60px}.hair_beard_3_winterstar{background-image:url(spritesmith0.png);background-position:-728px -1343px;width:90px;height:90px}.customize-option.hair_beard_3_winterstar{background-image:url(spritesmith0.png);background-position:-753px -1358px;width:60px;height:60px}.hair_beard_3_yellow{background-image:url(spritesmith0.png);background-position:-819px -1343px;width:90px;height:90px}.customize-option.hair_beard_3_yellow{background-image:url(spritesmith0.png);background-position:-844px -1358px;width:60px;height:60px}.hair_beard_3_zombie{background-image:url(spritesmith0.png);background-position:-910px -1343px;width:90px;height:90px}.customize-option.hair_beard_3_zombie{background-image:url(spritesmith0.png);background-position:-935px -1358px;width:60px;height:60px}.hair_mustache_1_TRUred{background-image:url(spritesmith0.png);background-position:-1001px -1343px;width:90px;height:90px}.customize-option.hair_mustache_1_TRUred{background-image:url(spritesmith0.png);background-position:-1026px -1358px;width:60px;height:60px}.hair_mustache_1_aurora{background-image:url(spritesmith0.png);background-position:-1092px -1343px;width:90px;height:90px}.customize-option.hair_mustache_1_aurora{background-image:url(spritesmith0.png);background-position:-1117px -1358px;width:60px;height:60px}.hair_mustache_1_black{background-image:url(spritesmith0.png);background-position:-1183px -1343px;width:90px;height:90px}.customize-option.hair_mustache_1_black{background-image:url(spritesmith0.png);background-position:-1208px -1358px;width:60px;height:60px}.hair_mustache_1_blond{background-image:url(spritesmith0.png);background-position:-1274px -1343px;width:90px;height:90px}.customize-option.hair_mustache_1_blond{background-image:url(spritesmith0.png);background-position:-1299px -1358px;width:60px;height:60px}.hair_mustache_1_blue{background-image:url(spritesmith0.png);background-position:-1444px 0;width:90px;height:90px}.customize-option.hair_mustache_1_blue{background-image:url(spritesmith0.png);background-position:-1469px -15px;width:60px;height:60px}.hair_mustache_1_brown{background-image:url(spritesmith0.png);background-position:-1444px -91px;width:90px;height:90px}.customize-option.hair_mustache_1_brown{background-image:url(spritesmith0.png);background-position:-1469px -106px;width:60px;height:60px}.hair_mustache_1_candycane{background-image:url(spritesmith0.png);background-position:-1444px -182px;width:90px;height:90px}.customize-option.hair_mustache_1_candycane{background-image:url(spritesmith0.png);background-position:-1469px -197px;width:60px;height:60px}.hair_mustache_1_candycorn{background-image:url(spritesmith0.png);background-position:-1444px -273px;width:90px;height:90px}.customize-option.hair_mustache_1_candycorn{background-image:url(spritesmith0.png);background-position:-1469px -288px;width:60px;height:60px}.hair_mustache_1_festive{background-image:url(spritesmith0.png);background-position:-1444px -364px;width:90px;height:90px}.customize-option.hair_mustache_1_festive{background-image:url(spritesmith0.png);background-position:-1469px -379px;width:60px;height:60px}.hair_mustache_1_frost{background-image:url(spritesmith0.png);background-position:-1444px -455px;width:90px;height:90px}.customize-option.hair_mustache_1_frost{background-image:url(spritesmith0.png);background-position:-1469px -470px;width:60px;height:60px}.hair_mustache_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-1444px -546px;width:90px;height:90px}.customize-option.hair_mustache_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-1469px -561px;width:60px;height:60px}.hair_mustache_1_green{background-image:url(spritesmith0.png);background-position:-1444px -637px;width:90px;height:90px}.customize-option.hair_mustache_1_green{background-image:url(spritesmith0.png);background-position:-1469px -652px;width:60px;height:60px}.hair_mustache_1_halloween{background-image:url(spritesmith0.png);background-position:-1444px -728px;width:90px;height:90px}.customize-option.hair_mustache_1_halloween{background-image:url(spritesmith0.png);background-position:-1469px -743px;width:60px;height:60px}.hair_mustache_1_holly{background-image:url(spritesmith0.png);background-position:-1444px -819px;width:90px;height:90px}.customize-option.hair_mustache_1_holly{background-image:url(spritesmith0.png);background-position:-1469px -834px;width:60px;height:60px}.hair_mustache_1_hollygreen{background-image:url(spritesmith0.png);background-position:-1444px -910px;width:90px;height:90px}.customize-option.hair_mustache_1_hollygreen{background-image:url(spritesmith0.png);background-position:-1469px -925px;width:60px;height:60px}.hair_mustache_1_midnight{background-image:url(spritesmith0.png);background-position:-1444px -1001px;width:90px;height:90px}.customize-option.hair_mustache_1_midnight{background-image:url(spritesmith0.png);background-position:-1469px -1016px;width:60px;height:60px}.hair_mustache_1_pblue{background-image:url(spritesmith0.png);background-position:-1444px -1092px;width:90px;height:90px}.customize-option.hair_mustache_1_pblue{background-image:url(spritesmith0.png);background-position:-1469px -1107px;width:60px;height:60px}.hair_mustache_1_peppermint{background-image:url(spritesmith0.png);background-position:-1444px -1183px;width:90px;height:90px}.customize-option.hair_mustache_1_peppermint{background-image:url(spritesmith0.png);background-position:-1469px -1198px;width:60px;height:60px}.hair_mustache_1_pgreen{background-image:url(spritesmith0.png);background-position:-1444px -1274px;width:90px;height:90px}.customize-option.hair_mustache_1_pgreen{background-image:url(spritesmith0.png);background-position:-1469px -1289px;width:60px;height:60px}.hair_mustache_1_porange{background-image:url(spritesmith0.png);background-position:-708px -592px;width:90px;height:90px}.customize-option.hair_mustache_1_porange{background-image:url(spritesmith0.png);background-position:-733px -607px;width:60px;height:60px}.hair_mustache_1_ppink{background-image:url(spritesmith0.png);background-position:-91px -1434px;width:90px;height:90px}.customize-option.hair_mustache_1_ppink{background-image:url(spritesmith0.png);background-position:-116px -1449px;width:60px;height:60px}.hair_mustache_1_ppurple{background-image:url(spritesmith0.png);background-position:-182px -1434px;width:90px;height:90px}.customize-option.hair_mustache_1_ppurple{background-image:url(spritesmith0.png);background-position:-207px -1449px;width:60px;height:60px}.hair_mustache_1_pumpkin{background-image:url(spritesmith0.png);background-position:-273px -1434px;width:90px;height:90px}.customize-option.hair_mustache_1_pumpkin{background-image:url(spritesmith0.png);background-position:-298px -1449px;width:60px;height:60px}.hair_mustache_1_purple{background-image:url(spritesmith0.png);background-position:-364px -1434px;width:90px;height:90px}.customize-option.hair_mustache_1_purple{background-image:url(spritesmith0.png);background-position:-389px -1449px;width:60px;height:60px}.hair_mustache_1_pyellow{background-image:url(spritesmith0.png);background-position:-455px -1434px;width:90px;height:90px}.customize-option.hair_mustache_1_pyellow{background-image:url(spritesmith0.png);background-position:-480px -1449px;width:60px;height:60px}.hair_mustache_1_rainbow{background-image:url(spritesmith0.png);background-position:-546px -1434px;width:90px;height:90px}.customize-option.hair_mustache_1_rainbow{background-image:url(spritesmith0.png);background-position:-571px -1449px;width:60px;height:60px}.hair_mustache_1_red{background-image:url(spritesmith0.png);background-position:-637px -1434px;width:90px;height:90px}.customize-option.hair_mustache_1_red{background-image:url(spritesmith0.png);background-position:-662px -1449px;width:60px;height:60px}.hair_mustache_1_snowy{background-image:url(spritesmith0.png);background-position:-728px -1434px;width:90px;height:90px}.customize-option.hair_mustache_1_snowy{background-image:url(spritesmith0.png);background-position:-753px -1449px;width:60px;height:60px}.hair_mustache_1_white{background-image:url(spritesmith0.png);background-position:-819px -1434px;width:90px;height:90px}.customize-option.hair_mustache_1_white{background-image:url(spritesmith0.png);background-position:-844px -1449px;width:60px;height:60px}.hair_mustache_1_winternight{background-image:url(spritesmith0.png);background-position:-910px -1434px;width:90px;height:90px}.customize-option.hair_mustache_1_winternight{background-image:url(spritesmith0.png);background-position:-935px -1449px;width:60px;height:60px}.hair_mustache_1_winterstar{background-image:url(spritesmith0.png);background-position:-1001px -1434px;width:90px;height:90px}.customize-option.hair_mustache_1_winterstar{background-image:url(spritesmith0.png);background-position:-1026px -1449px;width:60px;height:60px}.hair_mustache_1_yellow{background-image:url(spritesmith0.png);background-position:-1092px -1434px;width:90px;height:90px}.customize-option.hair_mustache_1_yellow{background-image:url(spritesmith0.png);background-position:-1117px -1449px;width:60px;height:60px}.hair_mustache_1_zombie{background-image:url(spritesmith0.png);background-position:-1183px -1434px;width:90px;height:90px}.customize-option.hair_mustache_1_zombie{background-image:url(spritesmith0.png);background-position:-1208px -1449px;width:60px;height:60px}.hair_mustache_2_TRUred{background-image:url(spritesmith0.png);background-position:-1274px -1434px;width:90px;height:90px}.customize-option.hair_mustache_2_TRUred{background-image:url(spritesmith0.png);background-position:-1299px -1449px;width:60px;height:60px}.hair_mustache_2_aurora{background-image:url(spritesmith0.png);background-position:-1365px -1434px;width:90px;height:90px}.customize-option.hair_mustache_2_aurora{background-image:url(spritesmith0.png);background-position:-1390px -1449px;width:60px;height:60px}.hair_mustache_2_black{background-image:url(spritesmith0.png);background-position:-1535px 0;width:90px;height:90px}.customize-option.hair_mustache_2_black{background-image:url(spritesmith0.png);background-position:-1560px -15px;width:60px;height:60px}.hair_mustache_2_blond{background-image:url(spritesmith0.png);background-position:-1535px -91px;width:90px;height:90px}.customize-option.hair_mustache_2_blond{background-image:url(spritesmith0.png);background-position:-1560px -106px;width:60px;height:60px}.hair_mustache_2_blue{background-image:url(spritesmith0.png);background-position:-1535px -182px;width:90px;height:90px}.customize-option.hair_mustache_2_blue{background-image:url(spritesmith0.png);background-position:-1560px -197px;width:60px;height:60px}.hair_mustache_2_brown{background-image:url(spritesmith0.png);background-position:-1535px -273px;width:90px;height:90px}.customize-option.hair_mustache_2_brown{background-image:url(spritesmith0.png);background-position:-1560px -288px;width:60px;height:60px}.hair_mustache_2_candycane{background-image:url(spritesmith0.png);background-position:-1535px -364px;width:90px;height:90px}.customize-option.hair_mustache_2_candycane{background-image:url(spritesmith0.png);background-position:-1560px -379px;width:60px;height:60px}.hair_mustache_2_candycorn{background-image:url(spritesmith0.png);background-position:-1535px -455px;width:90px;height:90px}.customize-option.hair_mustache_2_candycorn{background-image:url(spritesmith0.png);background-position:-1560px -470px;width:60px;height:60px}.hair_mustache_2_festive{background-image:url(spritesmith0.png);background-position:-1535px -546px;width:90px;height:90px}.customize-option.hair_mustache_2_festive{background-image:url(spritesmith0.png);background-position:-1560px -561px;width:60px;height:60px}.hair_mustache_2_frost{background-image:url(spritesmith0.png);background-position:-1535px -637px;width:90px;height:90px}.customize-option.hair_mustache_2_frost{background-image:url(spritesmith0.png);background-position:-1560px -652px;width:60px;height:60px}.hair_mustache_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-1535px -728px;width:90px;height:90px}.customize-option.hair_mustache_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-1560px -743px;width:60px;height:60px}.hair_mustache_2_green{background-image:url(spritesmith0.png);background-position:-1535px -819px;width:90px;height:90px}.customize-option.hair_mustache_2_green{background-image:url(spritesmith0.png);background-position:-1560px -834px;width:60px;height:60px}.hair_mustache_2_halloween{background-image:url(spritesmith0.png);background-position:-1535px -910px;width:90px;height:90px}.customize-option.hair_mustache_2_halloween{background-image:url(spritesmith0.png);background-position:-1560px -925px;width:60px;height:60px}.hair_mustache_2_holly{background-image:url(spritesmith0.png);background-position:-1535px -1001px;width:90px;height:90px}.customize-option.hair_mustache_2_holly{background-image:url(spritesmith0.png);background-position:-1560px -1016px;width:60px;height:60px}.hair_mustache_2_hollygreen{background-image:url(spritesmith0.png);background-position:-1535px -1092px;width:90px;height:90px}.customize-option.hair_mustache_2_hollygreen{background-image:url(spritesmith0.png);background-position:-1560px -1107px;width:60px;height:60px}.hair_mustache_2_midnight{background-image:url(spritesmith0.png);background-position:-1535px -1183px;width:90px;height:90px}.customize-option.hair_mustache_2_midnight{background-image:url(spritesmith0.png);background-position:-1560px -1198px;width:60px;height:60px}.hair_mustache_2_pblue{background-image:url(spritesmith0.png);background-position:-1535px -1274px;width:90px;height:90px}.customize-option.hair_mustache_2_pblue{background-image:url(spritesmith0.png);background-position:-1560px -1289px;width:60px;height:60px}.hair_mustache_2_peppermint{background-image:url(spritesmith0.png);background-position:-1535px -1365px;width:90px;height:90px}.customize-option.hair_mustache_2_peppermint{background-image:url(spritesmith0.png);background-position:-1560px -1380px;width:60px;height:60px}.hair_mustache_2_pgreen{background-image:url(spritesmith0.png);background-position:0 -1525px;width:90px;height:90px}.customize-option.hair_mustache_2_pgreen{background-image:url(spritesmith0.png);background-position:-25px -1540px;width:60px;height:60px}.hair_mustache_2_porange{background-image:url(spritesmith0.png);background-position:-91px -1525px;width:90px;height:90px}.customize-option.hair_mustache_2_porange{background-image:url(spritesmith0.png);background-position:-116px -1540px;width:60px;height:60px}.hair_mustache_2_ppink{background-image:url(spritesmith0.png);background-position:-182px -1525px;width:90px;height:90px}.customize-option.hair_mustache_2_ppink{background-image:url(spritesmith0.png);background-position:-207px -1540px;width:60px;height:60px}.hair_mustache_2_ppurple{background-image:url(spritesmith0.png);background-position:-273px -1525px;width:90px;height:90px}.customize-option.hair_mustache_2_ppurple{background-image:url(spritesmith0.png);background-position:-298px -1540px;width:60px;height:60px}.hair_mustache_2_pumpkin{background-image:url(spritesmith0.png);background-position:-364px -1525px;width:90px;height:90px}.customize-option.hair_mustache_2_pumpkin{background-image:url(spritesmith0.png);background-position:-389px -1540px;width:60px;height:60px}.hair_mustache_2_purple{background-image:url(spritesmith0.png);background-position:-455px -1525px;width:90px;height:90px}.customize-option.hair_mustache_2_purple{background-image:url(spritesmith0.png);background-position:-480px -1540px;width:60px;height:60px}.hair_mustache_2_pyellow{background-image:url(spritesmith0.png);background-position:-546px -1525px;width:90px;height:90px}.customize-option.hair_mustache_2_pyellow{background-image:url(spritesmith0.png);background-position:-571px -1540px;width:60px;height:60px}.hair_mustache_2_rainbow{background-image:url(spritesmith0.png);background-position:-637px -1525px;width:90px;height:90px}.customize-option.hair_mustache_2_rainbow{background-image:url(spritesmith0.png);background-position:-662px -1540px;width:60px;height:60px}.hair_mustache_2_red{background-image:url(spritesmith0.png);background-position:-728px -1525px;width:90px;height:90px}.customize-option.hair_mustache_2_red{background-image:url(spritesmith0.png);background-position:-753px -1540px;width:60px;height:60px}.hair_mustache_2_snowy{background-image:url(spritesmith0.png);background-position:-819px -1525px;width:90px;height:90px}.customize-option.hair_mustache_2_snowy{background-image:url(spritesmith0.png);background-position:-844px -1540px;width:60px;height:60px}.hair_mustache_2_white{background-image:url(spritesmith0.png);background-position:-910px -1525px;width:90px;height:90px}.customize-option.hair_mustache_2_white{background-image:url(spritesmith0.png);background-position:-935px -1540px;width:60px;height:60px}.hair_mustache_2_winternight{background-image:url(spritesmith0.png);background-position:-1001px -1525px;width:90px;height:90px}.customize-option.hair_mustache_2_winternight{background-image:url(spritesmith0.png);background-position:-1026px -1540px;width:60px;height:60px}.hair_mustache_2_winterstar{background-image:url(spritesmith0.png);background-position:-1092px -1525px;width:90px;height:90px}.customize-option.hair_mustache_2_winterstar{background-image:url(spritesmith0.png);background-position:-1117px -1540px;width:60px;height:60px}.hair_mustache_2_yellow{background-image:url(spritesmith0.png);background-position:-1183px -1525px;width:90px;height:90px}.customize-option.hair_mustache_2_yellow{background-image:url(spritesmith0.png);background-position:-1208px -1540px;width:60px;height:60px}.hair_mustache_2_zombie{background-image:url(spritesmith0.png);background-position:-1274px -1525px;width:90px;height:90px}.customize-option.hair_mustache_2_zombie{background-image:url(spritesmith0.png);background-position:-1299px -1540px;width:60px;height:60px}.hair_flower_1{background-image:url(spritesmith0.png);background-position:-1365px -1525px;width:90px;height:90px}.customize-option.hair_flower_1{background-image:url(spritesmith0.png);background-position:-1390px -1540px;width:60px;height:60px}.hair_flower_2{background-image:url(spritesmith0.png);background-position:-1456px -1525px;width:90px;height:90px}.customize-option.hair_flower_2{background-image:url(spritesmith0.png);background-position:-1481px -1540px;width:60px;height:60px}.hair_flower_3{background-image:url(spritesmith0.png);background-position:-1626px 0;width:90px;height:90px}.customize-option.hair_flower_3{background-image:url(spritesmith0.png);background-position:-1651px -15px;width:60px;height:60px}.hair_flower_4{background-image:url(spritesmith0.png);background-position:-1626px -91px;width:90px;height:90px}.customize-option.hair_flower_4{background-image:url(spritesmith0.png);background-position:-1651px -106px;width:60px;height:60px}.hair_flower_5{background-image:url(spritesmith0.png);background-position:-1626px -182px;width:90px;height:90px}.customize-option.hair_flower_5{background-image:url(spritesmith0.png);background-position:-1651px -197px;width:60px;height:60px}.hair_flower_6{background-image:url(spritesmith0.png);background-position:-1626px -273px;width:90px;height:90px}.customize-option.hair_flower_6{background-image:url(spritesmith0.png);background-position:-1651px -288px;width:60px;height:60px}.hair_bangs_1_TRUred{background-image:url(spritesmith0.png);background-position:-1626px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_TRUred{background-image:url(spritesmith0.png);background-position:-1651px -379px;width:60px;height:60px}.hair_bangs_1_aurora{background-image:url(spritesmith0.png);background-position:-1626px -455px;width:90px;height:90px}.customize-option.hair_bangs_1_aurora{background-image:url(spritesmith0.png);background-position:-1651px -470px;width:60px;height:60px}.hair_bangs_1_black{background-image:url(spritesmith0.png);background-position:-1626px -546px;width:90px;height:90px}.customize-option.hair_bangs_1_black{background-image:url(spritesmith0.png);background-position:-1651px -561px;width:60px;height:60px}.hair_bangs_1_blond{background-image:url(spritesmith0.png);background-position:-1626px -637px;width:90px;height:90px}.customize-option.hair_bangs_1_blond{background-image:url(spritesmith0.png);background-position:-1651px -652px;width:60px;height:60px}.hair_bangs_1_blue{background-image:url(spritesmith0.png);background-position:-1626px -728px;width:90px;height:90px}.customize-option.hair_bangs_1_blue{background-image:url(spritesmith0.png);background-position:-1651px -743px;width:60px;height:60px}.hair_bangs_1_brown{background-image:url(spritesmith0.png);background-position:-1626px -819px;width:90px;height:90px}.customize-option.hair_bangs_1_brown{background-image:url(spritesmith0.png);background-position:-1651px -834px;width:60px;height:60px}.hair_bangs_1_candycane{background-image:url(spritesmith0.png);background-position:-1626px -910px;width:90px;height:90px}.customize-option.hair_bangs_1_candycane{background-image:url(spritesmith0.png);background-position:-1651px -925px;width:60px;height:60px}.hair_bangs_1_candycorn{background-image:url(spritesmith0.png);background-position:-1626px -1001px;width:90px;height:90px}.customize-option.hair_bangs_1_candycorn{background-image:url(spritesmith0.png);background-position:-1651px -1016px;width:60px;height:60px}.hair_bangs_1_festive{background-image:url(spritesmith0.png);background-position:-1626px -1092px;width:90px;height:90px}.customize-option.hair_bangs_1_festive{background-image:url(spritesmith0.png);background-position:-1651px -1107px;width:60px;height:60px}.hair_bangs_1_frost{background-image:url(spritesmith0.png);background-position:-1626px -1183px;width:90px;height:90px}.customize-option.hair_bangs_1_frost{background-image:url(spritesmith0.png);background-position:-1651px -1198px;width:60px;height:60px}.hair_bangs_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-1626px -1274px;width:90px;height:90px}.customize-option.hair_bangs_1_ghostwhite{background-image:url(spritesmith0.png);background-position:-1651px -1289px;width:60px;height:60px}.hair_bangs_1_green{background-image:url(spritesmith0.png);background-position:-1626px -1365px;width:90px;height:90px}.customize-option.hair_bangs_1_green{background-image:url(spritesmith0.png);background-position:-1651px -1380px;width:60px;height:60px}.hair_bangs_1_halloween{background-image:url(spritesmith0.png);background-position:-1626px -1456px;width:90px;height:90px}.customize-option.hair_bangs_1_halloween{background-image:url(spritesmith0.png);background-position:-1651px -1471px;width:60px;height:60px}.hair_bangs_1_holly{background-image:url(spritesmith0.png);background-position:0 -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_holly{background-image:url(spritesmith0.png);background-position:-25px -1631px;width:60px;height:60px}.hair_bangs_1_hollygreen{background-image:url(spritesmith0.png);background-position:-91px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_hollygreen{background-image:url(spritesmith0.png);background-position:-116px -1631px;width:60px;height:60px}.hair_bangs_1_midnight{background-image:url(spritesmith0.png);background-position:-182px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_midnight{background-image:url(spritesmith0.png);background-position:-207px -1631px;width:60px;height:60px}.hair_bangs_1_pblue{background-image:url(spritesmith0.png);background-position:-273px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_pblue{background-image:url(spritesmith0.png);background-position:-298px -1631px;width:60px;height:60px}.hair_bangs_1_pblue2{background-image:url(spritesmith0.png);background-position:-364px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_pblue2{background-image:url(spritesmith0.png);background-position:-389px -1631px;width:60px;height:60px}.hair_bangs_1_peppermint{background-image:url(spritesmith0.png);background-position:-455px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_peppermint{background-image:url(spritesmith0.png);background-position:-480px -1631px;width:60px;height:60px}.hair_bangs_1_pgreen{background-image:url(spritesmith0.png);background-position:-546px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_pgreen{background-image:url(spritesmith0.png);background-position:-571px -1631px;width:60px;height:60px}.hair_bangs_1_pgreen2{background-image:url(spritesmith0.png);background-position:-637px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_pgreen2{background-image:url(spritesmith0.png);background-position:-662px -1631px;width:60px;height:60px}.hair_bangs_1_porange{background-image:url(spritesmith0.png);background-position:-728px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_porange{background-image:url(spritesmith0.png);background-position:-753px -1631px;width:60px;height:60px}.hair_bangs_1_porange2{background-image:url(spritesmith0.png);background-position:-819px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_porange2{background-image:url(spritesmith0.png);background-position:-844px -1631px;width:60px;height:60px}.hair_bangs_1_ppink{background-image:url(spritesmith0.png);background-position:-910px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_ppink{background-image:url(spritesmith0.png);background-position:-935px -1631px;width:60px;height:60px}.hair_bangs_1_ppink2{background-image:url(spritesmith0.png);background-position:-1001px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_ppink2{background-image:url(spritesmith0.png);background-position:-1026px -1631px;width:60px;height:60px}.hair_bangs_1_ppurple{background-image:url(spritesmith0.png);background-position:-1092px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_ppurple{background-image:url(spritesmith0.png);background-position:-1117px -1631px;width:60px;height:60px}.hair_bangs_1_ppurple2{background-image:url(spritesmith0.png);background-position:-1183px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_ppurple2{background-image:url(spritesmith0.png);background-position:-1208px -1631px;width:60px;height:60px}.hair_bangs_1_pumpkin{background-image:url(spritesmith0.png);background-position:-1274px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_pumpkin{background-image:url(spritesmith0.png);background-position:-1299px -1631px;width:60px;height:60px}.hair_bangs_1_purple{background-image:url(spritesmith0.png);background-position:-1365px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_purple{background-image:url(spritesmith0.png);background-position:-1390px -1631px;width:60px;height:60px}.hair_bangs_1_pyellow{background-image:url(spritesmith0.png);background-position:-1456px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_pyellow{background-image:url(spritesmith0.png);background-position:-1481px -1631px;width:60px;height:60px}.hair_bangs_1_pyellow2{background-image:url(spritesmith0.png);background-position:-1547px -1616px;width:90px;height:90px}.customize-option.hair_bangs_1_pyellow2{background-image:url(spritesmith0.png);background-position:-1572px -1631px;width:60px;height:60px}.hair_bangs_1_rainbow{background-image:url(spritesmith0.png);background-position:-1717px 0;width:90px;height:90px}.customize-option.hair_bangs_1_rainbow{background-image:url(spritesmith0.png);background-position:-1742px -15px;width:60px;height:60px}.hair_bangs_1_red{background-image:url(spritesmith0.png);background-position:-1717px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_red{background-image:url(spritesmith0.png);background-position:-1742px -106px;width:60px;height:60px}.hair_bangs_1_snowy{background-image:url(spritesmith0.png);background-position:-1717px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_snowy{background-image:url(spritesmith0.png);background-position:-1742px -197px;width:60px;height:60px}.hair_bangs_1_white{background-image:url(spritesmith0.png);background-position:-1717px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_white{background-image:url(spritesmith0.png);background-position:-1742px -288px;width:60px;height:60px}.hair_bangs_1_winternight{background-image:url(spritesmith0.png);background-position:-1717px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_winternight{background-image:url(spritesmith0.png);background-position:-1742px -379px;width:60px;height:60px}.hair_bangs_1_winterstar{background-image:url(spritesmith0.png);background-position:-1717px -455px;width:90px;height:90px}.customize-option.hair_bangs_1_winterstar{background-image:url(spritesmith0.png);background-position:-1742px -470px;width:60px;height:60px}.hair_bangs_1_yellow{background-image:url(spritesmith0.png);background-position:-1717px -546px;width:90px;height:90px}.customize-option.hair_bangs_1_yellow{background-image:url(spritesmith0.png);background-position:-1742px -561px;width:60px;height:60px}.hair_bangs_1_zombie{background-image:url(spritesmith0.png);background-position:-1717px -637px;width:90px;height:90px}.customize-option.hair_bangs_1_zombie{background-image:url(spritesmith0.png);background-position:-1742px -652px;width:60px;height:60px}.hair_bangs_2_TRUred{background-image:url(spritesmith0.png);background-position:-1717px -728px;width:90px;height:90px}.customize-option.hair_bangs_2_TRUred{background-image:url(spritesmith0.png);background-position:-1742px -743px;width:60px;height:60px}.hair_bangs_2_aurora{background-image:url(spritesmith0.png);background-position:-1717px -819px;width:90px;height:90px}.customize-option.hair_bangs_2_aurora{background-image:url(spritesmith0.png);background-position:-1742px -834px;width:60px;height:60px}.hair_bangs_2_black{background-image:url(spritesmith0.png);background-position:-1717px -910px;width:90px;height:90px}.customize-option.hair_bangs_2_black{background-image:url(spritesmith0.png);background-position:-1742px -925px;width:60px;height:60px}.hair_bangs_2_blond{background-image:url(spritesmith0.png);background-position:-1717px -1001px;width:90px;height:90px}.customize-option.hair_bangs_2_blond{background-image:url(spritesmith0.png);background-position:-1742px -1016px;width:60px;height:60px}.hair_bangs_2_blue{background-image:url(spritesmith0.png);background-position:-1717px -1092px;width:90px;height:90px}.customize-option.hair_bangs_2_blue{background-image:url(spritesmith0.png);background-position:-1742px -1107px;width:60px;height:60px}.hair_bangs_2_brown{background-image:url(spritesmith0.png);background-position:-1717px -1183px;width:90px;height:90px}.customize-option.hair_bangs_2_brown{background-image:url(spritesmith0.png);background-position:-1742px -1198px;width:60px;height:60px}.hair_bangs_2_candycane{background-image:url(spritesmith0.png);background-position:-1717px -1274px;width:90px;height:90px}.customize-option.hair_bangs_2_candycane{background-image:url(spritesmith0.png);background-position:-1742px -1289px;width:60px;height:60px}.hair_bangs_2_candycorn{background-image:url(spritesmith0.png);background-position:-1717px -1365px;width:90px;height:90px}.customize-option.hair_bangs_2_candycorn{background-image:url(spritesmith0.png);background-position:-1742px -1380px;width:60px;height:60px}.hair_bangs_2_festive{background-image:url(spritesmith0.png);background-position:-1717px -1456px;width:90px;height:90px}.customize-option.hair_bangs_2_festive{background-image:url(spritesmith0.png);background-position:-1742px -1471px;width:60px;height:60px}.hair_bangs_2_frost{background-image:url(spritesmith0.png);background-position:-1717px -1547px;width:90px;height:90px}.customize-option.hair_bangs_2_frost{background-image:url(spritesmith0.png);background-position:-1742px -1562px;width:60px;height:60px}.hair_bangs_2_ghostwhite{background-image:url(spritesmith0.png);background-position:0 -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_ghostwhite{background-image:url(spritesmith0.png);background-position:-25px -1722px;width:60px;height:60px}.hair_bangs_2_green{background-image:url(spritesmith0.png);background-position:-91px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_green{background-image:url(spritesmith0.png);background-position:-116px -1722px;width:60px;height:60px}.hair_bangs_2_halloween{background-image:url(spritesmith0.png);background-position:-182px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_halloween{background-image:url(spritesmith0.png);background-position:-207px -1722px;width:60px;height:60px}.hair_bangs_2_holly{background-image:url(spritesmith0.png);background-position:-273px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_holly{background-image:url(spritesmith0.png);background-position:-298px -1722px;width:60px;height:60px}.hair_bangs_2_hollygreen{background-image:url(spritesmith0.png);background-position:-364px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_hollygreen{background-image:url(spritesmith0.png);background-position:-389px -1722px;width:60px;height:60px}.hair_bangs_2_midnight{background-image:url(spritesmith0.png);background-position:-455px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_midnight{background-image:url(spritesmith0.png);background-position:-480px -1722px;width:60px;height:60px}.hair_bangs_2_pblue{background-image:url(spritesmith0.png);background-position:-546px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_pblue{background-image:url(spritesmith0.png);background-position:-571px -1722px;width:60px;height:60px}.hair_bangs_2_pblue2{background-image:url(spritesmith0.png);background-position:-637px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_pblue2{background-image:url(spritesmith0.png);background-position:-662px -1722px;width:60px;height:60px}.hair_bangs_2_peppermint{background-image:url(spritesmith0.png);background-position:-728px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_peppermint{background-image:url(spritesmith0.png);background-position:-753px -1722px;width:60px;height:60px}.hair_bangs_2_pgreen{background-image:url(spritesmith0.png);background-position:-819px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_pgreen{background-image:url(spritesmith0.png);background-position:-844px -1722px;width:60px;height:60px}.hair_bangs_2_pgreen2{background-image:url(spritesmith0.png);background-position:-910px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_pgreen2{background-image:url(spritesmith0.png);background-position:-935px -1722px;width:60px;height:60px}.hair_bangs_2_porange{background-image:url(spritesmith0.png);background-position:-1001px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_porange{background-image:url(spritesmith0.png);background-position:-1026px -1722px;width:60px;height:60px}.hair_bangs_2_porange2{background-image:url(spritesmith0.png);background-position:-1092px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_porange2{background-image:url(spritesmith0.png);background-position:-1117px -1722px;width:60px;height:60px}.hair_bangs_2_ppink{background-image:url(spritesmith0.png);background-position:-1183px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_ppink{background-image:url(spritesmith0.png);background-position:-1208px -1722px;width:60px;height:60px}.hair_bangs_2_ppink2{background-image:url(spritesmith0.png);background-position:-1274px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_ppink2{background-image:url(spritesmith0.png);background-position:-1299px -1722px;width:60px;height:60px}.hair_bangs_2_ppurple{background-image:url(spritesmith0.png);background-position:-1365px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_ppurple{background-image:url(spritesmith0.png);background-position:-1390px -1722px;width:60px;height:60px}.hair_bangs_2_ppurple2{background-image:url(spritesmith0.png);background-position:-1456px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_ppurple2{background-image:url(spritesmith0.png);background-position:-1481px -1722px;width:60px;height:60px}.hair_bangs_2_pumpkin{background-image:url(spritesmith0.png);background-position:-1547px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_pumpkin{background-image:url(spritesmith0.png);background-position:-1572px -1722px;width:60px;height:60px}.hair_bangs_2_purple{background-image:url(spritesmith0.png);background-position:-1638px -1707px;width:90px;height:90px}.customize-option.hair_bangs_2_purple{background-image:url(spritesmith0.png);background-position:-1663px -1722px;width:60px;height:60px}.hair_bangs_2_pyellow{background-image:url(spritesmith0.png);background-position:-1808px 0;width:90px;height:90px}.customize-option.hair_bangs_2_pyellow{background-image:url(spritesmith0.png);background-position:-1833px -15px;width:60px;height:60px}.hair_bangs_2_pyellow2{background-image:url(spritesmith0.png);background-position:-1808px -91px;width:90px;height:90px}.customize-option.hair_bangs_2_pyellow2{background-image:url(spritesmith0.png);background-position:-1833px -106px;width:60px;height:60px}.hair_bangs_2_rainbow{background-image:url(spritesmith0.png);background-position:-1808px -182px;width:90px;height:90px}.customize-option.hair_bangs_2_rainbow{background-image:url(spritesmith0.png);background-position:-1833px -197px;width:60px;height:60px}.hair_bangs_2_red{background-image:url(spritesmith0.png);background-position:-1808px -273px;width:90px;height:90px}.customize-option.hair_bangs_2_red{background-image:url(spritesmith0.png);background-position:-1833px -288px;width:60px;height:60px}.hair_bangs_2_snowy{background-image:url(spritesmith0.png);background-position:-1808px -364px;width:90px;height:90px}.customize-option.hair_bangs_2_snowy{background-image:url(spritesmith0.png);background-position:-1833px -379px;width:60px;height:60px}.hair_bangs_2_white{background-image:url(spritesmith0.png);background-position:-1808px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_white{background-image:url(spritesmith0.png);background-position:-1833px -470px;width:60px;height:60px}.hair_bangs_2_winternight{background-image:url(spritesmith0.png);background-position:-1808px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_winternight{background-image:url(spritesmith0.png);background-position:-1833px -561px;width:60px;height:60px}.hair_bangs_2_winterstar{background-image:url(spritesmith0.png);background-position:-1808px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_winterstar{background-image:url(spritesmith0.png);background-position:-1833px -652px;width:60px;height:60px}.hair_bangs_2_yellow{background-image:url(spritesmith0.png);background-position:-1808px -728px;width:90px;height:90px}.customize-option.hair_bangs_2_yellow{background-image:url(spritesmith0.png);background-position:-1833px -743px;width:60px;height:60px}.hair_bangs_2_zombie{background-image:url(spritesmith0.png);background-position:-1808px -819px;width:90px;height:90px}.customize-option.hair_bangs_2_zombie{background-image:url(spritesmith0.png);background-position:-1833px -834px;width:60px;height:60px}.hair_bangs_3_TRUred{background-image:url(spritesmith0.png);background-position:-1808px -910px;width:90px;height:90px}.customize-option.hair_bangs_3_TRUred{background-image:url(spritesmith0.png);background-position:-1833px -925px;width:60px;height:60px}.hair_bangs_3_aurora{background-image:url(spritesmith0.png);background-position:-1808px -1001px;width:90px;height:90px}.customize-option.hair_bangs_3_aurora{background-image:url(spritesmith0.png);background-position:-1833px -1016px;width:60px;height:60px}.hair_bangs_3_black{background-image:url(spritesmith0.png);background-position:-1808px -1092px;width:90px;height:90px}.customize-option.hair_bangs_3_black{background-image:url(spritesmith0.png);background-position:-1833px -1107px;width:60px;height:60px}.hair_bangs_3_blond{background-image:url(spritesmith0.png);background-position:-1808px -1183px;width:90px;height:90px}.customize-option.hair_bangs_3_blond{background-image:url(spritesmith0.png);background-position:-1833px -1198px;width:60px;height:60px}.hair_bangs_3_blue{background-image:url(spritesmith0.png);background-position:-1808px -1274px;width:90px;height:90px}.customize-option.hair_bangs_3_blue{background-image:url(spritesmith0.png);background-position:-1833px -1289px;width:60px;height:60px}.hair_bangs_3_brown{background-image:url(spritesmith0.png);background-position:-1808px -1365px;width:90px;height:90px}.customize-option.hair_bangs_3_brown{background-image:url(spritesmith0.png);background-position:-1833px -1380px;width:60px;height:60px}.hair_bangs_3_candycane{background-image:url(spritesmith0.png);background-position:-1808px -1456px;width:90px;height:90px}.customize-option.hair_bangs_3_candycane{background-image:url(spritesmith0.png);background-position:-1833px -1471px;width:60px;height:60px}.hair_bangs_3_candycorn{background-image:url(spritesmith0.png);background-position:-1808px -1547px;width:90px;height:90px}.customize-option.hair_bangs_3_candycorn{background-image:url(spritesmith0.png);background-position:-1833px -1562px;width:60px;height:60px}.hair_bangs_3_festive{background-image:url(spritesmith0.png);background-position:-1808px -1638px;width:90px;height:90px}.customize-option.hair_bangs_3_festive{background-image:url(spritesmith0.png);background-position:-1833px -1653px;width:60px;height:60px}.hair_bangs_3_frost{background-image:url(spritesmith0.png);background-position:0 -1798px;width:90px;height:90px}.customize-option.hair_bangs_3_frost{background-image:url(spritesmith0.png);background-position:-25px -1813px;width:60px;height:60px}.hair_bangs_3_ghostwhite{background-image:url(spritesmith0.png);background-position:-91px -1798px;width:90px;height:90px}.customize-option.hair_bangs_3_ghostwhite{background-image:url(spritesmith0.png);background-position:-116px -1813px;width:60px;height:60px}.hair_bangs_3_green{background-image:url(spritesmith0.png);background-position:-182px -1798px;width:90px;height:90px}.customize-option.hair_bangs_3_green{background-image:url(spritesmith0.png);background-position:-207px -1813px;width:60px;height:60px}.hair_bangs_3_halloween{background-image:url(spritesmith0.png);background-position:-273px -1798px;width:90px;height:90px}.customize-option.hair_bangs_3_halloween{background-image:url(spritesmith0.png);background-position:-298px -1813px;width:60px;height:60px}.hair_bangs_3_holly{background-image:url(spritesmith0.png);background-position:-364px -1798px;width:90px;height:90px}.customize-option.hair_bangs_3_holly{background-image:url(spritesmith0.png);background-position:-389px -1813px;width:60px;height:60px}.hair_bangs_3_hollygreen{background-image:url(spritesmith0.png);background-position:-455px -1798px;width:90px;height:90px}.customize-option.hair_bangs_3_hollygreen{background-image:url(spritesmith0.png);background-position:-480px -1813px;width:60px;height:60px}.hair_bangs_3_midnight{background-image:url(spritesmith0.png);background-position:-546px -1798px;width:90px;height:90px}.customize-option.hair_bangs_3_midnight{background-image:url(spritesmith0.png);background-position:-571px -1813px;width:60px;height:60px}.hair_bangs_3_pblue{background-image:url(spritesmith0.png);background-position:-637px -1798px;width:90px;height:90px}.customize-option.hair_bangs_3_pblue{background-image:url(spritesmith0.png);background-position:-662px -1813px;width:60px;height:60px}.hair_bangs_3_pblue2{background-image:url(spritesmith0.png);background-position:-728px -1798px;width:90px;height:90px}.customize-option.hair_bangs_3_pblue2{background-image:url(spritesmith0.png);background-position:-753px -1813px;width:60px;height:60px}.hair_bangs_3_peppermint{background-image:url(spritesmith0.png);background-position:-819px -1798px;width:90px;height:90px}.customize-option.hair_bangs_3_peppermint{background-image:url(spritesmith0.png);background-position:-844px -1813px;width:60px;height:60px}.hair_bangs_3_pgreen{background-image:url(spritesmith0.png);background-position:-910px -1798px;width:90px;height:90px}.customize-option.hair_bangs_3_pgreen{background-image:url(spritesmith0.png);background-position:-935px -1813px;width:60px;height:60px}.hair_bangs_3_pgreen2{background-image:url(spritesmith0.png);background-position:-1001px -1798px;width:90px;height:90px}.customize-option.hair_bangs_3_pgreen2{background-image:url(spritesmith0.png);background-position:-1026px -1813px;width:60px;height:60px}.hair_bangs_3_porange{background-image:url(spritesmith0.png);background-position:-1092px -1798px;width:90px;height:90px}.customize-option.hair_bangs_3_porange{background-image:url(spritesmith0.png);background-position:-1117px -1813px;width:60px;height:60px}.hair_bangs_3_porange2{background-image:url(spritesmith0.png);background-position:-1183px -1798px;width:90px;height:90px}.customize-option.hair_bangs_3_porange2{background-image:url(spritesmith0.png);background-position:-1208px -1813px;width:60px;height:60px}.hair_bangs_3_ppink{background-image:url(spritesmith0.png);background-position:-1274px -1798px;width:90px;height:90px}.customize-option.hair_bangs_3_ppink{background-image:url(spritesmith0.png);background-position:-1299px -1813px;width:60px;height:60px}.hair_bangs_3_ppink2{background-image:url(spritesmith0.png);background-position:-1365px -1798px;width:90px;height:90px}.customize-option.hair_bangs_3_ppink2{background-image:url(spritesmith0.png);background-position:-1390px -1813px;width:60px;height:60px}.hair_bangs_3_ppurple{background-image:url(spritesmith0.png);background-position:-1456px -1798px;width:90px;height:90px}.customize-option.hair_bangs_3_ppurple{background-image:url(spritesmith0.png);background-position:-1481px -1813px;width:60px;height:60px}.hair_bangs_3_ppurple2{background-image:url(spritesmith0.png);background-position:-1547px -1798px;width:90px;height:90px}.customize-option.hair_bangs_3_ppurple2{background-image:url(spritesmith0.png);background-position:-1572px -1813px;width:60px;height:60px}.hair_bangs_3_pumpkin{background-image:url(spritesmith0.png);background-position:0 -1434px;width:90px;height:90px}.customize-option.hair_bangs_3_pumpkin{background-image:url(spritesmith0.png);background-position:-25px -1449px;width:60px;height:60px}.hair_bangs_3_purple{background-image:url(spritesmith0.png);background-position:-637px -979px;width:90px;height:90px}.customize-option.hair_bangs_3_purple{background-image:url(spritesmith0.png);background-position:-662px -994px;width:60px;height:60px}.hair_bangs_3_pyellow{background-image:url(spritesmith0.png);background-position:-546px -979px;width:90px;height:90px}.customize-option.hair_bangs_3_pyellow{background-image:url(spritesmith0.png);background-position:-571px -994px;width:60px;height:60px}.hair_bangs_3_pyellow2{background-image:url(spritesmith0.png);background-position:-455px -979px;width:90px;height:90px}.customize-option.hair_bangs_3_pyellow2{background-image:url(spritesmith0.png);background-position:-480px -994px;width:60px;height:60px}.hair_bangs_3_rainbow{background-image:url(spritesmith0.png);background-position:-364px -979px;width:90px;height:90px}.customize-option.hair_bangs_3_rainbow{background-image:url(spritesmith0.png);background-position:-389px -994px;width:60px;height:60px}.hair_bangs_3_red{background-image:url(spritesmith0.png);background-position:-273px -979px;width:90px;height:90px}.customize-option.hair_bangs_3_red{background-image:url(spritesmith0.png);background-position:-298px -994px;width:60px;height:60px}.hair_bangs_3_snowy{background-image:url(spritesmith0.png);background-position:-182px -979px;width:90px;height:90px}.customize-option.hair_bangs_3_snowy{background-image:url(spritesmith0.png);background-position:-207px -994px;width:60px;height:60px}.hair_bangs_3_white{background-image:url(spritesmith0.png);background-position:-91px -979px;width:90px;height:90px}.customize-option.hair_bangs_3_white{background-image:url(spritesmith0.png);background-position:-116px -994px;width:60px;height:60px}.hair_bangs_3_winternight{background-image:url(spritesmith0.png);background-position:0 -979px;width:90px;height:90px}.customize-option.hair_bangs_3_winternight{background-image:url(spritesmith0.png);background-position:-25px -994px;width:60px;height:60px}.hair_bangs_3_winterstar{background-image:url(spritesmith0.png);background-position:-989px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_winterstar{background-image:url(spritesmith0.png);background-position:-1014px -834px;width:60px;height:60px}.hair_bangs_3_yellow{background-image:url(spritesmith0.png);background-position:-989px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_yellow{background-image:url(spritesmith0.png);background-position:-1014px -743px;width:60px;height:60px}.hair_bangs_3_zombie{background-image:url(spritesmith0.png);background-position:-989px -637px;width:90px;height:90px}.customize-option.hair_bangs_3_zombie{background-image:url(spritesmith0.png);background-position:-1014px -652px;width:60px;height:60px}.hair_base_10_TRUred{background-image:url(spritesmith0.png);background-position:-989px -546px;width:90px;height:90px}.customize-option.hair_base_10_TRUred{background-image:url(spritesmith0.png);background-position:-1014px -561px;width:60px;height:60px}.hair_base_10_aurora{background-image:url(spritesmith0.png);background-position:-989px -455px;width:90px;height:90px}.customize-option.hair_base_10_aurora{background-image:url(spritesmith0.png);background-position:-1014px -470px;width:60px;height:60px}.hair_base_10_black{background-image:url(spritesmith0.png);background-position:-989px -364px;width:90px;height:90px}.customize-option.hair_base_10_black{background-image:url(spritesmith0.png);background-position:-1014px -379px;width:60px;height:60px}.hair_base_10_blond{background-image:url(spritesmith0.png);background-position:-989px -273px;width:90px;height:90px}.customize-option.hair_base_10_blond{background-image:url(spritesmith0.png);background-position:-1014px -288px;width:60px;height:60px}.hair_base_10_blue{background-image:url(spritesmith0.png);background-position:-989px -182px;width:90px;height:90px}.customize-option.hair_base_10_blue{background-image:url(spritesmith0.png);background-position:-1014px -197px;width:60px;height:60px}.hair_base_10_brown{background-image:url(spritesmith0.png);background-position:-989px -91px;width:90px;height:90px}.customize-option.hair_base_10_brown{background-image:url(spritesmith0.png);background-position:-1014px -106px;width:60px;height:60px}.hair_base_10_candycane{background-image:url(spritesmith0.png);background-position:-989px 0;width:90px;height:90px}.customize-option.hair_base_10_candycane{background-image:url(spritesmith0.png);background-position:-1014px -15px;width:60px;height:60px}.hair_base_10_candycorn{background-image:url(spritesmith0.png);background-position:-819px -888px;width:90px;height:90px}.customize-option.hair_base_10_candycorn{background-image:url(spritesmith0.png);background-position:-844px -903px;width:60px;height:60px}.hair_base_10_festive{background-image:url(spritesmith0.png);background-position:-728px -888px;width:90px;height:90px}.customize-option.hair_base_10_festive{background-image:url(spritesmith0.png);background-position:-753px -903px;width:60px;height:60px}.hair_base_10_frost{background-image:url(spritesmith0.png);background-position:-637px -888px;width:90px;height:90px}.customize-option.hair_base_10_frost{background-image:url(spritesmith0.png);background-position:-662px -903px;width:60px;height:60px}.hair_base_10_ghostwhite{background-image:url(spritesmith0.png);background-position:-546px -888px;width:90px;height:90px}.customize-option.hair_base_10_ghostwhite{background-image:url(spritesmith0.png);background-position:-571px -903px;width:60px;height:60px}.hair_base_10_green{background-image:url(spritesmith0.png);background-position:-455px -888px;width:90px;height:90px}.customize-option.hair_base_10_green{background-image:url(spritesmith0.png);background-position:-480px -903px;width:60px;height:60px}.hair_base_10_halloween{background-image:url(spritesmith0.png);background-position:-364px -888px;width:90px;height:90px}.customize-option.hair_base_10_halloween{background-image:url(spritesmith0.png);background-position:-389px -903px;width:60px;height:60px}.hair_base_10_holly{background-image:url(spritesmith0.png);background-position:-273px -888px;width:90px;height:90px}.customize-option.hair_base_10_holly{background-image:url(spritesmith0.png);background-position:-298px -903px;width:60px;height:60px}.hair_base_10_hollygreen{background-image:url(spritesmith0.png);background-position:-182px -888px;width:90px;height:90px}.customize-option.hair_base_10_hollygreen{background-image:url(spritesmith0.png);background-position:-207px -903px;width:60px;height:60px}.hair_base_10_midnight{background-image:url(spritesmith0.png);background-position:-91px -888px;width:90px;height:90px}.customize-option.hair_base_10_midnight{background-image:url(spritesmith0.png);background-position:-116px -903px;width:60px;height:60px}.hair_base_10_pblue{background-image:url(spritesmith0.png);background-position:0 -888px;width:90px;height:90px}.customize-option.hair_base_10_pblue{background-image:url(spritesmith0.png);background-position:-25px -903px;width:60px;height:60px}.hair_base_10_pblue2{background-image:url(spritesmith0.png);background-position:-889px -740px;width:90px;height:90px}.customize-option.hair_base_10_pblue2{background-image:url(spritesmith0.png);background-position:-914px -755px;width:60px;height:60px}.hair_base_10_peppermint{background-image:url(spritesmith0.png);background-position:-798px -740px;width:90px;height:90px}.customize-option.hair_base_10_peppermint{background-image:url(spritesmith0.png);background-position:-823px -755px;width:60px;height:60px}.hair_base_10_pgreen{background-image:url(spritesmith0.png);background-position:-707px -740px;width:90px;height:90px}.customize-option.hair_base_10_pgreen{background-image:url(spritesmith0.png);background-position:-732px -755px;width:60px;height:60px}.hair_base_10_pgreen2{background-image:url(spritesmith0.png);background-position:-1080px 0;width:90px;height:90px}.customize-option.hair_base_10_pgreen2{background-image:url(spritesmith0.png);background-position:-1105px -15px;width:60px;height:60px}.hair_base_10_porange{background-image:url(spritesmith0.png);background-position:-910px -979px;width:90px;height:90px}.customize-option.hair_base_10_porange{background-image:url(spritesmith0.png);background-position:-935px -994px;width:60px;height:60px}.hair_base_10_porange2{background-image:url(spritesmith0.png);background-position:-819px -979px;width:90px;height:90px}.customize-option.hair_base_10_porange2{background-image:url(spritesmith0.png);background-position:-844px -994px;width:60px;height:60px}.hair_base_10_ppink{background-image:url(spritesmith0.png);background-position:-728px -979px;width:90px;height:90px}.customize-option.hair_base_10_ppink{background-image:url(spritesmith0.png);background-position:-753px -994px;width:60px;height:60px}.hair_base_10_ppink2{background-image:url(spritesmith1.png);background-position:-91px 0;width:90px;height:90px}.customize-option.hair_base_10_ppink2{background-image:url(spritesmith1.png);background-position:-116px -15px;width:60px;height:60px}.hair_base_10_ppurple{background-image:url(spritesmith1.png);background-position:-1001px -1183px;width:90px;height:90px}.customize-option.hair_base_10_ppurple{background-image:url(spritesmith1.png);background-position:-1026px -1198px;width:60px;height:60px}.hair_base_10_ppurple2{background-image:url(spritesmith1.png);background-position:0 -91px;width:90px;height:90px}.customize-option.hair_base_10_ppurple2{background-image:url(spritesmith1.png);background-position:-25px -106px;width:60px;height:60px}.hair_base_10_pumpkin{background-image:url(spritesmith1.png);background-position:-91px -91px;width:90px;height:90px}.customize-option.hair_base_10_pumpkin{background-image:url(spritesmith1.png);background-position:-116px -106px;width:60px;height:60px}.hair_base_10_purple{background-image:url(spritesmith1.png);background-position:-182px 0;width:90px;height:90px}.customize-option.hair_base_10_purple{background-image:url(spritesmith1.png);background-position:-207px -15px;width:60px;height:60px}.hair_base_10_pyellow{background-image:url(spritesmith1.png);background-position:-182px -91px;width:90px;height:90px}.customize-option.hair_base_10_pyellow{background-image:url(spritesmith1.png);background-position:-207px -106px;width:60px;height:60px}.hair_base_10_pyellow2{background-image:url(spritesmith1.png);background-position:0 -182px;width:90px;height:90px}.customize-option.hair_base_10_pyellow2{background-image:url(spritesmith1.png);background-position:-25px -197px;width:60px;height:60px}.hair_base_10_rainbow{background-image:url(spritesmith1.png);background-position:-91px -182px;width:90px;height:90px}.customize-option.hair_base_10_rainbow{background-image:url(spritesmith1.png);background-position:-116px -197px;width:60px;height:60px}.hair_base_10_red{background-image:url(spritesmith1.png);background-position:-182px -182px;width:90px;height:90px}.customize-option.hair_base_10_red{background-image:url(spritesmith1.png);background-position:-207px -197px;width:60px;height:60px}.hair_base_10_snowy{background-image:url(spritesmith1.png);background-position:-273px 0;width:90px;height:90px}.customize-option.hair_base_10_snowy{background-image:url(spritesmith1.png);background-position:-298px -15px;width:60px;height:60px}.hair_base_10_white{background-image:url(spritesmith1.png);background-position:-273px -91px;width:90px;height:90px}.customize-option.hair_base_10_white{background-image:url(spritesmith1.png);background-position:-298px -106px;width:60px;height:60px}.hair_base_10_winternight{background-image:url(spritesmith1.png);background-position:-273px -182px;width:90px;height:90px}.customize-option.hair_base_10_winternight{background-image:url(spritesmith1.png);background-position:-298px -197px;width:60px;height:60px}.hair_base_10_winterstar{background-image:url(spritesmith1.png);background-position:0 -273px;width:90px;height:90px}.customize-option.hair_base_10_winterstar{background-image:url(spritesmith1.png);background-position:-25px -288px;width:60px;height:60px}.hair_base_10_yellow{background-image:url(spritesmith1.png);background-position:-91px -273px;width:90px;height:90px}.customize-option.hair_base_10_yellow{background-image:url(spritesmith1.png);background-position:-116px -288px;width:60px;height:60px}.hair_base_10_zombie{background-image:url(spritesmith1.png);background-position:-182px -273px;width:90px;height:90px}.customize-option.hair_base_10_zombie{background-image:url(spritesmith1.png);background-position:-207px -288px;width:60px;height:60px}.hair_base_11_TRUred{background-image:url(spritesmith1.png);background-position:-273px -273px;width:90px;height:90px}.customize-option.hair_base_11_TRUred{background-image:url(spritesmith1.png);background-position:-298px -288px;width:60px;height:60px}.hair_base_11_aurora{background-image:url(spritesmith1.png);background-position:-364px 0;width:90px;height:90px}.customize-option.hair_base_11_aurora{background-image:url(spritesmith1.png);background-position:-389px -15px;width:60px;height:60px}.hair_base_11_black{background-image:url(spritesmith1.png);background-position:-364px -91px;width:90px;height:90px}.customize-option.hair_base_11_black{background-image:url(spritesmith1.png);background-position:-389px -106px;width:60px;height:60px}.hair_base_11_blond{background-image:url(spritesmith1.png);background-position:-364px -182px;width:90px;height:90px}.customize-option.hair_base_11_blond{background-image:url(spritesmith1.png);background-position:-389px -197px;width:60px;height:60px}.hair_base_11_blue{background-image:url(spritesmith1.png);background-position:-364px -273px;width:90px;height:90px}.customize-option.hair_base_11_blue{background-image:url(spritesmith1.png);background-position:-389px -288px;width:60px;height:60px}.hair_base_11_brown{background-image:url(spritesmith1.png);background-position:0 -364px;width:90px;height:90px}.customize-option.hair_base_11_brown{background-image:url(spritesmith1.png);background-position:-25px -379px;width:60px;height:60px}.hair_base_11_candycane{background-image:url(spritesmith1.png);background-position:-91px -364px;width:90px;height:90px}.customize-option.hair_base_11_candycane{background-image:url(spritesmith1.png);background-position:-116px -379px;width:60px;height:60px}.hair_base_11_candycorn{background-image:url(spritesmith1.png);background-position:-182px -364px;width:90px;height:90px}.customize-option.hair_base_11_candycorn{background-image:url(spritesmith1.png);background-position:-207px -379px;width:60px;height:60px}.hair_base_11_festive{background-image:url(spritesmith1.png);background-position:-273px -364px;width:90px;height:90px}.customize-option.hair_base_11_festive{background-image:url(spritesmith1.png);background-position:-298px -379px;width:60px;height:60px}.hair_base_11_frost{background-image:url(spritesmith1.png);background-position:-364px -364px;width:90px;height:90px}.customize-option.hair_base_11_frost{background-image:url(spritesmith1.png);background-position:-389px -379px;width:60px;height:60px}.hair_base_11_ghostwhite{background-image:url(spritesmith1.png);background-position:-455px 0;width:90px;height:90px}.customize-option.hair_base_11_ghostwhite{background-image:url(spritesmith1.png);background-position:-480px -15px;width:60px;height:60px}.hair_base_11_green{background-image:url(spritesmith1.png);background-position:-455px -91px;width:90px;height:90px}.customize-option.hair_base_11_green{background-image:url(spritesmith1.png);background-position:-480px -106px;width:60px;height:60px}.hair_base_11_halloween{background-image:url(spritesmith1.png);background-position:-455px -182px;width:90px;height:90px}.customize-option.hair_base_11_halloween{background-image:url(spritesmith1.png);background-position:-480px -197px;width:60px;height:60px}.hair_base_11_holly{background-image:url(spritesmith1.png);background-position:-455px -273px;width:90px;height:90px}.customize-option.hair_base_11_holly{background-image:url(spritesmith1.png);background-position:-480px -288px;width:60px;height:60px}.hair_base_11_hollygreen{background-image:url(spritesmith1.png);background-position:-455px -364px;width:90px;height:90px}.customize-option.hair_base_11_hollygreen{background-image:url(spritesmith1.png);background-position:-480px -379px;width:60px;height:60px}.hair_base_11_midnight{background-image:url(spritesmith1.png);background-position:0 -455px;width:90px;height:90px}.customize-option.hair_base_11_midnight{background-image:url(spritesmith1.png);background-position:-25px -470px;width:60px;height:60px}.hair_base_11_pblue{background-image:url(spritesmith1.png);background-position:-91px -455px;width:90px;height:90px}.customize-option.hair_base_11_pblue{background-image:url(spritesmith1.png);background-position:-116px -470px;width:60px;height:60px}.hair_base_11_pblue2{background-image:url(spritesmith1.png);background-position:-182px -455px;width:90px;height:90px}.customize-option.hair_base_11_pblue2{background-image:url(spritesmith1.png);background-position:-207px -470px;width:60px;height:60px}.hair_base_11_peppermint{background-image:url(spritesmith1.png);background-position:-273px -455px;width:90px;height:90px}.customize-option.hair_base_11_peppermint{background-image:url(spritesmith1.png);background-position:-298px -470px;width:60px;height:60px}.hair_base_11_pgreen{background-image:url(spritesmith1.png);background-position:-364px -455px;width:90px;height:90px}.customize-option.hair_base_11_pgreen{background-image:url(spritesmith1.png);background-position:-389px -470px;width:60px;height:60px}.hair_base_11_pgreen2{background-image:url(spritesmith1.png);background-position:-455px -455px;width:90px;height:90px}.customize-option.hair_base_11_pgreen2{background-image:url(spritesmith1.png);background-position:-480px -470px;width:60px;height:60px}.hair_base_11_porange{background-image:url(spritesmith1.png);background-position:-546px 0;width:90px;height:90px}.customize-option.hair_base_11_porange{background-image:url(spritesmith1.png);background-position:-571px -15px;width:60px;height:60px}.hair_base_11_porange2{background-image:url(spritesmith1.png);background-position:-546px -91px;width:90px;height:90px}.customize-option.hair_base_11_porange2{background-image:url(spritesmith1.png);background-position:-571px -106px;width:60px;height:60px}.hair_base_11_ppink{background-image:url(spritesmith1.png);background-position:-546px -182px;width:90px;height:90px}.customize-option.hair_base_11_ppink{background-image:url(spritesmith1.png);background-position:-571px -197px;width:60px;height:60px}.hair_base_11_ppink2{background-image:url(spritesmith1.png);background-position:-546px -273px;width:90px;height:90px}.customize-option.hair_base_11_ppink2{background-image:url(spritesmith1.png);background-position:-571px -288px;width:60px;height:60px}.hair_base_11_ppurple{background-image:url(spritesmith1.png);background-position:-546px -364px;width:90px;height:90px}.customize-option.hair_base_11_ppurple{background-image:url(spritesmith1.png);background-position:-571px -379px;width:60px;height:60px}.hair_base_11_ppurple2{background-image:url(spritesmith1.png);background-position:-546px -455px;width:90px;height:90px}.customize-option.hair_base_11_ppurple2{background-image:url(spritesmith1.png);background-position:-571px -470px;width:60px;height:60px}.hair_base_11_pumpkin{background-image:url(spritesmith1.png);background-position:0 -546px;width:90px;height:90px}.customize-option.hair_base_11_pumpkin{background-image:url(spritesmith1.png);background-position:-25px -561px;width:60px;height:60px}.hair_base_11_purple{background-image:url(spritesmith1.png);background-position:-91px -546px;width:90px;height:90px}.customize-option.hair_base_11_purple{background-image:url(spritesmith1.png);background-position:-116px -561px;width:60px;height:60px}.hair_base_11_pyellow{background-image:url(spritesmith1.png);background-position:-182px -546px;width:90px;height:90px}.customize-option.hair_base_11_pyellow{background-image:url(spritesmith1.png);background-position:-207px -561px;width:60px;height:60px}.hair_base_11_pyellow2{background-image:url(spritesmith1.png);background-position:-273px -546px;width:90px;height:90px}.customize-option.hair_base_11_pyellow2{background-image:url(spritesmith1.png);background-position:-298px -561px;width:60px;height:60px}.hair_base_11_rainbow{background-image:url(spritesmith1.png);background-position:-364px -546px;width:90px;height:90px}.customize-option.hair_base_11_rainbow{background-image:url(spritesmith1.png);background-position:-389px -561px;width:60px;height:60px}.hair_base_11_red{background-image:url(spritesmith1.png);background-position:-455px -546px;width:90px;height:90px}.customize-option.hair_base_11_red{background-image:url(spritesmith1.png);background-position:-480px -561px;width:60px;height:60px}.hair_base_11_snowy{background-image:url(spritesmith1.png);background-position:-546px -546px;width:90px;height:90px}.customize-option.hair_base_11_snowy{background-image:url(spritesmith1.png);background-position:-571px -561px;width:60px;height:60px}.hair_base_11_white{background-image:url(spritesmith1.png);background-position:-637px 0;width:90px;height:90px}.customize-option.hair_base_11_white{background-image:url(spritesmith1.png);background-position:-662px -15px;width:60px;height:60px}.hair_base_11_winternight{background-image:url(spritesmith1.png);background-position:-637px -91px;width:90px;height:90px}.customize-option.hair_base_11_winternight{background-image:url(spritesmith1.png);background-position:-662px -106px;width:60px;height:60px}.hair_base_11_winterstar{background-image:url(spritesmith1.png);background-position:-637px -182px;width:90px;height:90px}.customize-option.hair_base_11_winterstar{background-image:url(spritesmith1.png);background-position:-662px -197px;width:60px;height:60px}.hair_base_11_yellow{background-image:url(spritesmith1.png);background-position:-637px -273px;width:90px;height:90px}.customize-option.hair_base_11_yellow{background-image:url(spritesmith1.png);background-position:-662px -288px;width:60px;height:60px}.hair_base_11_zombie{background-image:url(spritesmith1.png);background-position:-637px -364px;width:90px;height:90px}.customize-option.hair_base_11_zombie{background-image:url(spritesmith1.png);background-position:-662px -379px;width:60px;height:60px}.hair_base_12_TRUred{background-image:url(spritesmith1.png);background-position:-637px -455px;width:90px;height:90px}.customize-option.hair_base_12_TRUred{background-image:url(spritesmith1.png);background-position:-662px -470px;width:60px;height:60px}.hair_base_12_aurora{background-image:url(spritesmith1.png);background-position:-637px -546px;width:90px;height:90px}.customize-option.hair_base_12_aurora{background-image:url(spritesmith1.png);background-position:-662px -561px;width:60px;height:60px}.hair_base_12_black{background-image:url(spritesmith1.png);background-position:0 -637px;width:90px;height:90px}.customize-option.hair_base_12_black{background-image:url(spritesmith1.png);background-position:-25px -652px;width:60px;height:60px}.hair_base_12_blond{background-image:url(spritesmith1.png);background-position:-91px -637px;width:90px;height:90px}.customize-option.hair_base_12_blond{background-image:url(spritesmith1.png);background-position:-116px -652px;width:60px;height:60px}.hair_base_12_blue{background-image:url(spritesmith1.png);background-position:-182px -637px;width:90px;height:90px}.customize-option.hair_base_12_blue{background-image:url(spritesmith1.png);background-position:-207px -652px;width:60px;height:60px}.hair_base_12_brown{background-image:url(spritesmith1.png);background-position:-273px -637px;width:90px;height:90px}.customize-option.hair_base_12_brown{background-image:url(spritesmith1.png);background-position:-298px -652px;width:60px;height:60px}.hair_base_12_candycane{background-image:url(spritesmith1.png);background-position:-364px -637px;width:90px;height:90px}.customize-option.hair_base_12_candycane{background-image:url(spritesmith1.png);background-position:-389px -652px;width:60px;height:60px}.hair_base_12_candycorn{background-image:url(spritesmith1.png);background-position:-455px -637px;width:90px;height:90px}.customize-option.hair_base_12_candycorn{background-image:url(spritesmith1.png);background-position:-480px -652px;width:60px;height:60px}.hair_base_12_festive{background-image:url(spritesmith1.png);background-position:-546px -637px;width:90px;height:90px}.customize-option.hair_base_12_festive{background-image:url(spritesmith1.png);background-position:-571px -652px;width:60px;height:60px}.hair_base_12_frost{background-image:url(spritesmith1.png);background-position:-637px -637px;width:90px;height:90px}.customize-option.hair_base_12_frost{background-image:url(spritesmith1.png);background-position:-662px -652px;width:60px;height:60px}.hair_base_12_ghostwhite{background-image:url(spritesmith1.png);background-position:-728px 0;width:90px;height:90px}.customize-option.hair_base_12_ghostwhite{background-image:url(spritesmith1.png);background-position:-753px -15px;width:60px;height:60px}.hair_base_12_green{background-image:url(spritesmith1.png);background-position:-728px -91px;width:90px;height:90px}.customize-option.hair_base_12_green{background-image:url(spritesmith1.png);background-position:-753px -106px;width:60px;height:60px}.hair_base_12_halloween{background-image:url(spritesmith1.png);background-position:-728px -182px;width:90px;height:90px}.customize-option.hair_base_12_halloween{background-image:url(spritesmith1.png);background-position:-753px -197px;width:60px;height:60px}.hair_base_12_holly{background-image:url(spritesmith1.png);background-position:-728px -273px;width:90px;height:90px}.customize-option.hair_base_12_holly{background-image:url(spritesmith1.png);background-position:-753px -288px;width:60px;height:60px}.hair_base_12_hollygreen{background-image:url(spritesmith1.png);background-position:-728px -364px;width:90px;height:90px}.customize-option.hair_base_12_hollygreen{background-image:url(spritesmith1.png);background-position:-753px -379px;width:60px;height:60px}.hair_base_12_midnight{background-image:url(spritesmith1.png);background-position:-728px -455px;width:90px;height:90px}.customize-option.hair_base_12_midnight{background-image:url(spritesmith1.png);background-position:-753px -470px;width:60px;height:60px}.hair_base_12_pblue{background-image:url(spritesmith1.png);background-position:-728px -546px;width:90px;height:90px}.customize-option.hair_base_12_pblue{background-image:url(spritesmith1.png);background-position:-753px -561px;width:60px;height:60px}.hair_base_12_pblue2{background-image:url(spritesmith1.png);background-position:-728px -637px;width:90px;height:90px}.customize-option.hair_base_12_pblue2{background-image:url(spritesmith1.png);background-position:-753px -652px;width:60px;height:60px}.hair_base_12_peppermint{background-image:url(spritesmith1.png);background-position:0 -728px;width:90px;height:90px}.customize-option.hair_base_12_peppermint{background-image:url(spritesmith1.png);background-position:-25px -743px;width:60px;height:60px}.hair_base_12_pgreen{background-image:url(spritesmith1.png);background-position:-91px -728px;width:90px;height:90px}.customize-option.hair_base_12_pgreen{background-image:url(spritesmith1.png);background-position:-116px -743px;width:60px;height:60px}.hair_base_12_pgreen2{background-image:url(spritesmith1.png);background-position:-182px -728px;width:90px;height:90px}.customize-option.hair_base_12_pgreen2{background-image:url(spritesmith1.png);background-position:-207px -743px;width:60px;height:60px}.hair_base_12_porange{background-image:url(spritesmith1.png);background-position:-273px -728px;width:90px;height:90px}.customize-option.hair_base_12_porange{background-image:url(spritesmith1.png);background-position:-298px -743px;width:60px;height:60px}.hair_base_12_porange2{background-image:url(spritesmith1.png);background-position:-364px -728px;width:90px;height:90px}.customize-option.hair_base_12_porange2{background-image:url(spritesmith1.png);background-position:-389px -743px;width:60px;height:60px}.hair_base_12_ppink{background-image:url(spritesmith1.png);background-position:-455px -728px;width:90px;height:90px}.customize-option.hair_base_12_ppink{background-image:url(spritesmith1.png);background-position:-480px -743px;width:60px;height:60px}.hair_base_12_ppink2{background-image:url(spritesmith1.png);background-position:-546px -728px;width:90px;height:90px}.customize-option.hair_base_12_ppink2{background-image:url(spritesmith1.png);background-position:-571px -743px;width:60px;height:60px}.hair_base_12_ppurple{background-image:url(spritesmith1.png);background-position:-637px -728px;width:90px;height:90px}.customize-option.hair_base_12_ppurple{background-image:url(spritesmith1.png);background-position:-662px -743px;width:60px;height:60px}.hair_base_12_ppurple2{background-image:url(spritesmith1.png);background-position:-728px -728px;width:90px;height:90px}.customize-option.hair_base_12_ppurple2{background-image:url(spritesmith1.png);background-position:-753px -743px;width:60px;height:60px}.hair_base_12_pumpkin{background-image:url(spritesmith1.png);background-position:-819px 0;width:90px;height:90px}.customize-option.hair_base_12_pumpkin{background-image:url(spritesmith1.png);background-position:-844px -15px;width:60px;height:60px}.hair_base_12_purple{background-image:url(spritesmith1.png);background-position:-819px -91px;width:90px;height:90px}.customize-option.hair_base_12_purple{background-image:url(spritesmith1.png);background-position:-844px -106px;width:60px;height:60px}.hair_base_12_pyellow{background-image:url(spritesmith1.png);background-position:-819px -182px;width:90px;height:90px}.customize-option.hair_base_12_pyellow{background-image:url(spritesmith1.png);background-position:-844px -197px;width:60px;height:60px}.hair_base_12_pyellow2{background-image:url(spritesmith1.png);background-position:-819px -273px;width:90px;height:90px}.customize-option.hair_base_12_pyellow2{background-image:url(spritesmith1.png);background-position:-844px -288px;width:60px;height:60px}.hair_base_12_rainbow{background-image:url(spritesmith1.png);background-position:-819px -364px;width:90px;height:90px}.customize-option.hair_base_12_rainbow{background-image:url(spritesmith1.png);background-position:-844px -379px;width:60px;height:60px}.hair_base_12_red{background-image:url(spritesmith1.png);background-position:-819px -455px;width:90px;height:90px}.customize-option.hair_base_12_red{background-image:url(spritesmith1.png);background-position:-844px -470px;width:60px;height:60px}.hair_base_12_snowy{background-image:url(spritesmith1.png);background-position:-819px -546px;width:90px;height:90px}.customize-option.hair_base_12_snowy{background-image:url(spritesmith1.png);background-position:-844px -561px;width:60px;height:60px}.hair_base_12_white{background-image:url(spritesmith1.png);background-position:-819px -637px;width:90px;height:90px}.customize-option.hair_base_12_white{background-image:url(spritesmith1.png);background-position:-844px -652px;width:60px;height:60px}.hair_base_12_winternight{background-image:url(spritesmith1.png);background-position:-819px -728px;width:90px;height:90px}.customize-option.hair_base_12_winternight{background-image:url(spritesmith1.png);background-position:-844px -743px;width:60px;height:60px}.hair_base_12_winterstar{background-image:url(spritesmith1.png);background-position:0 -819px;width:90px;height:90px}.customize-option.hair_base_12_winterstar{background-image:url(spritesmith1.png);background-position:-25px -834px;width:60px;height:60px}.hair_base_12_yellow{background-image:url(spritesmith1.png);background-position:-91px -819px;width:90px;height:90px}.customize-option.hair_base_12_yellow{background-image:url(spritesmith1.png);background-position:-116px -834px;width:60px;height:60px}.hair_base_12_zombie{background-image:url(spritesmith1.png);background-position:-182px -819px;width:90px;height:90px}.customize-option.hair_base_12_zombie{background-image:url(spritesmith1.png);background-position:-207px -834px;width:60px;height:60px}.hair_base_13_TRUred{background-image:url(spritesmith1.png);background-position:-273px -819px;width:90px;height:90px}.customize-option.hair_base_13_TRUred{background-image:url(spritesmith1.png);background-position:-298px -834px;width:60px;height:60px}.hair_base_13_aurora{background-image:url(spritesmith1.png);background-position:-364px -819px;width:90px;height:90px}.customize-option.hair_base_13_aurora{background-image:url(spritesmith1.png);background-position:-389px -834px;width:60px;height:60px}.hair_base_13_black{background-image:url(spritesmith1.png);background-position:-455px -819px;width:90px;height:90px}.customize-option.hair_base_13_black{background-image:url(spritesmith1.png);background-position:-480px -834px;width:60px;height:60px}.hair_base_13_blond{background-image:url(spritesmith1.png);background-position:-546px -819px;width:90px;height:90px}.customize-option.hair_base_13_blond{background-image:url(spritesmith1.png);background-position:-571px -834px;width:60px;height:60px}.hair_base_13_blue{background-image:url(spritesmith1.png);background-position:-637px -819px;width:90px;height:90px}.customize-option.hair_base_13_blue{background-image:url(spritesmith1.png);background-position:-662px -834px;width:60px;height:60px}.hair_base_13_brown{background-image:url(spritesmith1.png);background-position:-728px -819px;width:90px;height:90px}.customize-option.hair_base_13_brown{background-image:url(spritesmith1.png);background-position:-753px -834px;width:60px;height:60px}.hair_base_13_candycane{background-image:url(spritesmith1.png);background-position:-819px -819px;width:90px;height:90px}.customize-option.hair_base_13_candycane{background-image:url(spritesmith1.png);background-position:-844px -834px;width:60px;height:60px}.hair_base_13_candycorn{background-image:url(spritesmith1.png);background-position:-910px 0;width:90px;height:90px}.customize-option.hair_base_13_candycorn{background-image:url(spritesmith1.png);background-position:-935px -15px;width:60px;height:60px}.hair_base_13_festive{background-image:url(spritesmith1.png);background-position:-910px -91px;width:90px;height:90px}.customize-option.hair_base_13_festive{background-image:url(spritesmith1.png);background-position:-935px -106px;width:60px;height:60px}.hair_base_13_frost{background-image:url(spritesmith1.png);background-position:-910px -182px;width:90px;height:90px}.customize-option.hair_base_13_frost{background-image:url(spritesmith1.png);background-position:-935px -197px;width:60px;height:60px}.hair_base_13_ghostwhite{background-image:url(spritesmith1.png);background-position:-910px -273px;width:90px;height:90px}.customize-option.hair_base_13_ghostwhite{background-image:url(spritesmith1.png);background-position:-935px -288px;width:60px;height:60px}.hair_base_13_green{background-image:url(spritesmith1.png);background-position:-910px -364px;width:90px;height:90px}.customize-option.hair_base_13_green{background-image:url(spritesmith1.png);background-position:-935px -379px;width:60px;height:60px}.hair_base_13_halloween{background-image:url(spritesmith1.png);background-position:-910px -455px;width:90px;height:90px}.customize-option.hair_base_13_halloween{background-image:url(spritesmith1.png);background-position:-935px -470px;width:60px;height:60px}.hair_base_13_holly{background-image:url(spritesmith1.png);background-position:-910px -546px;width:90px;height:90px}.customize-option.hair_base_13_holly{background-image:url(spritesmith1.png);background-position:-935px -561px;width:60px;height:60px}.hair_base_13_hollygreen{background-image:url(spritesmith1.png);background-position:-910px -637px;width:90px;height:90px}.customize-option.hair_base_13_hollygreen{background-image:url(spritesmith1.png);background-position:-935px -652px;width:60px;height:60px}.hair_base_13_midnight{background-image:url(spritesmith1.png);background-position:-910px -728px;width:90px;height:90px}.customize-option.hair_base_13_midnight{background-image:url(spritesmith1.png);background-position:-935px -743px;width:60px;height:60px}.hair_base_13_pblue{background-image:url(spritesmith1.png);background-position:-910px -819px;width:90px;height:90px}.customize-option.hair_base_13_pblue{background-image:url(spritesmith1.png);background-position:-935px -834px;width:60px;height:60px}.hair_base_13_pblue2{background-image:url(spritesmith1.png);background-position:0 -910px;width:90px;height:90px}.customize-option.hair_base_13_pblue2{background-image:url(spritesmith1.png);background-position:-25px -925px;width:60px;height:60px}.hair_base_13_peppermint{background-image:url(spritesmith1.png);background-position:-91px -910px;width:90px;height:90px}.customize-option.hair_base_13_peppermint{background-image:url(spritesmith1.png);background-position:-116px -925px;width:60px;height:60px}.hair_base_13_pgreen{background-image:url(spritesmith1.png);background-position:-182px -910px;width:90px;height:90px}.customize-option.hair_base_13_pgreen{background-image:url(spritesmith1.png);background-position:-207px -925px;width:60px;height:60px}.hair_base_13_pgreen2{background-image:url(spritesmith1.png);background-position:-273px -910px;width:90px;height:90px}.customize-option.hair_base_13_pgreen2{background-image:url(spritesmith1.png);background-position:-298px -925px;width:60px;height:60px}.hair_base_13_porange{background-image:url(spritesmith1.png);background-position:-364px -910px;width:90px;height:90px}.customize-option.hair_base_13_porange{background-image:url(spritesmith1.png);background-position:-389px -925px;width:60px;height:60px}.hair_base_13_porange2{background-image:url(spritesmith1.png);background-position:-455px -910px;width:90px;height:90px}.customize-option.hair_base_13_porange2{background-image:url(spritesmith1.png);background-position:-480px -925px;width:60px;height:60px}.hair_base_13_ppink{background-image:url(spritesmith1.png);background-position:-546px -910px;width:90px;height:90px}.customize-option.hair_base_13_ppink{background-image:url(spritesmith1.png);background-position:-571px -925px;width:60px;height:60px}.hair_base_13_ppink2{background-image:url(spritesmith1.png);background-position:-637px -910px;width:90px;height:90px}.customize-option.hair_base_13_ppink2{background-image:url(spritesmith1.png);background-position:-662px -925px;width:60px;height:60px}.hair_base_13_ppurple{background-image:url(spritesmith1.png);background-position:-728px -910px;width:90px;height:90px}.customize-option.hair_base_13_ppurple{background-image:url(spritesmith1.png);background-position:-753px -925px;width:60px;height:60px}.hair_base_13_ppurple2{background-image:url(spritesmith1.png);background-position:-819px -910px;width:90px;height:90px}.customize-option.hair_base_13_ppurple2{background-image:url(spritesmith1.png);background-position:-844px -925px;width:60px;height:60px}.hair_base_13_pumpkin{background-image:url(spritesmith1.png);background-position:-910px -910px;width:90px;height:90px}.customize-option.hair_base_13_pumpkin{background-image:url(spritesmith1.png);background-position:-935px -925px;width:60px;height:60px}.hair_base_13_purple{background-image:url(spritesmith1.png);background-position:-1001px 0;width:90px;height:90px}.customize-option.hair_base_13_purple{background-image:url(spritesmith1.png);background-position:-1026px -15px;width:60px;height:60px}.hair_base_13_pyellow{background-image:url(spritesmith1.png);background-position:-1001px -91px;width:90px;height:90px}.customize-option.hair_base_13_pyellow{background-image:url(spritesmith1.png);background-position:-1026px -106px;width:60px;height:60px}.hair_base_13_pyellow2{background-image:url(spritesmith1.png);background-position:-1001px -182px;width:90px;height:90px}.customize-option.hair_base_13_pyellow2{background-image:url(spritesmith1.png);background-position:-1026px -197px;width:60px;height:60px}.hair_base_13_rainbow{background-image:url(spritesmith1.png);background-position:-1001px -273px;width:90px;height:90px}.customize-option.hair_base_13_rainbow{background-image:url(spritesmith1.png);background-position:-1026px -288px;width:60px;height:60px}.hair_base_13_red{background-image:url(spritesmith1.png);background-position:-1001px -364px;width:90px;height:90px}.customize-option.hair_base_13_red{background-image:url(spritesmith1.png);background-position:-1026px -379px;width:60px;height:60px}.hair_base_13_snowy{background-image:url(spritesmith1.png);background-position:-1001px -455px;width:90px;height:90px}.customize-option.hair_base_13_snowy{background-image:url(spritesmith1.png);background-position:-1026px -470px;width:60px;height:60px}.hair_base_13_white{background-image:url(spritesmith1.png);background-position:-1001px -546px;width:90px;height:90px}.customize-option.hair_base_13_white{background-image:url(spritesmith1.png);background-position:-1026px -561px;width:60px;height:60px}.hair_base_13_winternight{background-image:url(spritesmith1.png);background-position:-1001px -637px;width:90px;height:90px}.customize-option.hair_base_13_winternight{background-image:url(spritesmith1.png);background-position:-1026px -652px;width:60px;height:60px}.hair_base_13_winterstar{background-image:url(spritesmith1.png);background-position:-1001px -728px;width:90px;height:90px}.customize-option.hair_base_13_winterstar{background-image:url(spritesmith1.png);background-position:-1026px -743px;width:60px;height:60px}.hair_base_13_yellow{background-image:url(spritesmith1.png);background-position:-1001px -819px;width:90px;height:90px}.customize-option.hair_base_13_yellow{background-image:url(spritesmith1.png);background-position:-1026px -834px;width:60px;height:60px}.hair_base_13_zombie{background-image:url(spritesmith1.png);background-position:-1001px -910px;width:90px;height:90px}.customize-option.hair_base_13_zombie{background-image:url(spritesmith1.png);background-position:-1026px -925px;width:60px;height:60px}.hair_base_14_TRUred{background-image:url(spritesmith1.png);background-position:0 -1001px;width:90px;height:90px}.customize-option.hair_base_14_TRUred{background-image:url(spritesmith1.png);background-position:-25px -1016px;width:60px;height:60px}.hair_base_14_aurora{background-image:url(spritesmith1.png);background-position:-91px -1001px;width:90px;height:90px}.customize-option.hair_base_14_aurora{background-image:url(spritesmith1.png);background-position:-116px -1016px;width:60px;height:60px}.hair_base_14_black{background-image:url(spritesmith1.png);background-position:-182px -1001px;width:90px;height:90px}.customize-option.hair_base_14_black{background-image:url(spritesmith1.png);background-position:-207px -1016px;width:60px;height:60px}.hair_base_14_blond{background-image:url(spritesmith1.png);background-position:-273px -1001px;width:90px;height:90px}.customize-option.hair_base_14_blond{background-image:url(spritesmith1.png);background-position:-298px -1016px;width:60px;height:60px}.hair_base_14_blue{background-image:url(spritesmith1.png);background-position:-364px -1001px;width:90px;height:90px}.customize-option.hair_base_14_blue{background-image:url(spritesmith1.png);background-position:-389px -1016px;width:60px;height:60px}.hair_base_14_brown{background-image:url(spritesmith1.png);background-position:-455px -1001px;width:90px;height:90px}.customize-option.hair_base_14_brown{background-image:url(spritesmith1.png);background-position:-480px -1016px;width:60px;height:60px}.hair_base_14_candycane{background-image:url(spritesmith1.png);background-position:-546px -1001px;width:90px;height:90px}.customize-option.hair_base_14_candycane{background-image:url(spritesmith1.png);background-position:-571px -1016px;width:60px;height:60px}.hair_base_14_candycorn{background-image:url(spritesmith1.png);background-position:-637px -1001px;width:90px;height:90px}.customize-option.hair_base_14_candycorn{background-image:url(spritesmith1.png);background-position:-662px -1016px;width:60px;height:60px}.hair_base_14_festive{background-image:url(spritesmith1.png);background-position:-728px -1001px;width:90px;height:90px}.customize-option.hair_base_14_festive{background-image:url(spritesmith1.png);background-position:-753px -1016px;width:60px;height:60px}.hair_base_14_frost{background-image:url(spritesmith1.png);background-position:-819px -1001px;width:90px;height:90px}.customize-option.hair_base_14_frost{background-image:url(spritesmith1.png);background-position:-844px -1016px;width:60px;height:60px}.hair_base_14_ghostwhite{background-image:url(spritesmith1.png);background-position:-910px -1001px;width:90px;height:90px}.customize-option.hair_base_14_ghostwhite{background-image:url(spritesmith1.png);background-position:-935px -1016px;width:60px;height:60px}.hair_base_14_green{background-image:url(spritesmith1.png);background-position:-1001px -1001px;width:90px;height:90px}.customize-option.hair_base_14_green{background-image:url(spritesmith1.png);background-position:-1026px -1016px;width:60px;height:60px}.hair_base_14_halloween{background-image:url(spritesmith1.png);background-position:-1092px 0;width:90px;height:90px}.customize-option.hair_base_14_halloween{background-image:url(spritesmith1.png);background-position:-1117px -15px;width:60px;height:60px}.hair_base_14_holly{background-image:url(spritesmith1.png);background-position:-1092px -91px;width:90px;height:90px}.customize-option.hair_base_14_holly{background-image:url(spritesmith1.png);background-position:-1117px -106px;width:60px;height:60px}.hair_base_14_hollygreen{background-image:url(spritesmith1.png);background-position:-1092px -182px;width:90px;height:90px}.customize-option.hair_base_14_hollygreen{background-image:url(spritesmith1.png);background-position:-1117px -197px;width:60px;height:60px}.hair_base_14_midnight{background-image:url(spritesmith1.png);background-position:-1092px -273px;width:90px;height:90px}.customize-option.hair_base_14_midnight{background-image:url(spritesmith1.png);background-position:-1117px -288px;width:60px;height:60px}.hair_base_14_pblue{background-image:url(spritesmith1.png);background-position:-1092px -364px;width:90px;height:90px}.customize-option.hair_base_14_pblue{background-image:url(spritesmith1.png);background-position:-1117px -379px;width:60px;height:60px}.hair_base_14_pblue2{background-image:url(spritesmith1.png);background-position:-1092px -455px;width:90px;height:90px}.customize-option.hair_base_14_pblue2{background-image:url(spritesmith1.png);background-position:-1117px -470px;width:60px;height:60px}.hair_base_14_peppermint{background-image:url(spritesmith1.png);background-position:-1092px -546px;width:90px;height:90px}.customize-option.hair_base_14_peppermint{background-image:url(spritesmith1.png);background-position:-1117px -561px;width:60px;height:60px}.hair_base_14_pgreen{background-image:url(spritesmith1.png);background-position:-1092px -637px;width:90px;height:90px}.customize-option.hair_base_14_pgreen{background-image:url(spritesmith1.png);background-position:-1117px -652px;width:60px;height:60px}.hair_base_14_pgreen2{background-image:url(spritesmith1.png);background-position:-1092px -728px;width:90px;height:90px}.customize-option.hair_base_14_pgreen2{background-image:url(spritesmith1.png);background-position:-1117px -743px;width:60px;height:60px}.hair_base_14_porange{background-image:url(spritesmith1.png);background-position:-1092px -819px;width:90px;height:90px}.customize-option.hair_base_14_porange{background-image:url(spritesmith1.png);background-position:-1117px -834px;width:60px;height:60px}.hair_base_14_porange2{background-image:url(spritesmith1.png);background-position:-1092px -910px;width:90px;height:90px}.customize-option.hair_base_14_porange2{background-image:url(spritesmith1.png);background-position:-1117px -925px;width:60px;height:60px}.hair_base_14_ppink{background-image:url(spritesmith1.png);background-position:-1092px -1001px;width:90px;height:90px}.customize-option.hair_base_14_ppink{background-image:url(spritesmith1.png);background-position:-1117px -1016px;width:60px;height:60px}.hair_base_14_ppink2{background-image:url(spritesmith1.png);background-position:0 -1092px;width:90px;height:90px}.customize-option.hair_base_14_ppink2{background-image:url(spritesmith1.png);background-position:-25px -1107px;width:60px;height:60px}.hair_base_14_ppurple{background-image:url(spritesmith1.png);background-position:-91px -1092px;width:90px;height:90px}.customize-option.hair_base_14_ppurple{background-image:url(spritesmith1.png);background-position:-116px -1107px;width:60px;height:60px}.hair_base_14_ppurple2{background-image:url(spritesmith1.png);background-position:-182px -1092px;width:90px;height:90px}.customize-option.hair_base_14_ppurple2{background-image:url(spritesmith1.png);background-position:-207px -1107px;width:60px;height:60px}.hair_base_14_pumpkin{background-image:url(spritesmith1.png);background-position:-273px -1092px;width:90px;height:90px}.customize-option.hair_base_14_pumpkin{background-image:url(spritesmith1.png);background-position:-298px -1107px;width:60px;height:60px}.hair_base_14_purple{background-image:url(spritesmith1.png);background-position:-364px -1092px;width:90px;height:90px}.customize-option.hair_base_14_purple{background-image:url(spritesmith1.png);background-position:-389px -1107px;width:60px;height:60px}.hair_base_14_pyellow{background-image:url(spritesmith1.png);background-position:-455px -1092px;width:90px;height:90px}.customize-option.hair_base_14_pyellow{background-image:url(spritesmith1.png);background-position:-480px -1107px;width:60px;height:60px}.hair_base_14_pyellow2{background-image:url(spritesmith1.png);background-position:-546px -1092px;width:90px;height:90px}.customize-option.hair_base_14_pyellow2{background-image:url(spritesmith1.png);background-position:-571px -1107px;width:60px;height:60px}.hair_base_14_rainbow{background-image:url(spritesmith1.png);background-position:-637px -1092px;width:90px;height:90px}.customize-option.hair_base_14_rainbow{background-image:url(spritesmith1.png);background-position:-662px -1107px;width:60px;height:60px}.hair_base_14_red{background-image:url(spritesmith1.png);background-position:-728px -1092px;width:90px;height:90px}.customize-option.hair_base_14_red{background-image:url(spritesmith1.png);background-position:-753px -1107px;width:60px;height:60px}.hair_base_14_snowy{background-image:url(spritesmith1.png);background-position:-819px -1092px;width:90px;height:90px}.customize-option.hair_base_14_snowy{background-image:url(spritesmith1.png);background-position:-844px -1107px;width:60px;height:60px}.hair_base_14_white{background-image:url(spritesmith1.png);background-position:-910px -1092px;width:90px;height:90px}.customize-option.hair_base_14_white{background-image:url(spritesmith1.png);background-position:-935px -1107px;width:60px;height:60px}.hair_base_14_winternight{background-image:url(spritesmith1.png);background-position:-1001px -1092px;width:90px;height:90px}.customize-option.hair_base_14_winternight{background-image:url(spritesmith1.png);background-position:-1026px -1107px;width:60px;height:60px}.hair_base_14_winterstar{background-image:url(spritesmith1.png);background-position:-1092px -1092px;width:90px;height:90px}.customize-option.hair_base_14_winterstar{background-image:url(spritesmith1.png);background-position:-1117px -1107px;width:60px;height:60px}.hair_base_14_yellow{background-image:url(spritesmith1.png);background-position:-1183px 0;width:90px;height:90px}.customize-option.hair_base_14_yellow{background-image:url(spritesmith1.png);background-position:-1208px -15px;width:60px;height:60px}.hair_base_14_zombie{background-image:url(spritesmith1.png);background-position:-1183px -91px;width:90px;height:90px}.customize-option.hair_base_14_zombie{background-image:url(spritesmith1.png);background-position:-1208px -106px;width:60px;height:60px}.hair_base_1_TRUred{background-image:url(spritesmith1.png);background-position:-1183px -182px;width:90px;height:90px}.customize-option.hair_base_1_TRUred{background-image:url(spritesmith1.png);background-position:-1208px -197px;width:60px;height:60px}.hair_base_1_aurora{background-image:url(spritesmith1.png);background-position:-1183px -273px;width:90px;height:90px}.customize-option.hair_base_1_aurora{background-image:url(spritesmith1.png);background-position:-1208px -288px;width:60px;height:60px}.hair_base_1_black{background-image:url(spritesmith1.png);background-position:-1183px -364px;width:90px;height:90px}.customize-option.hair_base_1_black{background-image:url(spritesmith1.png);background-position:-1208px -379px;width:60px;height:60px}.hair_base_1_blond{background-image:url(spritesmith1.png);background-position:-1183px -455px;width:90px;height:90px}.customize-option.hair_base_1_blond{background-image:url(spritesmith1.png);background-position:-1208px -470px;width:60px;height:60px}.hair_base_1_blue{background-image:url(spritesmith1.png);background-position:-1183px -546px;width:90px;height:90px}.customize-option.hair_base_1_blue{background-image:url(spritesmith1.png);background-position:-1208px -561px;width:60px;height:60px}.hair_base_1_brown{background-image:url(spritesmith1.png);background-position:-1183px -637px;width:90px;height:90px}.customize-option.hair_base_1_brown{background-image:url(spritesmith1.png);background-position:-1208px -652px;width:60px;height:60px}.hair_base_1_candycane{background-image:url(spritesmith1.png);background-position:-1183px -728px;width:90px;height:90px}.customize-option.hair_base_1_candycane{background-image:url(spritesmith1.png);background-position:-1208px -743px;width:60px;height:60px}.hair_base_1_candycorn{background-image:url(spritesmith1.png);background-position:-1183px -819px;width:90px;height:90px}.customize-option.hair_base_1_candycorn{background-image:url(spritesmith1.png);background-position:-1208px -834px;width:60px;height:60px}.hair_base_1_festive{background-image:url(spritesmith1.png);background-position:-1183px -910px;width:90px;height:90px}.customize-option.hair_base_1_festive{background-image:url(spritesmith1.png);background-position:-1208px -925px;width:60px;height:60px}.hair_base_1_frost{background-image:url(spritesmith1.png);background-position:-1183px -1001px;width:90px;height:90px}.customize-option.hair_base_1_frost{background-image:url(spritesmith1.png);background-position:-1208px -1016px;width:60px;height:60px}.hair_base_1_ghostwhite{background-image:url(spritesmith1.png);background-position:-1183px -1092px;width:90px;height:90px}.customize-option.hair_base_1_ghostwhite{background-image:url(spritesmith1.png);background-position:-1208px -1107px;width:60px;height:60px}.hair_base_1_green{background-image:url(spritesmith1.png);background-position:0 -1183px;width:90px;height:90px}.customize-option.hair_base_1_green{background-image:url(spritesmith1.png);background-position:-25px -1198px;width:60px;height:60px}.hair_base_1_halloween{background-image:url(spritesmith1.png);background-position:-91px -1183px;width:90px;height:90px}.customize-option.hair_base_1_halloween{background-image:url(spritesmith1.png);background-position:-116px -1198px;width:60px;height:60px}.hair_base_1_holly{background-image:url(spritesmith1.png);background-position:-182px -1183px;width:90px;height:90px}.customize-option.hair_base_1_holly{background-image:url(spritesmith1.png);background-position:-207px -1198px;width:60px;height:60px}.hair_base_1_hollygreen{background-image:url(spritesmith1.png);background-position:-273px -1183px;width:90px;height:90px}.customize-option.hair_base_1_hollygreen{background-image:url(spritesmith1.png);background-position:-298px -1198px;width:60px;height:60px}.hair_base_1_midnight{background-image:url(spritesmith1.png);background-position:-364px -1183px;width:90px;height:90px}.customize-option.hair_base_1_midnight{background-image:url(spritesmith1.png);background-position:-389px -1198px;width:60px;height:60px}.hair_base_1_pblue{background-image:url(spritesmith1.png);background-position:-455px -1183px;width:90px;height:90px}.customize-option.hair_base_1_pblue{background-image:url(spritesmith1.png);background-position:-480px -1198px;width:60px;height:60px}.hair_base_1_pblue2{background-image:url(spritesmith1.png);background-position:-546px -1183px;width:90px;height:90px}.customize-option.hair_base_1_pblue2{background-image:url(spritesmith1.png);background-position:-571px -1198px;width:60px;height:60px}.hair_base_1_peppermint{background-image:url(spritesmith1.png);background-position:-637px -1183px;width:90px;height:90px}.customize-option.hair_base_1_peppermint{background-image:url(spritesmith1.png);background-position:-662px -1198px;width:60px;height:60px}.hair_base_1_pgreen{background-image:url(spritesmith1.png);background-position:-728px -1183px;width:90px;height:90px}.customize-option.hair_base_1_pgreen{background-image:url(spritesmith1.png);background-position:-753px -1198px;width:60px;height:60px}.hair_base_1_pgreen2{background-image:url(spritesmith1.png);background-position:-819px -1183px;width:90px;height:90px}.customize-option.hair_base_1_pgreen2{background-image:url(spritesmith1.png);background-position:-844px -1198px;width:60px;height:60px}.hair_base_1_porange{background-image:url(spritesmith1.png);background-position:-910px -1183px;width:90px;height:90px}.customize-option.hair_base_1_porange{background-image:url(spritesmith1.png);background-position:-935px -1198px;width:60px;height:60px}.hair_base_1_porange2{background-image:url(spritesmith1.png);background-position:0 0;width:90px;height:90px}.customize-option.hair_base_1_porange2{background-image:url(spritesmith1.png);background-position:-25px -15px;width:60px;height:60px}.hair_base_1_ppink{background-image:url(spritesmith1.png);background-position:-1092px -1183px;width:90px;height:90px}.customize-option.hair_base_1_ppink{background-image:url(spritesmith1.png);background-position:-1117px -1198px;width:60px;height:60px}.hair_base_1_ppink2{background-image:url(spritesmith1.png);background-position:-1183px -1183px;width:90px;height:90px}.customize-option.hair_base_1_ppink2{background-image:url(spritesmith1.png);background-position:-1208px -1198px;width:60px;height:60px}.hair_base_1_ppurple{background-image:url(spritesmith1.png);background-position:-1274px 0;width:90px;height:90px}.customize-option.hair_base_1_ppurple{background-image:url(spritesmith1.png);background-position:-1299px -15px;width:60px;height:60px}.hair_base_1_ppurple2{background-image:url(spritesmith1.png);background-position:-1274px -91px;width:90px;height:90px}.customize-option.hair_base_1_ppurple2{background-image:url(spritesmith1.png);background-position:-1299px -106px;width:60px;height:60px}.hair_base_1_pumpkin{background-image:url(spritesmith1.png);background-position:-1274px -182px;width:90px;height:90px}.customize-option.hair_base_1_pumpkin{background-image:url(spritesmith1.png);background-position:-1299px -197px;width:60px;height:60px}.hair_base_1_purple{background-image:url(spritesmith1.png);background-position:-1274px -273px;width:90px;height:90px}.customize-option.hair_base_1_purple{background-image:url(spritesmith1.png);background-position:-1299px -288px;width:60px;height:60px}.hair_base_1_pyellow{background-image:url(spritesmith1.png);background-position:-1274px -364px;width:90px;height:90px}.customize-option.hair_base_1_pyellow{background-image:url(spritesmith1.png);background-position:-1299px -379px;width:60px;height:60px}.hair_base_1_pyellow2{background-image:url(spritesmith1.png);background-position:-1274px -455px;width:90px;height:90px}.customize-option.hair_base_1_pyellow2{background-image:url(spritesmith1.png);background-position:-1299px -470px;width:60px;height:60px}.hair_base_1_rainbow{background-image:url(spritesmith1.png);background-position:-1274px -546px;width:90px;height:90px}.customize-option.hair_base_1_rainbow{background-image:url(spritesmith1.png);background-position:-1299px -561px;width:60px;height:60px}.hair_base_1_red{background-image:url(spritesmith1.png);background-position:-1274px -637px;width:90px;height:90px}.customize-option.hair_base_1_red{background-image:url(spritesmith1.png);background-position:-1299px -652px;width:60px;height:60px}.hair_base_1_snowy{background-image:url(spritesmith1.png);background-position:-1274px -728px;width:90px;height:90px}.customize-option.hair_base_1_snowy{background-image:url(spritesmith1.png);background-position:-1299px -743px;width:60px;height:60px}.hair_base_1_white{background-image:url(spritesmith1.png);background-position:-1274px -819px;width:90px;height:90px}.customize-option.hair_base_1_white{background-image:url(spritesmith1.png);background-position:-1299px -834px;width:60px;height:60px}.hair_base_1_winternight{background-image:url(spritesmith1.png);background-position:-1274px -910px;width:90px;height:90px}.customize-option.hair_base_1_winternight{background-image:url(spritesmith1.png);background-position:-1299px -925px;width:60px;height:60px}.hair_base_1_winterstar{background-image:url(spritesmith1.png);background-position:-1274px -1001px;width:90px;height:90px}.customize-option.hair_base_1_winterstar{background-image:url(spritesmith1.png);background-position:-1299px -1016px;width:60px;height:60px}.hair_base_1_yellow{background-image:url(spritesmith1.png);background-position:-1274px -1092px;width:90px;height:90px}.customize-option.hair_base_1_yellow{background-image:url(spritesmith1.png);background-position:-1299px -1107px;width:60px;height:60px}.hair_base_1_zombie{background-image:url(spritesmith1.png);background-position:-1274px -1183px;width:90px;height:90px}.customize-option.hair_base_1_zombie{background-image:url(spritesmith1.png);background-position:-1299px -1198px;width:60px;height:60px}.hair_base_2_TRUred{background-image:url(spritesmith1.png);background-position:0 -1274px;width:90px;height:90px}.customize-option.hair_base_2_TRUred{background-image:url(spritesmith1.png);background-position:-25px -1289px;width:60px;height:60px}.hair_base_2_aurora{background-image:url(spritesmith1.png);background-position:-91px -1274px;width:90px;height:90px}.customize-option.hair_base_2_aurora{background-image:url(spritesmith1.png);background-position:-116px -1289px;width:60px;height:60px}.hair_base_2_black{background-image:url(spritesmith1.png);background-position:-182px -1274px;width:90px;height:90px}.customize-option.hair_base_2_black{background-image:url(spritesmith1.png);background-position:-207px -1289px;width:60px;height:60px}.hair_base_2_blond{background-image:url(spritesmith1.png);background-position:-273px -1274px;width:90px;height:90px}.customize-option.hair_base_2_blond{background-image:url(spritesmith1.png);background-position:-298px -1289px;width:60px;height:60px}.hair_base_2_blue{background-image:url(spritesmith1.png);background-position:-364px -1274px;width:90px;height:90px}.customize-option.hair_base_2_blue{background-image:url(spritesmith1.png);background-position:-389px -1289px;width:60px;height:60px}.hair_base_2_brown{background-image:url(spritesmith1.png);background-position:-455px -1274px;width:90px;height:90px}.customize-option.hair_base_2_brown{background-image:url(spritesmith1.png);background-position:-480px -1289px;width:60px;height:60px}.hair_base_2_candycane{background-image:url(spritesmith1.png);background-position:-546px -1274px;width:90px;height:90px}.customize-option.hair_base_2_candycane{background-image:url(spritesmith1.png);background-position:-571px -1289px;width:60px;height:60px}.hair_base_2_candycorn{background-image:url(spritesmith1.png);background-position:-637px -1274px;width:90px;height:90px}.customize-option.hair_base_2_candycorn{background-image:url(spritesmith1.png);background-position:-662px -1289px;width:60px;height:60px}.hair_base_2_festive{background-image:url(spritesmith1.png);background-position:-728px -1274px;width:90px;height:90px}.customize-option.hair_base_2_festive{background-image:url(spritesmith1.png);background-position:-753px -1289px;width:60px;height:60px}.hair_base_2_frost{background-image:url(spritesmith1.png);background-position:-819px -1274px;width:90px;height:90px}.customize-option.hair_base_2_frost{background-image:url(spritesmith1.png);background-position:-844px -1289px;width:60px;height:60px}.hair_base_2_ghostwhite{background-image:url(spritesmith1.png);background-position:-910px -1274px;width:90px;height:90px}.customize-option.hair_base_2_ghostwhite{background-image:url(spritesmith1.png);background-position:-935px -1289px;width:60px;height:60px}.hair_base_2_green{background-image:url(spritesmith1.png);background-position:-1001px -1274px;width:90px;height:90px}.customize-option.hair_base_2_green{background-image:url(spritesmith1.png);background-position:-1026px -1289px;width:60px;height:60px}.hair_base_2_halloween{background-image:url(spritesmith1.png);background-position:-1092px -1274px;width:90px;height:90px}.customize-option.hair_base_2_halloween{background-image:url(spritesmith1.png);background-position:-1117px -1289px;width:60px;height:60px}.hair_base_2_holly{background-image:url(spritesmith1.png);background-position:-1183px -1274px;width:90px;height:90px}.customize-option.hair_base_2_holly{background-image:url(spritesmith1.png);background-position:-1208px -1289px;width:60px;height:60px}.hair_base_2_hollygreen{background-image:url(spritesmith1.png);background-position:-1274px -1274px;width:90px;height:90px}.customize-option.hair_base_2_hollygreen{background-image:url(spritesmith1.png);background-position:-1299px -1289px;width:60px;height:60px}.hair_base_2_midnight{background-image:url(spritesmith1.png);background-position:-1365px 0;width:90px;height:90px}.customize-option.hair_base_2_midnight{background-image:url(spritesmith1.png);background-position:-1390px -15px;width:60px;height:60px}.hair_base_2_pblue{background-image:url(spritesmith1.png);background-position:-1365px -91px;width:90px;height:90px}.customize-option.hair_base_2_pblue{background-image:url(spritesmith1.png);background-position:-1390px -106px;width:60px;height:60px}.hair_base_2_pblue2{background-image:url(spritesmith1.png);background-position:-1365px -182px;width:90px;height:90px}.customize-option.hair_base_2_pblue2{background-image:url(spritesmith1.png);background-position:-1390px -197px;width:60px;height:60px}.hair_base_2_peppermint{background-image:url(spritesmith1.png);background-position:-1365px -273px;width:90px;height:90px}.customize-option.hair_base_2_peppermint{background-image:url(spritesmith1.png);background-position:-1390px -288px;width:60px;height:60px}.hair_base_2_pgreen{background-image:url(spritesmith1.png);background-position:-1365px -364px;width:90px;height:90px}.customize-option.hair_base_2_pgreen{background-image:url(spritesmith1.png);background-position:-1390px -379px;width:60px;height:60px}.hair_base_2_pgreen2{background-image:url(spritesmith1.png);background-position:-1365px -455px;width:90px;height:90px}.customize-option.hair_base_2_pgreen2{background-image:url(spritesmith1.png);background-position:-1390px -470px;width:60px;height:60px}.hair_base_2_porange{background-image:url(spritesmith1.png);background-position:-1365px -546px;width:90px;height:90px}.customize-option.hair_base_2_porange{background-image:url(spritesmith1.png);background-position:-1390px -561px;width:60px;height:60px}.hair_base_2_porange2{background-image:url(spritesmith1.png);background-position:-1365px -637px;width:90px;height:90px}.customize-option.hair_base_2_porange2{background-image:url(spritesmith1.png);background-position:-1390px -652px;width:60px;height:60px}.hair_base_2_ppink{background-image:url(spritesmith1.png);background-position:-1365px -728px;width:90px;height:90px}.customize-option.hair_base_2_ppink{background-image:url(spritesmith1.png);background-position:-1390px -743px;width:60px;height:60px}.hair_base_2_ppink2{background-image:url(spritesmith1.png);background-position:-1365px -819px;width:90px;height:90px}.customize-option.hair_base_2_ppink2{background-image:url(spritesmith1.png);background-position:-1390px -834px;width:60px;height:60px}.hair_base_2_ppurple{background-image:url(spritesmith1.png);background-position:-1365px -910px;width:90px;height:90px}.customize-option.hair_base_2_ppurple{background-image:url(spritesmith1.png);background-position:-1390px -925px;width:60px;height:60px}.hair_base_2_ppurple2{background-image:url(spritesmith1.png);background-position:-1365px -1001px;width:90px;height:90px}.customize-option.hair_base_2_ppurple2{background-image:url(spritesmith1.png);background-position:-1390px -1016px;width:60px;height:60px}.hair_base_2_pumpkin{background-image:url(spritesmith1.png);background-position:-1365px -1092px;width:90px;height:90px}.customize-option.hair_base_2_pumpkin{background-image:url(spritesmith1.png);background-position:-1390px -1107px;width:60px;height:60px}.hair_base_2_purple{background-image:url(spritesmith1.png);background-position:-1365px -1183px;width:90px;height:90px}.customize-option.hair_base_2_purple{background-image:url(spritesmith1.png);background-position:-1390px -1198px;width:60px;height:60px}.hair_base_2_pyellow{background-image:url(spritesmith1.png);background-position:-1365px -1274px;width:90px;height:90px}.customize-option.hair_base_2_pyellow{background-image:url(spritesmith1.png);background-position:-1390px -1289px;width:60px;height:60px}.hair_base_2_pyellow2{background-image:url(spritesmith1.png);background-position:0 -1365px;width:90px;height:90px}.customize-option.hair_base_2_pyellow2{background-image:url(spritesmith1.png);background-position:-25px -1380px;width:60px;height:60px}.hair_base_2_rainbow{background-image:url(spritesmith1.png);background-position:-91px -1365px;width:90px;height:90px}.customize-option.hair_base_2_rainbow{background-image:url(spritesmith1.png);background-position:-116px -1380px;width:60px;height:60px}.hair_base_2_red{background-image:url(spritesmith1.png);background-position:-182px -1365px;width:90px;height:90px}.customize-option.hair_base_2_red{background-image:url(spritesmith1.png);background-position:-207px -1380px;width:60px;height:60px}.hair_base_2_snowy{background-image:url(spritesmith1.png);background-position:-273px -1365px;width:90px;height:90px}.customize-option.hair_base_2_snowy{background-image:url(spritesmith1.png);background-position:-298px -1380px;width:60px;height:60px}.hair_base_2_white{background-image:url(spritesmith1.png);background-position:-364px -1365px;width:90px;height:90px}.customize-option.hair_base_2_white{background-image:url(spritesmith1.png);background-position:-389px -1380px;width:60px;height:60px}.hair_base_2_winternight{background-image:url(spritesmith1.png);background-position:-455px -1365px;width:90px;height:90px}.customize-option.hair_base_2_winternight{background-image:url(spritesmith1.png);background-position:-480px -1380px;width:60px;height:60px}.hair_base_2_winterstar{background-image:url(spritesmith1.png);background-position:-546px -1365px;width:90px;height:90px}.customize-option.hair_base_2_winterstar{background-image:url(spritesmith1.png);background-position:-571px -1380px;width:60px;height:60px}.hair_base_2_yellow{background-image:url(spritesmith1.png);background-position:-637px -1365px;width:90px;height:90px}.customize-option.hair_base_2_yellow{background-image:url(spritesmith1.png);background-position:-662px -1380px;width:60px;height:60px}.hair_base_2_zombie{background-image:url(spritesmith1.png);background-position:-728px -1365px;width:90px;height:90px}.customize-option.hair_base_2_zombie{background-image:url(spritesmith1.png);background-position:-753px -1380px;width:60px;height:60px}.hair_base_3_TRUred{background-image:url(spritesmith1.png);background-position:-819px -1365px;width:90px;height:90px}.customize-option.hair_base_3_TRUred{background-image:url(spritesmith1.png);background-position:-844px -1380px;width:60px;height:60px}.hair_base_3_aurora{background-image:url(spritesmith1.png);background-position:-910px -1365px;width:90px;height:90px}.customize-option.hair_base_3_aurora{background-image:url(spritesmith1.png);background-position:-935px -1380px;width:60px;height:60px}.hair_base_3_black{background-image:url(spritesmith1.png);background-position:-1001px -1365px;width:90px;height:90px}.customize-option.hair_base_3_black{background-image:url(spritesmith1.png);background-position:-1026px -1380px;width:60px;height:60px}.hair_base_3_blond{background-image:url(spritesmith1.png);background-position:-1092px -1365px;width:90px;height:90px}.customize-option.hair_base_3_blond{background-image:url(spritesmith1.png);background-position:-1117px -1380px;width:60px;height:60px}.hair_base_3_blue{background-image:url(spritesmith1.png);background-position:-1183px -1365px;width:90px;height:90px}.customize-option.hair_base_3_blue{background-image:url(spritesmith1.png);background-position:-1208px -1380px;width:60px;height:60px}.hair_base_3_brown{background-image:url(spritesmith1.png);background-position:-1274px -1365px;width:90px;height:90px}.customize-option.hair_base_3_brown{background-image:url(spritesmith1.png);background-position:-1299px -1380px;width:60px;height:60px}.hair_base_3_candycane{background-image:url(spritesmith1.png);background-position:-1365px -1365px;width:90px;height:90px}.customize-option.hair_base_3_candycane{background-image:url(spritesmith1.png);background-position:-1390px -1380px;width:60px;height:60px}.hair_base_3_candycorn{background-image:url(spritesmith1.png);background-position:-1456px 0;width:90px;height:90px}.customize-option.hair_base_3_candycorn{background-image:url(spritesmith1.png);background-position:-1481px -15px;width:60px;height:60px}.hair_base_3_festive{background-image:url(spritesmith1.png);background-position:-1456px -91px;width:90px;height:90px}.customize-option.hair_base_3_festive{background-image:url(spritesmith1.png);background-position:-1481px -106px;width:60px;height:60px}.hair_base_3_frost{background-image:url(spritesmith1.png);background-position:-1456px -182px;width:90px;height:90px}.customize-option.hair_base_3_frost{background-image:url(spritesmith1.png);background-position:-1481px -197px;width:60px;height:60px}.hair_base_3_ghostwhite{background-image:url(spritesmith1.png);background-position:-1456px -273px;width:90px;height:90px}.customize-option.hair_base_3_ghostwhite{background-image:url(spritesmith1.png);background-position:-1481px -288px;width:60px;height:60px}.hair_base_3_green{background-image:url(spritesmith1.png);background-position:-1456px -364px;width:90px;height:90px}.customize-option.hair_base_3_green{background-image:url(spritesmith1.png);background-position:-1481px -379px;width:60px;height:60px}.hair_base_3_halloween{background-image:url(spritesmith1.png);background-position:-1456px -455px;width:90px;height:90px}.customize-option.hair_base_3_halloween{background-image:url(spritesmith1.png);background-position:-1481px -470px;width:60px;height:60px}.hair_base_3_holly{background-image:url(spritesmith1.png);background-position:-1456px -546px;width:90px;height:90px}.customize-option.hair_base_3_holly{background-image:url(spritesmith1.png);background-position:-1481px -561px;width:60px;height:60px}.hair_base_3_hollygreen{background-image:url(spritesmith1.png);background-position:-1456px -637px;width:90px;height:90px}.customize-option.hair_base_3_hollygreen{background-image:url(spritesmith1.png);background-position:-1481px -652px;width:60px;height:60px}.hair_base_3_midnight{background-image:url(spritesmith1.png);background-position:-1456px -728px;width:90px;height:90px}.customize-option.hair_base_3_midnight{background-image:url(spritesmith1.png);background-position:-1481px -743px;width:60px;height:60px}.hair_base_3_pblue{background-image:url(spritesmith1.png);background-position:-1456px -819px;width:90px;height:90px}.customize-option.hair_base_3_pblue{background-image:url(spritesmith1.png);background-position:-1481px -834px;width:60px;height:60px}.hair_base_3_pblue2{background-image:url(spritesmith1.png);background-position:-1456px -910px;width:90px;height:90px}.customize-option.hair_base_3_pblue2{background-image:url(spritesmith1.png);background-position:-1481px -925px;width:60px;height:60px}.hair_base_3_peppermint{background-image:url(spritesmith1.png);background-position:-1456px -1001px;width:90px;height:90px}.customize-option.hair_base_3_peppermint{background-image:url(spritesmith1.png);background-position:-1481px -1016px;width:60px;height:60px}.hair_base_3_pgreen{background-image:url(spritesmith1.png);background-position:-1456px -1092px;width:90px;height:90px}.customize-option.hair_base_3_pgreen{background-image:url(spritesmith1.png);background-position:-1481px -1107px;width:60px;height:60px}.hair_base_3_pgreen2{background-image:url(spritesmith1.png);background-position:-1456px -1183px;width:90px;height:90px}.customize-option.hair_base_3_pgreen2{background-image:url(spritesmith1.png);background-position:-1481px -1198px;width:60px;height:60px}.hair_base_3_porange{background-image:url(spritesmith1.png);background-position:-1456px -1274px;width:90px;height:90px}.customize-option.hair_base_3_porange{background-image:url(spritesmith1.png);background-position:-1481px -1289px;width:60px;height:60px}.hair_base_3_porange2{background-image:url(spritesmith1.png);background-position:-1456px -1365px;width:90px;height:90px}.customize-option.hair_base_3_porange2{background-image:url(spritesmith1.png);background-position:-1481px -1380px;width:60px;height:60px}.hair_base_3_ppink{background-image:url(spritesmith1.png);background-position:0 -1456px;width:90px;height:90px}.customize-option.hair_base_3_ppink{background-image:url(spritesmith1.png);background-position:-25px -1471px;width:60px;height:60px}.hair_base_3_ppink2{background-image:url(spritesmith1.png);background-position:-91px -1456px;width:90px;height:90px}.customize-option.hair_base_3_ppink2{background-image:url(spritesmith1.png);background-position:-116px -1471px;width:60px;height:60px}.hair_base_3_ppurple{background-image:url(spritesmith1.png);background-position:-182px -1456px;width:90px;height:90px}.customize-option.hair_base_3_ppurple{background-image:url(spritesmith1.png);background-position:-207px -1471px;width:60px;height:60px}.hair_base_3_ppurple2{background-image:url(spritesmith1.png);background-position:-273px -1456px;width:90px;height:90px}.customize-option.hair_base_3_ppurple2{background-image:url(spritesmith1.png);background-position:-298px -1471px;width:60px;height:60px}.hair_base_3_pumpkin{background-image:url(spritesmith1.png);background-position:-364px -1456px;width:90px;height:90px}.customize-option.hair_base_3_pumpkin{background-image:url(spritesmith1.png);background-position:-389px -1471px;width:60px;height:60px}.hair_base_3_purple{background-image:url(spritesmith1.png);background-position:-455px -1456px;width:90px;height:90px}.customize-option.hair_base_3_purple{background-image:url(spritesmith1.png);background-position:-480px -1471px;width:60px;height:60px}.hair_base_3_pyellow{background-image:url(spritesmith1.png);background-position:-546px -1456px;width:90px;height:90px}.customize-option.hair_base_3_pyellow{background-image:url(spritesmith1.png);background-position:-571px -1471px;width:60px;height:60px}.hair_base_3_pyellow2{background-image:url(spritesmith1.png);background-position:-637px -1456px;width:90px;height:90px}.customize-option.hair_base_3_pyellow2{background-image:url(spritesmith1.png);background-position:-662px -1471px;width:60px;height:60px}.hair_base_3_rainbow{background-image:url(spritesmith1.png);background-position:-728px -1456px;width:90px;height:90px}.customize-option.hair_base_3_rainbow{background-image:url(spritesmith1.png);background-position:-753px -1471px;width:60px;height:60px}.hair_base_3_red{background-image:url(spritesmith1.png);background-position:-819px -1456px;width:90px;height:90px}.customize-option.hair_base_3_red{background-image:url(spritesmith1.png);background-position:-844px -1471px;width:60px;height:60px}.hair_base_3_snowy{background-image:url(spritesmith1.png);background-position:-910px -1456px;width:90px;height:90px}.customize-option.hair_base_3_snowy{background-image:url(spritesmith1.png);background-position:-935px -1471px;width:60px;height:60px}.hair_base_3_white{background-image:url(spritesmith1.png);background-position:-1001px -1456px;width:90px;height:90px}.customize-option.hair_base_3_white{background-image:url(spritesmith1.png);background-position:-1026px -1471px;width:60px;height:60px}.hair_base_3_winternight{background-image:url(spritesmith1.png);background-position:-1092px -1456px;width:90px;height:90px}.customize-option.hair_base_3_winternight{background-image:url(spritesmith1.png);background-position:-1117px -1471px;width:60px;height:60px}.hair_base_3_winterstar{background-image:url(spritesmith1.png);background-position:-1183px -1456px;width:90px;height:90px}.customize-option.hair_base_3_winterstar{background-image:url(spritesmith1.png);background-position:-1208px -1471px;width:60px;height:60px}.hair_base_3_yellow{background-image:url(spritesmith1.png);background-position:-1274px -1456px;width:90px;height:90px}.customize-option.hair_base_3_yellow{background-image:url(spritesmith1.png);background-position:-1299px -1471px;width:60px;height:60px}.hair_base_3_zombie{background-image:url(spritesmith1.png);background-position:-1365px -1456px;width:90px;height:90px}.customize-option.hair_base_3_zombie{background-image:url(spritesmith1.png);background-position:-1390px -1471px;width:60px;height:60px}.hair_base_4_TRUred{background-image:url(spritesmith1.png);background-position:-1456px -1456px;width:90px;height:90px}.customize-option.hair_base_4_TRUred{background-image:url(spritesmith1.png);background-position:-1481px -1471px;width:60px;height:60px}.hair_base_4_aurora{background-image:url(spritesmith1.png);background-position:-1547px 0;width:90px;height:90px}.customize-option.hair_base_4_aurora{background-image:url(spritesmith1.png);background-position:-1572px -15px;width:60px;height:60px}.hair_base_4_black{background-image:url(spritesmith1.png);background-position:-1547px -91px;width:90px;height:90px}.customize-option.hair_base_4_black{background-image:url(spritesmith1.png);background-position:-1572px -106px;width:60px;height:60px}.hair_base_4_blond{background-image:url(spritesmith1.png);background-position:-1547px -182px;width:90px;height:90px}.customize-option.hair_base_4_blond{background-image:url(spritesmith1.png);background-position:-1572px -197px;width:60px;height:60px}.hair_base_4_blue{background-image:url(spritesmith1.png);background-position:-1547px -273px;width:90px;height:90px}.customize-option.hair_base_4_blue{background-image:url(spritesmith1.png);background-position:-1572px -288px;width:60px;height:60px}.hair_base_4_brown{background-image:url(spritesmith1.png);background-position:-1547px -364px;width:90px;height:90px}.customize-option.hair_base_4_brown{background-image:url(spritesmith1.png);background-position:-1572px -379px;width:60px;height:60px}.hair_base_4_candycane{background-image:url(spritesmith1.png);background-position:-1547px -455px;width:90px;height:90px}.customize-option.hair_base_4_candycane{background-image:url(spritesmith1.png);background-position:-1572px -470px;width:60px;height:60px}.hair_base_4_candycorn{background-image:url(spritesmith1.png);background-position:-1547px -546px;width:90px;height:90px}.customize-option.hair_base_4_candycorn{background-image:url(spritesmith1.png);background-position:-1572px -561px;width:60px;height:60px}.hair_base_4_festive{background-image:url(spritesmith1.png);background-position:-1547px -637px;width:90px;height:90px}.customize-option.hair_base_4_festive{background-image:url(spritesmith1.png);background-position:-1572px -652px;width:60px;height:60px}.hair_base_4_frost{background-image:url(spritesmith1.png);background-position:-1547px -728px;width:90px;height:90px}.customize-option.hair_base_4_frost{background-image:url(spritesmith1.png);background-position:-1572px -743px;width:60px;height:60px}.hair_base_4_ghostwhite{background-image:url(spritesmith1.png);background-position:-1547px -819px;width:90px;height:90px}.customize-option.hair_base_4_ghostwhite{background-image:url(spritesmith1.png);background-position:-1572px -834px;width:60px;height:60px}.hair_base_4_green{background-image:url(spritesmith1.png);background-position:-1547px -910px;width:90px;height:90px}.customize-option.hair_base_4_green{background-image:url(spritesmith1.png);background-position:-1572px -925px;width:60px;height:60px}.hair_base_4_halloween{background-image:url(spritesmith1.png);background-position:-1547px -1001px;width:90px;height:90px}.customize-option.hair_base_4_halloween{background-image:url(spritesmith1.png);background-position:-1572px -1016px;width:60px;height:60px}.hair_base_4_holly{background-image:url(spritesmith1.png);background-position:-1547px -1092px;width:90px;height:90px}.customize-option.hair_base_4_holly{background-image:url(spritesmith1.png);background-position:-1572px -1107px;width:60px;height:60px}.hair_base_4_hollygreen{background-image:url(spritesmith1.png);background-position:-1547px -1183px;width:90px;height:90px}.customize-option.hair_base_4_hollygreen{background-image:url(spritesmith1.png);background-position:-1572px -1198px;width:60px;height:60px}.hair_base_4_midnight{background-image:url(spritesmith1.png);background-position:-1547px -1274px;width:90px;height:90px}.customize-option.hair_base_4_midnight{background-image:url(spritesmith1.png);background-position:-1572px -1289px;width:60px;height:60px}.hair_base_4_pblue{background-image:url(spritesmith1.png);background-position:-1547px -1365px;width:90px;height:90px}.customize-option.hair_base_4_pblue{background-image:url(spritesmith1.png);background-position:-1572px -1380px;width:60px;height:60px}.hair_base_4_pblue2{background-image:url(spritesmith1.png);background-position:-1547px -1456px;width:90px;height:90px}.customize-option.hair_base_4_pblue2{background-image:url(spritesmith1.png);background-position:-1572px -1471px;width:60px;height:60px}.hair_base_4_peppermint{background-image:url(spritesmith1.png);background-position:0 -1547px;width:90px;height:90px}.customize-option.hair_base_4_peppermint{background-image:url(spritesmith1.png);background-position:-25px -1562px;width:60px;height:60px}.hair_base_4_pgreen{background-image:url(spritesmith1.png);background-position:-91px -1547px;width:90px;height:90px}.customize-option.hair_base_4_pgreen{background-image:url(spritesmith1.png);background-position:-116px -1562px;width:60px;height:60px}.hair_base_4_pgreen2{background-image:url(spritesmith1.png);background-position:-182px -1547px;width:90px;height:90px}.customize-option.hair_base_4_pgreen2{background-image:url(spritesmith1.png);background-position:-207px -1562px;width:60px;height:60px}.hair_base_4_porange{background-image:url(spritesmith1.png);background-position:-273px -1547px;width:90px;height:90px}.customize-option.hair_base_4_porange{background-image:url(spritesmith1.png);background-position:-298px -1562px;width:60px;height:60px}.hair_base_4_porange2{background-image:url(spritesmith1.png);background-position:-364px -1547px;width:90px;height:90px}.customize-option.hair_base_4_porange2{background-image:url(spritesmith1.png);background-position:-389px -1562px;width:60px;height:60px}.hair_base_4_ppink{background-image:url(spritesmith1.png);background-position:-455px -1547px;width:90px;height:90px}.customize-option.hair_base_4_ppink{background-image:url(spritesmith1.png);background-position:-480px -1562px;width:60px;height:60px}.hair_base_4_ppink2{background-image:url(spritesmith1.png);background-position:-546px -1547px;width:90px;height:90px}.customize-option.hair_base_4_ppink2{background-image:url(spritesmith1.png);background-position:-571px -1562px;width:60px;height:60px}.hair_base_4_ppurple{background-image:url(spritesmith1.png);background-position:-637px -1547px;width:90px;height:90px}.customize-option.hair_base_4_ppurple{background-image:url(spritesmith1.png);background-position:-662px -1562px;width:60px;height:60px}.hair_base_4_ppurple2{background-image:url(spritesmith1.png);background-position:-728px -1547px;width:90px;height:90px}.customize-option.hair_base_4_ppurple2{background-image:url(spritesmith1.png);background-position:-753px -1562px;width:60px;height:60px}.hair_base_4_pumpkin{background-image:url(spritesmith1.png);background-position:-819px -1547px;width:90px;height:90px}.customize-option.hair_base_4_pumpkin{background-image:url(spritesmith1.png);background-position:-844px -1562px;width:60px;height:60px}.hair_base_4_purple{background-image:url(spritesmith1.png);background-position:-910px -1547px;width:90px;height:90px}.customize-option.hair_base_4_purple{background-image:url(spritesmith1.png);background-position:-935px -1562px;width:60px;height:60px}.hair_base_4_pyellow{background-image:url(spritesmith1.png);background-position:-1001px -1547px;width:90px;height:90px}.customize-option.hair_base_4_pyellow{background-image:url(spritesmith1.png);background-position:-1026px -1562px;width:60px;height:60px}.hair_base_4_pyellow2{background-image:url(spritesmith1.png);background-position:-1092px -1547px;width:90px;height:90px}.customize-option.hair_base_4_pyellow2{background-image:url(spritesmith1.png);background-position:-1117px -1562px;width:60px;height:60px}.hair_base_4_rainbow{background-image:url(spritesmith1.png);background-position:-1183px -1547px;width:90px;height:90px}.customize-option.hair_base_4_rainbow{background-image:url(spritesmith1.png);background-position:-1208px -1562px;width:60px;height:60px}.hair_base_4_red{background-image:url(spritesmith1.png);background-position:-1274px -1547px;width:90px;height:90px}.customize-option.hair_base_4_red{background-image:url(spritesmith1.png);background-position:-1299px -1562px;width:60px;height:60px}.hair_base_4_snowy{background-image:url(spritesmith1.png);background-position:-1365px -1547px;width:90px;height:90px}.customize-option.hair_base_4_snowy{background-image:url(spritesmith1.png);background-position:-1390px -1562px;width:60px;height:60px}.hair_base_4_white{background-image:url(spritesmith1.png);background-position:-1456px -1547px;width:90px;height:90px}.customize-option.hair_base_4_white{background-image:url(spritesmith1.png);background-position:-1481px -1562px;width:60px;height:60px}.hair_base_4_winternight{background-image:url(spritesmith1.png);background-position:-1547px -1547px;width:90px;height:90px}.customize-option.hair_base_4_winternight{background-image:url(spritesmith1.png);background-position:-1572px -1562px;width:60px;height:60px}.hair_base_4_winterstar{background-image:url(spritesmith1.png);background-position:-1638px 0;width:90px;height:90px}.customize-option.hair_base_4_winterstar{background-image:url(spritesmith1.png);background-position:-1663px -15px;width:60px;height:60px}.hair_base_4_yellow{background-image:url(spritesmith1.png);background-position:-1638px -91px;width:90px;height:90px}.customize-option.hair_base_4_yellow{background-image:url(spritesmith1.png);background-position:-1663px -106px;width:60px;height:60px}.hair_base_4_zombie{background-image:url(spritesmith1.png);background-position:-1638px -182px;width:90px;height:90px}.customize-option.hair_base_4_zombie{background-image:url(spritesmith1.png);background-position:-1663px -197px;width:60px;height:60px}.hair_base_5_TRUred{background-image:url(spritesmith1.png);background-position:-1638px -273px;width:90px;height:90px}.customize-option.hair_base_5_TRUred{background-image:url(spritesmith1.png);background-position:-1663px -288px;width:60px;height:60px}.hair_base_5_aurora{background-image:url(spritesmith1.png);background-position:-1638px -364px;width:90px;height:90px}.customize-option.hair_base_5_aurora{background-image:url(spritesmith1.png);background-position:-1663px -379px;width:60px;height:60px}.hair_base_5_black{background-image:url(spritesmith1.png);background-position:-1638px -455px;width:90px;height:90px}.customize-option.hair_base_5_black{background-image:url(spritesmith1.png);background-position:-1663px -470px;width:60px;height:60px}.hair_base_5_blond{background-image:url(spritesmith1.png);background-position:-1638px -546px;width:90px;height:90px}.customize-option.hair_base_5_blond{background-image:url(spritesmith1.png);background-position:-1663px -561px;width:60px;height:60px}.hair_base_5_blue{background-image:url(spritesmith1.png);background-position:-1638px -637px;width:90px;height:90px}.customize-option.hair_base_5_blue{background-image:url(spritesmith1.png);background-position:-1663px -652px;width:60px;height:60px}.hair_base_5_brown{background-image:url(spritesmith1.png);background-position:-1638px -728px;width:90px;height:90px}.customize-option.hair_base_5_brown{background-image:url(spritesmith1.png);background-position:-1663px -743px;width:60px;height:60px}.hair_base_5_candycane{background-image:url(spritesmith1.png);background-position:-1638px -819px;width:90px;height:90px}.customize-option.hair_base_5_candycane{background-image:url(spritesmith1.png);background-position:-1663px -834px;width:60px;height:60px}.hair_base_5_candycorn{background-image:url(spritesmith1.png);background-position:-1638px -910px;width:90px;height:90px}.customize-option.hair_base_5_candycorn{background-image:url(spritesmith1.png);background-position:-1663px -925px;width:60px;height:60px}.hair_base_5_festive{background-image:url(spritesmith1.png);background-position:-1638px -1001px;width:90px;height:90px}.customize-option.hair_base_5_festive{background-image:url(spritesmith1.png);background-position:-1663px -1016px;width:60px;height:60px}.hair_base_5_frost{background-image:url(spritesmith1.png);background-position:-1638px -1092px;width:90px;height:90px}.customize-option.hair_base_5_frost{background-image:url(spritesmith1.png);background-position:-1663px -1107px;width:60px;height:60px}.hair_base_5_ghostwhite{background-image:url(spritesmith1.png);background-position:-1638px -1183px;width:90px;height:90px}.customize-option.hair_base_5_ghostwhite{background-image:url(spritesmith1.png);background-position:-1663px -1198px;width:60px;height:60px}.hair_base_5_green{background-image:url(spritesmith1.png);background-position:-1638px -1274px;width:90px;height:90px}.customize-option.hair_base_5_green{background-image:url(spritesmith1.png);background-position:-1663px -1289px;width:60px;height:60px}.hair_base_5_halloween{background-image:url(spritesmith1.png);background-position:-1638px -1365px;width:90px;height:90px}.customize-option.hair_base_5_halloween{background-image:url(spritesmith1.png);background-position:-1663px -1380px;width:60px;height:60px}.hair_base_5_holly{background-image:url(spritesmith1.png);background-position:-1638px -1456px;width:90px;height:90px}.customize-option.hair_base_5_holly{background-image:url(spritesmith1.png);background-position:-1663px -1471px;width:60px;height:60px}.hair_base_5_hollygreen{background-image:url(spritesmith1.png);background-position:-1638px -1547px;width:90px;height:90px}.customize-option.hair_base_5_hollygreen{background-image:url(spritesmith1.png);background-position:-1663px -1562px;width:60px;height:60px}.hair_base_5_midnight{background-image:url(spritesmith1.png);background-position:0 -1638px;width:90px;height:90px}.customize-option.hair_base_5_midnight{background-image:url(spritesmith1.png);background-position:-25px -1653px;width:60px;height:60px}.hair_base_5_pblue{background-image:url(spritesmith1.png);background-position:-91px -1638px;width:90px;height:90px}.customize-option.hair_base_5_pblue{background-image:url(spritesmith1.png);background-position:-116px -1653px;width:60px;height:60px}.hair_base_5_pblue2{background-image:url(spritesmith1.png);background-position:-182px -1638px;width:90px;height:90px}.customize-option.hair_base_5_pblue2{background-image:url(spritesmith1.png);background-position:-207px -1653px;width:60px;height:60px}.hair_base_5_peppermint{background-image:url(spritesmith1.png);background-position:-273px -1638px;width:90px;height:90px}.customize-option.hair_base_5_peppermint{background-image:url(spritesmith1.png);background-position:-298px -1653px;width:60px;height:60px}.hair_base_5_pgreen{background-image:url(spritesmith1.png);background-position:-364px -1638px;width:90px;height:90px}.customize-option.hair_base_5_pgreen{background-image:url(spritesmith1.png);background-position:-389px -1653px;width:60px;height:60px}.hair_base_5_pgreen2{background-image:url(spritesmith1.png);background-position:-455px -1638px;width:90px;height:90px}.customize-option.hair_base_5_pgreen2{background-image:url(spritesmith1.png);background-position:-480px -1653px;width:60px;height:60px}.hair_base_5_porange{background-image:url(spritesmith1.png);background-position:-546px -1638px;width:90px;height:90px}.customize-option.hair_base_5_porange{background-image:url(spritesmith1.png);background-position:-571px -1653px;width:60px;height:60px}.hair_base_5_porange2{background-image:url(spritesmith1.png);background-position:-637px -1638px;width:90px;height:90px}.customize-option.hair_base_5_porange2{background-image:url(spritesmith1.png);background-position:-662px -1653px;width:60px;height:60px}.hair_base_5_ppink{background-image:url(spritesmith1.png);background-position:-728px -1638px;width:90px;height:90px}.customize-option.hair_base_5_ppink{background-image:url(spritesmith1.png);background-position:-753px -1653px;width:60px;height:60px}.hair_base_5_ppink2{background-image:url(spritesmith1.png);background-position:-819px -1638px;width:90px;height:90px}.customize-option.hair_base_5_ppink2{background-image:url(spritesmith1.png);background-position:-844px -1653px;width:60px;height:60px}.hair_base_5_ppurple{background-image:url(spritesmith1.png);background-position:-910px -1638px;width:90px;height:90px}.customize-option.hair_base_5_ppurple{background-image:url(spritesmith1.png);background-position:-935px -1653px;width:60px;height:60px}.hair_base_5_ppurple2{background-image:url(spritesmith1.png);background-position:-1001px -1638px;width:90px;height:90px}.customize-option.hair_base_5_ppurple2{background-image:url(spritesmith1.png);background-position:-1026px -1653px;width:60px;height:60px}.hair_base_5_pumpkin{background-image:url(spritesmith1.png);background-position:-1092px -1638px;width:90px;height:90px}.customize-option.hair_base_5_pumpkin{background-image:url(spritesmith1.png);background-position:-1117px -1653px;width:60px;height:60px}.hair_base_5_purple{background-image:url(spritesmith1.png);background-position:-1183px -1638px;width:90px;height:90px}.customize-option.hair_base_5_purple{background-image:url(spritesmith1.png);background-position:-1208px -1653px;width:60px;height:60px}.hair_base_5_pyellow{background-image:url(spritesmith1.png);background-position:-1274px -1638px;width:90px;height:90px}.customize-option.hair_base_5_pyellow{background-image:url(spritesmith1.png);background-position:-1299px -1653px;width:60px;height:60px}.hair_base_5_pyellow2{background-image:url(spritesmith1.png);background-position:-1365px -1638px;width:90px;height:90px}.customize-option.hair_base_5_pyellow2{background-image:url(spritesmith1.png);background-position:-1390px -1653px;width:60px;height:60px}.hair_base_5_rainbow{background-image:url(spritesmith1.png);background-position:-1456px -1638px;width:90px;height:90px}.customize-option.hair_base_5_rainbow{background-image:url(spritesmith1.png);background-position:-1481px -1653px;width:60px;height:60px}.hair_base_5_red{background-image:url(spritesmith1.png);background-position:-1547px -1638px;width:90px;height:90px}.customize-option.hair_base_5_red{background-image:url(spritesmith1.png);background-position:-1572px -1653px;width:60px;height:60px}.hair_base_5_snowy{background-image:url(spritesmith1.png);background-position:-1638px -1638px;width:90px;height:90px}.customize-option.hair_base_5_snowy{background-image:url(spritesmith1.png);background-position:-1663px -1653px;width:60px;height:60px}.hair_base_5_white{background-image:url(spritesmith1.png);background-position:-1729px 0;width:90px;height:90px}.customize-option.hair_base_5_white{background-image:url(spritesmith1.png);background-position:-1754px -15px;width:60px;height:60px}.hair_base_5_winternight{background-image:url(spritesmith1.png);background-position:-1729px -91px;width:90px;height:90px}.customize-option.hair_base_5_winternight{background-image:url(spritesmith1.png);background-position:-1754px -106px;width:60px;height:60px}.hair_base_5_winterstar{background-image:url(spritesmith1.png);background-position:-1729px -182px;width:90px;height:90px}.customize-option.hair_base_5_winterstar{background-image:url(spritesmith1.png);background-position:-1754px -197px;width:60px;height:60px}.hair_base_5_yellow{background-image:url(spritesmith1.png);background-position:-1729px -273px;width:90px;height:90px}.customize-option.hair_base_5_yellow{background-image:url(spritesmith1.png);background-position:-1754px -288px;width:60px;height:60px}.hair_base_5_zombie{background-image:url(spritesmith1.png);background-position:-1729px -364px;width:90px;height:90px}.customize-option.hair_base_5_zombie{background-image:url(spritesmith1.png);background-position:-1754px -379px;width:60px;height:60px}.hair_base_6_TRUred{background-image:url(spritesmith1.png);background-position:-1729px -455px;width:90px;height:90px}.customize-option.hair_base_6_TRUred{background-image:url(spritesmith1.png);background-position:-1754px -470px;width:60px;height:60px}.hair_base_6_aurora{background-image:url(spritesmith1.png);background-position:-1729px -546px;width:90px;height:90px}.customize-option.hair_base_6_aurora{background-image:url(spritesmith1.png);background-position:-1754px -561px;width:60px;height:60px}.hair_base_6_black{background-image:url(spritesmith1.png);background-position:-1729px -637px;width:90px;height:90px}.customize-option.hair_base_6_black{background-image:url(spritesmith1.png);background-position:-1754px -652px;width:60px;height:60px}.hair_base_6_blond{background-image:url(spritesmith1.png);background-position:-1729px -728px;width:90px;height:90px}.customize-option.hair_base_6_blond{background-image:url(spritesmith1.png);background-position:-1754px -743px;width:60px;height:60px}.hair_base_6_blue{background-image:url(spritesmith1.png);background-position:-1729px -819px;width:90px;height:90px}.customize-option.hair_base_6_blue{background-image:url(spritesmith1.png);background-position:-1754px -834px;width:60px;height:60px}.hair_base_6_brown{background-image:url(spritesmith1.png);background-position:-1729px -910px;width:90px;height:90px}.customize-option.hair_base_6_brown{background-image:url(spritesmith1.png);background-position:-1754px -925px;width:60px;height:60px}.hair_base_6_candycane{background-image:url(spritesmith1.png);background-position:-1729px -1001px;width:90px;height:90px}.customize-option.hair_base_6_candycane{background-image:url(spritesmith1.png);background-position:-1754px -1016px;width:60px;height:60px}.hair_base_6_candycorn{background-image:url(spritesmith1.png);background-position:-1729px -1092px;width:90px;height:90px}.customize-option.hair_base_6_candycorn{background-image:url(spritesmith1.png);background-position:-1754px -1107px;width:60px;height:60px}.hair_base_6_festive{background-image:url(spritesmith1.png);background-position:-1729px -1183px;width:90px;height:90px}.customize-option.hair_base_6_festive{background-image:url(spritesmith1.png);background-position:-1754px -1198px;width:60px;height:60px}.hair_base_6_frost{background-image:url(spritesmith1.png);background-position:-1729px -1274px;width:90px;height:90px}.customize-option.hair_base_6_frost{background-image:url(spritesmith1.png);background-position:-1754px -1289px;width:60px;height:60px}.hair_base_6_ghostwhite{background-image:url(spritesmith1.png);background-position:-1729px -1365px;width:90px;height:90px}.customize-option.hair_base_6_ghostwhite{background-image:url(spritesmith1.png);background-position:-1754px -1380px;width:60px;height:60px}.hair_base_6_green{background-image:url(spritesmith1.png);background-position:-1729px -1456px;width:90px;height:90px}.customize-option.hair_base_6_green{background-image:url(spritesmith1.png);background-position:-1754px -1471px;width:60px;height:60px}.hair_base_6_halloween{background-image:url(spritesmith1.png);background-position:-1729px -1547px;width:90px;height:90px}.customize-option.hair_base_6_halloween{background-image:url(spritesmith1.png);background-position:-1754px -1562px;width:60px;height:60px}.hair_base_6_holly{background-image:url(spritesmith1.png);background-position:-1729px -1638px;width:90px;height:90px}.customize-option.hair_base_6_holly{background-image:url(spritesmith1.png);background-position:-1754px -1653px;width:60px;height:60px}.hair_base_6_hollygreen{background-image:url(spritesmith1.png);background-position:0 -1729px;width:90px;height:90px}.customize-option.hair_base_6_hollygreen{background-image:url(spritesmith1.png);background-position:-25px -1744px;width:60px;height:60px}.hair_base_6_midnight{background-image:url(spritesmith1.png);background-position:-91px -1729px;width:90px;height:90px}.customize-option.hair_base_6_midnight{background-image:url(spritesmith1.png);background-position:-116px -1744px;width:60px;height:60px}.hair_base_6_pblue{background-image:url(spritesmith1.png);background-position:-182px -1729px;width:90px;height:90px}.customize-option.hair_base_6_pblue{background-image:url(spritesmith1.png);background-position:-207px -1744px;width:60px;height:60px}.hair_base_6_pblue2{background-image:url(spritesmith1.png);background-position:-273px -1729px;width:90px;height:90px}.customize-option.hair_base_6_pblue2{background-image:url(spritesmith1.png);background-position:-298px -1744px;width:60px;height:60px}.hair_base_6_peppermint{background-image:url(spritesmith1.png);background-position:-364px -1729px;width:90px;height:90px}.customize-option.hair_base_6_peppermint{background-image:url(spritesmith1.png);background-position:-389px -1744px;width:60px;height:60px}.hair_base_6_pgreen{background-image:url(spritesmith1.png);background-position:-455px -1729px;width:90px;height:90px}.customize-option.hair_base_6_pgreen{background-image:url(spritesmith1.png);background-position:-480px -1744px;width:60px;height:60px}.hair_base_6_pgreen2{background-image:url(spritesmith1.png);background-position:-546px -1729px;width:90px;height:90px}.customize-option.hair_base_6_pgreen2{background-image:url(spritesmith1.png);background-position:-571px -1744px;width:60px;height:60px}.hair_base_6_porange{background-image:url(spritesmith2.png);background-position:-91px 0;width:90px;height:90px}.customize-option.hair_base_6_porange{background-image:url(spritesmith2.png);background-position:-116px -15px;width:60px;height:60px}.hair_base_6_porange2{background-image:url(spritesmith2.png);background-position:-1001px -1183px;width:90px;height:90px}.customize-option.hair_base_6_porange2{background-image:url(spritesmith2.png);background-position:-1026px -1198px;width:60px;height:60px}.hair_base_6_ppink{background-image:url(spritesmith2.png);background-position:0 -91px;width:90px;height:90px}.customize-option.hair_base_6_ppink{background-image:url(spritesmith2.png);background-position:-25px -106px;width:60px;height:60px}.hair_base_6_ppink2{background-image:url(spritesmith2.png);background-position:-91px -91px;width:90px;height:90px}.customize-option.hair_base_6_ppink2{background-image:url(spritesmith2.png);background-position:-116px -106px;width:60px;height:60px}.hair_base_6_ppurple{background-image:url(spritesmith2.png);background-position:-182px 0;width:90px;height:90px}.customize-option.hair_base_6_ppurple{background-image:url(spritesmith2.png);background-position:-207px -15px;width:60px;height:60px}.hair_base_6_ppurple2{background-image:url(spritesmith2.png);background-position:-182px -91px;width:90px;height:90px}.customize-option.hair_base_6_ppurple2{background-image:url(spritesmith2.png);background-position:-207px -106px;width:60px;height:60px}.hair_base_6_pumpkin{background-image:url(spritesmith2.png);background-position:0 -182px;width:90px;height:90px}.customize-option.hair_base_6_pumpkin{background-image:url(spritesmith2.png);background-position:-25px -197px;width:60px;height:60px}.hair_base_6_purple{background-image:url(spritesmith2.png);background-position:-91px -182px;width:90px;height:90px}.customize-option.hair_base_6_purple{background-image:url(spritesmith2.png);background-position:-116px -197px;width:60px;height:60px}.hair_base_6_pyellow{background-image:url(spritesmith2.png);background-position:-182px -182px;width:90px;height:90px}.customize-option.hair_base_6_pyellow{background-image:url(spritesmith2.png);background-position:-207px -197px;width:60px;height:60px}.hair_base_6_pyellow2{background-image:url(spritesmith2.png);background-position:-273px 0;width:90px;height:90px}.customize-option.hair_base_6_pyellow2{background-image:url(spritesmith2.png);background-position:-298px -15px;width:60px;height:60px}.hair_base_6_rainbow{background-image:url(spritesmith2.png);background-position:-273px -91px;width:90px;height:90px}.customize-option.hair_base_6_rainbow{background-image:url(spritesmith2.png);background-position:-298px -106px;width:60px;height:60px}.hair_base_6_red{background-image:url(spritesmith2.png);background-position:-273px -182px;width:90px;height:90px}.customize-option.hair_base_6_red{background-image:url(spritesmith2.png);background-position:-298px -197px;width:60px;height:60px}.hair_base_6_snowy{background-image:url(spritesmith2.png);background-position:0 -273px;width:90px;height:90px}.customize-option.hair_base_6_snowy{background-image:url(spritesmith2.png);background-position:-25px -288px;width:60px;height:60px}.hair_base_6_white{background-image:url(spritesmith2.png);background-position:-91px -273px;width:90px;height:90px}.customize-option.hair_base_6_white{background-image:url(spritesmith2.png);background-position:-116px -288px;width:60px;height:60px}.hair_base_6_winternight{background-image:url(spritesmith2.png);background-position:-182px -273px;width:90px;height:90px}.customize-option.hair_base_6_winternight{background-image:url(spritesmith2.png);background-position:-207px -288px;width:60px;height:60px}.hair_base_6_winterstar{background-image:url(spritesmith2.png);background-position:-273px -273px;width:90px;height:90px}.customize-option.hair_base_6_winterstar{background-image:url(spritesmith2.png);background-position:-298px -288px;width:60px;height:60px}.hair_base_6_yellow{background-image:url(spritesmith2.png);background-position:-364px 0;width:90px;height:90px}.customize-option.hair_base_6_yellow{background-image:url(spritesmith2.png);background-position:-389px -15px;width:60px;height:60px}.hair_base_6_zombie{background-image:url(spritesmith2.png);background-position:-364px -91px;width:90px;height:90px}.customize-option.hair_base_6_zombie{background-image:url(spritesmith2.png);background-position:-389px -106px;width:60px;height:60px}.hair_base_7_TRUred{background-image:url(spritesmith2.png);background-position:-364px -182px;width:90px;height:90px}.customize-option.hair_base_7_TRUred{background-image:url(spritesmith2.png);background-position:-389px -197px;width:60px;height:60px}.hair_base_7_aurora{background-image:url(spritesmith2.png);background-position:-364px -273px;width:90px;height:90px}.customize-option.hair_base_7_aurora{background-image:url(spritesmith2.png);background-position:-389px -288px;width:60px;height:60px}.hair_base_7_black{background-image:url(spritesmith2.png);background-position:0 -364px;width:90px;height:90px}.customize-option.hair_base_7_black{background-image:url(spritesmith2.png);background-position:-25px -379px;width:60px;height:60px}.hair_base_7_blond{background-image:url(spritesmith2.png);background-position:-91px -364px;width:90px;height:90px}.customize-option.hair_base_7_blond{background-image:url(spritesmith2.png);background-position:-116px -379px;width:60px;height:60px}.hair_base_7_blue{background-image:url(spritesmith2.png);background-position:-182px -364px;width:90px;height:90px}.customize-option.hair_base_7_blue{background-image:url(spritesmith2.png);background-position:-207px -379px;width:60px;height:60px}.hair_base_7_brown{background-image:url(spritesmith2.png);background-position:-273px -364px;width:90px;height:90px}.customize-option.hair_base_7_brown{background-image:url(spritesmith2.png);background-position:-298px -379px;width:60px;height:60px}.hair_base_7_candycane{background-image:url(spritesmith2.png);background-position:-364px -364px;width:90px;height:90px}.customize-option.hair_base_7_candycane{background-image:url(spritesmith2.png);background-position:-389px -379px;width:60px;height:60px}.hair_base_7_candycorn{background-image:url(spritesmith2.png);background-position:-455px 0;width:90px;height:90px}.customize-option.hair_base_7_candycorn{background-image:url(spritesmith2.png);background-position:-480px -15px;width:60px;height:60px}.hair_base_7_festive{background-image:url(spritesmith2.png);background-position:-455px -91px;width:90px;height:90px}.customize-option.hair_base_7_festive{background-image:url(spritesmith2.png);background-position:-480px -106px;width:60px;height:60px}.hair_base_7_frost{background-image:url(spritesmith2.png);background-position:-455px -182px;width:90px;height:90px}.customize-option.hair_base_7_frost{background-image:url(spritesmith2.png);background-position:-480px -197px;width:60px;height:60px}.hair_base_7_ghostwhite{background-image:url(spritesmith2.png);background-position:-455px -273px;width:90px;height:90px}.customize-option.hair_base_7_ghostwhite{background-image:url(spritesmith2.png);background-position:-480px -288px;width:60px;height:60px}.hair_base_7_green{background-image:url(spritesmith2.png);background-position:-455px -364px;width:90px;height:90px}.customize-option.hair_base_7_green{background-image:url(spritesmith2.png);background-position:-480px -379px;width:60px;height:60px}.hair_base_7_halloween{background-image:url(spritesmith2.png);background-position:0 -455px;width:90px;height:90px}.customize-option.hair_base_7_halloween{background-image:url(spritesmith2.png);background-position:-25px -470px;width:60px;height:60px}.hair_base_7_holly{background-image:url(spritesmith2.png);background-position:-91px -455px;width:90px;height:90px}.customize-option.hair_base_7_holly{background-image:url(spritesmith2.png);background-position:-116px -470px;width:60px;height:60px}.hair_base_7_hollygreen{background-image:url(spritesmith2.png);background-position:-182px -455px;width:90px;height:90px}.customize-option.hair_base_7_hollygreen{background-image:url(spritesmith2.png);background-position:-207px -470px;width:60px;height:60px}.hair_base_7_midnight{background-image:url(spritesmith2.png);background-position:-273px -455px;width:90px;height:90px}.customize-option.hair_base_7_midnight{background-image:url(spritesmith2.png);background-position:-298px -470px;width:60px;height:60px}.hair_base_7_pblue{background-image:url(spritesmith2.png);background-position:-364px -455px;width:90px;height:90px}.customize-option.hair_base_7_pblue{background-image:url(spritesmith2.png);background-position:-389px -470px;width:60px;height:60px}.hair_base_7_pblue2{background-image:url(spritesmith2.png);background-position:-455px -455px;width:90px;height:90px}.customize-option.hair_base_7_pblue2{background-image:url(spritesmith2.png);background-position:-480px -470px;width:60px;height:60px}.hair_base_7_peppermint{background-image:url(spritesmith2.png);background-position:-546px 0;width:90px;height:90px}.customize-option.hair_base_7_peppermint{background-image:url(spritesmith2.png);background-position:-571px -15px;width:60px;height:60px}.hair_base_7_pgreen{background-image:url(spritesmith2.png);background-position:-546px -91px;width:90px;height:90px}.customize-option.hair_base_7_pgreen{background-image:url(spritesmith2.png);background-position:-571px -106px;width:60px;height:60px}.hair_base_7_pgreen2{background-image:url(spritesmith2.png);background-position:-546px -182px;width:90px;height:90px}.customize-option.hair_base_7_pgreen2{background-image:url(spritesmith2.png);background-position:-571px -197px;width:60px;height:60px}.hair_base_7_porange{background-image:url(spritesmith2.png);background-position:-546px -273px;width:90px;height:90px}.customize-option.hair_base_7_porange{background-image:url(spritesmith2.png);background-position:-571px -288px;width:60px;height:60px}.hair_base_7_porange2{background-image:url(spritesmith2.png);background-position:-546px -364px;width:90px;height:90px}.customize-option.hair_base_7_porange2{background-image:url(spritesmith2.png);background-position:-571px -379px;width:60px;height:60px}.hair_base_7_ppink{background-image:url(spritesmith2.png);background-position:-546px -455px;width:90px;height:90px}.customize-option.hair_base_7_ppink{background-image:url(spritesmith2.png);background-position:-571px -470px;width:60px;height:60px}.hair_base_7_ppink2{background-image:url(spritesmith2.png);background-position:0 -546px;width:90px;height:90px}.customize-option.hair_base_7_ppink2{background-image:url(spritesmith2.png);background-position:-25px -561px;width:60px;height:60px}.hair_base_7_ppurple{background-image:url(spritesmith2.png);background-position:-91px -546px;width:90px;height:90px}.customize-option.hair_base_7_ppurple{background-image:url(spritesmith2.png);background-position:-116px -561px;width:60px;height:60px}.hair_base_7_ppurple2{background-image:url(spritesmith2.png);background-position:-182px -546px;width:90px;height:90px}.customize-option.hair_base_7_ppurple2{background-image:url(spritesmith2.png);background-position:-207px -561px;width:60px;height:60px}.hair_base_7_pumpkin{background-image:url(spritesmith2.png);background-position:-273px -546px;width:90px;height:90px}.customize-option.hair_base_7_pumpkin{background-image:url(spritesmith2.png);background-position:-298px -561px;width:60px;height:60px}.hair_base_7_purple{background-image:url(spritesmith2.png);background-position:-364px -546px;width:90px;height:90px}.customize-option.hair_base_7_purple{background-image:url(spritesmith2.png);background-position:-389px -561px;width:60px;height:60px}.hair_base_7_pyellow{background-image:url(spritesmith2.png);background-position:-455px -546px;width:90px;height:90px}.customize-option.hair_base_7_pyellow{background-image:url(spritesmith2.png);background-position:-480px -561px;width:60px;height:60px}.hair_base_7_pyellow2{background-image:url(spritesmith2.png);background-position:-546px -546px;width:90px;height:90px}.customize-option.hair_base_7_pyellow2{background-image:url(spritesmith2.png);background-position:-571px -561px;width:60px;height:60px}.hair_base_7_rainbow{background-image:url(spritesmith2.png);background-position:-637px 0;width:90px;height:90px}.customize-option.hair_base_7_rainbow{background-image:url(spritesmith2.png);background-position:-662px -15px;width:60px;height:60px}.hair_base_7_red{background-image:url(spritesmith2.png);background-position:-637px -91px;width:90px;height:90px}.customize-option.hair_base_7_red{background-image:url(spritesmith2.png);background-position:-662px -106px;width:60px;height:60px}.hair_base_7_snowy{background-image:url(spritesmith2.png);background-position:-637px -182px;width:90px;height:90px}.customize-option.hair_base_7_snowy{background-image:url(spritesmith2.png);background-position:-662px -197px;width:60px;height:60px}.hair_base_7_white{background-image:url(spritesmith2.png);background-position:-637px -273px;width:90px;height:90px}.customize-option.hair_base_7_white{background-image:url(spritesmith2.png);background-position:-662px -288px;width:60px;height:60px}.hair_base_7_winternight{background-image:url(spritesmith2.png);background-position:-637px -364px;width:90px;height:90px}.customize-option.hair_base_7_winternight{background-image:url(spritesmith2.png);background-position:-662px -379px;width:60px;height:60px}.hair_base_7_winterstar{background-image:url(spritesmith2.png);background-position:-637px -455px;width:90px;height:90px}.customize-option.hair_base_7_winterstar{background-image:url(spritesmith2.png);background-position:-662px -470px;width:60px;height:60px}.hair_base_7_yellow{background-image:url(spritesmith2.png);background-position:-637px -546px;width:90px;height:90px}.customize-option.hair_base_7_yellow{background-image:url(spritesmith2.png);background-position:-662px -561px;width:60px;height:60px}.hair_base_7_zombie{background-image:url(spritesmith2.png);background-position:0 -637px;width:90px;height:90px}.customize-option.hair_base_7_zombie{background-image:url(spritesmith2.png);background-position:-25px -652px;width:60px;height:60px}.hair_base_8_TRUred{background-image:url(spritesmith2.png);background-position:-91px -637px;width:90px;height:90px}.customize-option.hair_base_8_TRUred{background-image:url(spritesmith2.png);background-position:-116px -652px;width:60px;height:60px}.hair_base_8_aurora{background-image:url(spritesmith2.png);background-position:-182px -637px;width:90px;height:90px}.customize-option.hair_base_8_aurora{background-image:url(spritesmith2.png);background-position:-207px -652px;width:60px;height:60px}.hair_base_8_black{background-image:url(spritesmith2.png);background-position:-273px -637px;width:90px;height:90px}.customize-option.hair_base_8_black{background-image:url(spritesmith2.png);background-position:-298px -652px;width:60px;height:60px}.hair_base_8_blond{background-image:url(spritesmith2.png);background-position:-364px -637px;width:90px;height:90px}.customize-option.hair_base_8_blond{background-image:url(spritesmith2.png);background-position:-389px -652px;width:60px;height:60px}.hair_base_8_blue{background-image:url(spritesmith2.png);background-position:-455px -637px;width:90px;height:90px}.customize-option.hair_base_8_blue{background-image:url(spritesmith2.png);background-position:-480px -652px;width:60px;height:60px}.hair_base_8_brown{background-image:url(spritesmith2.png);background-position:-546px -637px;width:90px;height:90px}.customize-option.hair_base_8_brown{background-image:url(spritesmith2.png);background-position:-571px -652px;width:60px;height:60px}.hair_base_8_candycane{background-image:url(spritesmith2.png);background-position:-637px -637px;width:90px;height:90px}.customize-option.hair_base_8_candycane{background-image:url(spritesmith2.png);background-position:-662px -652px;width:60px;height:60px}.hair_base_8_candycorn{background-image:url(spritesmith2.png);background-position:-728px 0;width:90px;height:90px}.customize-option.hair_base_8_candycorn{background-image:url(spritesmith2.png);background-position:-753px -15px;width:60px;height:60px}.hair_base_8_festive{background-image:url(spritesmith2.png);background-position:-728px -91px;width:90px;height:90px}.customize-option.hair_base_8_festive{background-image:url(spritesmith2.png);background-position:-753px -106px;width:60px;height:60px}.hair_base_8_frost{background-image:url(spritesmith2.png);background-position:-728px -182px;width:90px;height:90px}.customize-option.hair_base_8_frost{background-image:url(spritesmith2.png);background-position:-753px -197px;width:60px;height:60px}.hair_base_8_ghostwhite{background-image:url(spritesmith2.png);background-position:-728px -273px;width:90px;height:90px}.customize-option.hair_base_8_ghostwhite{background-image:url(spritesmith2.png);background-position:-753px -288px;width:60px;height:60px}.hair_base_8_green{background-image:url(spritesmith2.png);background-position:-728px -364px;width:90px;height:90px}.customize-option.hair_base_8_green{background-image:url(spritesmith2.png);background-position:-753px -379px;width:60px;height:60px}.hair_base_8_halloween{background-image:url(spritesmith2.png);background-position:-728px -455px;width:90px;height:90px}.customize-option.hair_base_8_halloween{background-image:url(spritesmith2.png);background-position:-753px -470px;width:60px;height:60px}.hair_base_8_holly{background-image:url(spritesmith2.png);background-position:-728px -546px;width:90px;height:90px}.customize-option.hair_base_8_holly{background-image:url(spritesmith2.png);background-position:-753px -561px;width:60px;height:60px}.hair_base_8_hollygreen{background-image:url(spritesmith2.png);background-position:-728px -637px;width:90px;height:90px}.customize-option.hair_base_8_hollygreen{background-image:url(spritesmith2.png);background-position:-753px -652px;width:60px;height:60px}.hair_base_8_midnight{background-image:url(spritesmith2.png);background-position:0 -728px;width:90px;height:90px}.customize-option.hair_base_8_midnight{background-image:url(spritesmith2.png);background-position:-25px -743px;width:60px;height:60px}.hair_base_8_pblue{background-image:url(spritesmith2.png);background-position:-91px -728px;width:90px;height:90px}.customize-option.hair_base_8_pblue{background-image:url(spritesmith2.png);background-position:-116px -743px;width:60px;height:60px}.hair_base_8_pblue2{background-image:url(spritesmith2.png);background-position:-182px -728px;width:90px;height:90px}.customize-option.hair_base_8_pblue2{background-image:url(spritesmith2.png);background-position:-207px -743px;width:60px;height:60px}.hair_base_8_peppermint{background-image:url(spritesmith2.png);background-position:-273px -728px;width:90px;height:90px}.customize-option.hair_base_8_peppermint{background-image:url(spritesmith2.png);background-position:-298px -743px;width:60px;height:60px}.hair_base_8_pgreen{background-image:url(spritesmith2.png);background-position:-364px -728px;width:90px;height:90px}.customize-option.hair_base_8_pgreen{background-image:url(spritesmith2.png);background-position:-389px -743px;width:60px;height:60px}.hair_base_8_pgreen2{background-image:url(spritesmith2.png);background-position:-455px -728px;width:90px;height:90px}.customize-option.hair_base_8_pgreen2{background-image:url(spritesmith2.png);background-position:-480px -743px;width:60px;height:60px}.hair_base_8_porange{background-image:url(spritesmith2.png);background-position:-546px -728px;width:90px;height:90px}.customize-option.hair_base_8_porange{background-image:url(spritesmith2.png);background-position:-571px -743px;width:60px;height:60px}.hair_base_8_porange2{background-image:url(spritesmith2.png);background-position:-637px -728px;width:90px;height:90px}.customize-option.hair_base_8_porange2{background-image:url(spritesmith2.png);background-position:-662px -743px;width:60px;height:60px}.hair_base_8_ppink{background-image:url(spritesmith2.png);background-position:-728px -728px;width:90px;height:90px}.customize-option.hair_base_8_ppink{background-image:url(spritesmith2.png);background-position:-753px -743px;width:60px;height:60px}.hair_base_8_ppink2{background-image:url(spritesmith2.png);background-position:-819px 0;width:90px;height:90px}.customize-option.hair_base_8_ppink2{background-image:url(spritesmith2.png);background-position:-844px -15px;width:60px;height:60px}.hair_base_8_ppurple{background-image:url(spritesmith2.png);background-position:-819px -91px;width:90px;height:90px}.customize-option.hair_base_8_ppurple{background-image:url(spritesmith2.png);background-position:-844px -106px;width:60px;height:60px}.hair_base_8_ppurple2{background-image:url(spritesmith2.png);background-position:-819px -182px;width:90px;height:90px}.customize-option.hair_base_8_ppurple2{background-image:url(spritesmith2.png);background-position:-844px -197px;width:60px;height:60px}.hair_base_8_pumpkin{background-image:url(spritesmith2.png);background-position:-819px -273px;width:90px;height:90px}.customize-option.hair_base_8_pumpkin{background-image:url(spritesmith2.png);background-position:-844px -288px;width:60px;height:60px}.hair_base_8_purple{background-image:url(spritesmith2.png);background-position:-819px -364px;width:90px;height:90px}.customize-option.hair_base_8_purple{background-image:url(spritesmith2.png);background-position:-844px -379px;width:60px;height:60px}.hair_base_8_pyellow{background-image:url(spritesmith2.png);background-position:-819px -455px;width:90px;height:90px}.customize-option.hair_base_8_pyellow{background-image:url(spritesmith2.png);background-position:-844px -470px;width:60px;height:60px}.hair_base_8_pyellow2{background-image:url(spritesmith2.png);background-position:-819px -546px;width:90px;height:90px}.customize-option.hair_base_8_pyellow2{background-image:url(spritesmith2.png);background-position:-844px -561px;width:60px;height:60px}.hair_base_8_rainbow{background-image:url(spritesmith2.png);background-position:-819px -637px;width:90px;height:90px}.customize-option.hair_base_8_rainbow{background-image:url(spritesmith2.png);background-position:-844px -652px;width:60px;height:60px}.hair_base_8_red{background-image:url(spritesmith2.png);background-position:-819px -728px;width:90px;height:90px}.customize-option.hair_base_8_red{background-image:url(spritesmith2.png);background-position:-844px -743px;width:60px;height:60px}.hair_base_8_snowy{background-image:url(spritesmith2.png);background-position:0 -819px;width:90px;height:90px}.customize-option.hair_base_8_snowy{background-image:url(spritesmith2.png);background-position:-25px -834px;width:60px;height:60px}.hair_base_8_white{background-image:url(spritesmith2.png);background-position:-91px -819px;width:90px;height:90px}.customize-option.hair_base_8_white{background-image:url(spritesmith2.png);background-position:-116px -834px;width:60px;height:60px}.hair_base_8_winternight{background-image:url(spritesmith2.png);background-position:-182px -819px;width:90px;height:90px}.customize-option.hair_base_8_winternight{background-image:url(spritesmith2.png);background-position:-207px -834px;width:60px;height:60px}.hair_base_8_winterstar{background-image:url(spritesmith2.png);background-position:-273px -819px;width:90px;height:90px}.customize-option.hair_base_8_winterstar{background-image:url(spritesmith2.png);background-position:-298px -834px;width:60px;height:60px}.hair_base_8_yellow{background-image:url(spritesmith2.png);background-position:-364px -819px;width:90px;height:90px}.customize-option.hair_base_8_yellow{background-image:url(spritesmith2.png);background-position:-389px -834px;width:60px;height:60px}.hair_base_8_zombie{background-image:url(spritesmith2.png);background-position:-455px -819px;width:90px;height:90px}.customize-option.hair_base_8_zombie{background-image:url(spritesmith2.png);background-position:-480px -834px;width:60px;height:60px}.hair_base_9_TRUred{background-image:url(spritesmith2.png);background-position:-546px -819px;width:90px;height:90px}.customize-option.hair_base_9_TRUred{background-image:url(spritesmith2.png);background-position:-571px -834px;width:60px;height:60px}.hair_base_9_aurora{background-image:url(spritesmith2.png);background-position:-637px -819px;width:90px;height:90px}.customize-option.hair_base_9_aurora{background-image:url(spritesmith2.png);background-position:-662px -834px;width:60px;height:60px}.hair_base_9_black{background-image:url(spritesmith2.png);background-position:-728px -819px;width:90px;height:90px}.customize-option.hair_base_9_black{background-image:url(spritesmith2.png);background-position:-753px -834px;width:60px;height:60px}.hair_base_9_blond{background-image:url(spritesmith2.png);background-position:-819px -819px;width:90px;height:90px}.customize-option.hair_base_9_blond{background-image:url(spritesmith2.png);background-position:-844px -834px;width:60px;height:60px}.hair_base_9_blue{background-image:url(spritesmith2.png);background-position:-910px 0;width:90px;height:90px}.customize-option.hair_base_9_blue{background-image:url(spritesmith2.png);background-position:-935px -15px;width:60px;height:60px}.hair_base_9_brown{background-image:url(spritesmith2.png);background-position:-910px -91px;width:90px;height:90px}.customize-option.hair_base_9_brown{background-image:url(spritesmith2.png);background-position:-935px -106px;width:60px;height:60px}.hair_base_9_candycane{background-image:url(spritesmith2.png);background-position:-910px -182px;width:90px;height:90px}.customize-option.hair_base_9_candycane{background-image:url(spritesmith2.png);background-position:-935px -197px;width:60px;height:60px}.hair_base_9_candycorn{background-image:url(spritesmith2.png);background-position:-910px -273px;width:90px;height:90px}.customize-option.hair_base_9_candycorn{background-image:url(spritesmith2.png);background-position:-935px -288px;width:60px;height:60px}.hair_base_9_festive{background-image:url(spritesmith2.png);background-position:-910px -364px;width:90px;height:90px}.customize-option.hair_base_9_festive{background-image:url(spritesmith2.png);background-position:-935px -379px;width:60px;height:60px}.hair_base_9_frost{background-image:url(spritesmith2.png);background-position:-910px -455px;width:90px;height:90px}.customize-option.hair_base_9_frost{background-image:url(spritesmith2.png);background-position:-935px -470px;width:60px;height:60px}.hair_base_9_ghostwhite{background-image:url(spritesmith2.png);background-position:-910px -546px;width:90px;height:90px}.customize-option.hair_base_9_ghostwhite{background-image:url(spritesmith2.png);background-position:-935px -561px;width:60px;height:60px}.hair_base_9_green{background-image:url(spritesmith2.png);background-position:-910px -637px;width:90px;height:90px}.customize-option.hair_base_9_green{background-image:url(spritesmith2.png);background-position:-935px -652px;width:60px;height:60px}.hair_base_9_halloween{background-image:url(spritesmith2.png);background-position:-910px -728px;width:90px;height:90px}.customize-option.hair_base_9_halloween{background-image:url(spritesmith2.png);background-position:-935px -743px;width:60px;height:60px}.hair_base_9_holly{background-image:url(spritesmith2.png);background-position:-910px -819px;width:90px;height:90px}.customize-option.hair_base_9_holly{background-image:url(spritesmith2.png);background-position:-935px -834px;width:60px;height:60px}.hair_base_9_hollygreen{background-image:url(spritesmith2.png);background-position:0 -910px;width:90px;height:90px}.customize-option.hair_base_9_hollygreen{background-image:url(spritesmith2.png);background-position:-25px -925px;width:60px;height:60px}.hair_base_9_midnight{background-image:url(spritesmith2.png);background-position:-91px -910px;width:90px;height:90px}.customize-option.hair_base_9_midnight{background-image:url(spritesmith2.png);background-position:-116px -925px;width:60px;height:60px}.hair_base_9_pblue{background-image:url(spritesmith2.png);background-position:-182px -910px;width:90px;height:90px}.customize-option.hair_base_9_pblue{background-image:url(spritesmith2.png);background-position:-207px -925px;width:60px;height:60px}.hair_base_9_pblue2{background-image:url(spritesmith2.png);background-position:-273px -910px;width:90px;height:90px}.customize-option.hair_base_9_pblue2{background-image:url(spritesmith2.png);background-position:-298px -925px;width:60px;height:60px}.hair_base_9_peppermint{background-image:url(spritesmith2.png);background-position:-364px -910px;width:90px;height:90px}.customize-option.hair_base_9_peppermint{background-image:url(spritesmith2.png);background-position:-389px -925px;width:60px;height:60px}.hair_base_9_pgreen{background-image:url(spritesmith2.png);background-position:-455px -910px;width:90px;height:90px}.customize-option.hair_base_9_pgreen{background-image:url(spritesmith2.png);background-position:-480px -925px;width:60px;height:60px}.hair_base_9_pgreen2{background-image:url(spritesmith2.png);background-position:-546px -910px;width:90px;height:90px}.customize-option.hair_base_9_pgreen2{background-image:url(spritesmith2.png);background-position:-571px -925px;width:60px;height:60px}.hair_base_9_porange{background-image:url(spritesmith2.png);background-position:-637px -910px;width:90px;height:90px}.customize-option.hair_base_9_porange{background-image:url(spritesmith2.png);background-position:-662px -925px;width:60px;height:60px}.hair_base_9_porange2{background-image:url(spritesmith2.png);background-position:-728px -910px;width:90px;height:90px}.customize-option.hair_base_9_porange2{background-image:url(spritesmith2.png);background-position:-753px -925px;width:60px;height:60px}.hair_base_9_ppink{background-image:url(spritesmith2.png);background-position:-819px -910px;width:90px;height:90px}.customize-option.hair_base_9_ppink{background-image:url(spritesmith2.png);background-position:-844px -925px;width:60px;height:60px}.hair_base_9_ppink2{background-image:url(spritesmith2.png);background-position:-910px -910px;width:90px;height:90px}.customize-option.hair_base_9_ppink2{background-image:url(spritesmith2.png);background-position:-935px -925px;width:60px;height:60px}.hair_base_9_ppurple{background-image:url(spritesmith2.png);background-position:-1001px 0;width:90px;height:90px}.customize-option.hair_base_9_ppurple{background-image:url(spritesmith2.png);background-position:-1026px -15px;width:60px;height:60px}.hair_base_9_ppurple2{background-image:url(spritesmith2.png);background-position:-1001px -91px;width:90px;height:90px}.customize-option.hair_base_9_ppurple2{background-image:url(spritesmith2.png);background-position:-1026px -106px;width:60px;height:60px}.hair_base_9_pumpkin{background-image:url(spritesmith2.png);background-position:-1001px -182px;width:90px;height:90px}.customize-option.hair_base_9_pumpkin{background-image:url(spritesmith2.png);background-position:-1026px -197px;width:60px;height:60px}.hair_base_9_purple{background-image:url(spritesmith2.png);background-position:-1001px -273px;width:90px;height:90px}.customize-option.hair_base_9_purple{background-image:url(spritesmith2.png);background-position:-1026px -288px;width:60px;height:60px}.hair_base_9_pyellow{background-image:url(spritesmith2.png);background-position:-1001px -364px;width:90px;height:90px}.customize-option.hair_base_9_pyellow{background-image:url(spritesmith2.png);background-position:-1026px -379px;width:60px;height:60px}.hair_base_9_pyellow2{background-image:url(spritesmith2.png);background-position:-1001px -455px;width:90px;height:90px}.customize-option.hair_base_9_pyellow2{background-image:url(spritesmith2.png);background-position:-1026px -470px;width:60px;height:60px}.hair_base_9_rainbow{background-image:url(spritesmith2.png);background-position:-1001px -546px;width:90px;height:90px}.customize-option.hair_base_9_rainbow{background-image:url(spritesmith2.png);background-position:-1026px -561px;width:60px;height:60px}.hair_base_9_red{background-image:url(spritesmith2.png);background-position:-1001px -637px;width:90px;height:90px}.customize-option.hair_base_9_red{background-image:url(spritesmith2.png);background-position:-1026px -652px;width:60px;height:60px}.hair_base_9_snowy{background-image:url(spritesmith2.png);background-position:-1001px -728px;width:90px;height:90px}.customize-option.hair_base_9_snowy{background-image:url(spritesmith2.png);background-position:-1026px -743px;width:60px;height:60px}.hair_base_9_white{background-image:url(spritesmith2.png);background-position:-1001px -819px;width:90px;height:90px}.customize-option.hair_base_9_white{background-image:url(spritesmith2.png);background-position:-1026px -834px;width:60px;height:60px}.hair_base_9_winternight{background-image:url(spritesmith2.png);background-position:-1001px -910px;width:90px;height:90px}.customize-option.hair_base_9_winternight{background-image:url(spritesmith2.png);background-position:-1026px -925px;width:60px;height:60px}.hair_base_9_winterstar{background-image:url(spritesmith2.png);background-position:0 -1001px;width:90px;height:90px}.customize-option.hair_base_9_winterstar{background-image:url(spritesmith2.png);background-position:-25px -1016px;width:60px;height:60px}.hair_base_9_yellow{background-image:url(spritesmith2.png);background-position:-91px -1001px;width:90px;height:90px}.customize-option.hair_base_9_yellow{background-image:url(spritesmith2.png);background-position:-116px -1016px;width:60px;height:60px}.hair_base_9_zombie{background-image:url(spritesmith2.png);background-position:-182px -1001px;width:90px;height:90px}.customize-option.hair_base_9_zombie{background-image:url(spritesmith2.png);background-position:-207px -1016px;width:60px;height:60px}.hair_beard_1_pblue2{background-image:url(spritesmith2.png);background-position:-273px -1001px;width:90px;height:90px}.customize-option.hair_beard_1_pblue2{background-image:url(spritesmith2.png);background-position:-298px -1016px;width:60px;height:60px}.hair_beard_1_pgreen2{background-image:url(spritesmith2.png);background-position:-364px -1001px;width:90px;height:90px}.customize-option.hair_beard_1_pgreen2{background-image:url(spritesmith2.png);background-position:-389px -1016px;width:60px;height:60px}.hair_beard_1_porange2{background-image:url(spritesmith2.png);background-position:-455px -1001px;width:90px;height:90px}.customize-option.hair_beard_1_porange2{background-image:url(spritesmith2.png);background-position:-480px -1016px;width:60px;height:60px}.hair_beard_1_ppink2{background-image:url(spritesmith2.png);background-position:-546px -1001px;width:90px;height:90px}.customize-option.hair_beard_1_ppink2{background-image:url(spritesmith2.png);background-position:-571px -1016px;width:60px;height:60px}.hair_beard_1_ppurple2{background-image:url(spritesmith2.png);background-position:-637px -1001px;width:90px;height:90px}.customize-option.hair_beard_1_ppurple2{background-image:url(spritesmith2.png);background-position:-662px -1016px;width:60px;height:60px}.hair_beard_1_pyellow2{background-image:url(spritesmith2.png);background-position:-728px -1001px;width:90px;height:90px}.customize-option.hair_beard_1_pyellow2{background-image:url(spritesmith2.png);background-position:-753px -1016px;width:60px;height:60px}.hair_beard_2_pblue2{background-image:url(spritesmith2.png);background-position:-819px -1001px;width:90px;height:90px}.customize-option.hair_beard_2_pblue2{background-image:url(spritesmith2.png);background-position:-844px -1016px;width:60px;height:60px}.hair_beard_2_pgreen2{background-image:url(spritesmith2.png);background-position:-910px -1001px;width:90px;height:90px}.customize-option.hair_beard_2_pgreen2{background-image:url(spritesmith2.png);background-position:-935px -1016px;width:60px;height:60px}.hair_beard_2_porange2{background-image:url(spritesmith2.png);background-position:-1001px -1001px;width:90px;height:90px}.customize-option.hair_beard_2_porange2{background-image:url(spritesmith2.png);background-position:-1026px -1016px;width:60px;height:60px}.hair_beard_2_ppink2{background-image:url(spritesmith2.png);background-position:-1092px 0;width:90px;height:90px}.customize-option.hair_beard_2_ppink2{background-image:url(spritesmith2.png);background-position:-1117px -15px;width:60px;height:60px}.hair_beard_2_ppurple2{background-image:url(spritesmith2.png);background-position:-1092px -91px;width:90px;height:90px}.customize-option.hair_beard_2_ppurple2{background-image:url(spritesmith2.png);background-position:-1117px -106px;width:60px;height:60px}.hair_beard_2_pyellow2{background-image:url(spritesmith2.png);background-position:-1092px -182px;width:90px;height:90px}.customize-option.hair_beard_2_pyellow2{background-image:url(spritesmith2.png);background-position:-1117px -197px;width:60px;height:60px}.hair_beard_3_pblue2{background-image:url(spritesmith2.png);background-position:-1092px -273px;width:90px;height:90px}.customize-option.hair_beard_3_pblue2{background-image:url(spritesmith2.png);background-position:-1117px -288px;width:60px;height:60px}.hair_beard_3_pgreen2{background-image:url(spritesmith2.png);background-position:-1092px -364px;width:90px;height:90px}.customize-option.hair_beard_3_pgreen2{background-image:url(spritesmith2.png);background-position:-1117px -379px;width:60px;height:60px}.hair_beard_3_porange2{background-image:url(spritesmith2.png);background-position:-1092px -455px;width:90px;height:90px}.customize-option.hair_beard_3_porange2{background-image:url(spritesmith2.png);background-position:-1117px -470px;width:60px;height:60px}.hair_beard_3_ppink2{background-image:url(spritesmith2.png);background-position:-1092px -546px;width:90px;height:90px}.customize-option.hair_beard_3_ppink2{background-image:url(spritesmith2.png);background-position:-1117px -561px;width:60px;height:60px}.hair_beard_3_ppurple2{background-image:url(spritesmith2.png);background-position:-1092px -637px;width:90px;height:90px}.customize-option.hair_beard_3_ppurple2{background-image:url(spritesmith2.png);background-position:-1117px -652px;width:60px;height:60px}.hair_beard_3_pyellow2{background-image:url(spritesmith2.png);background-position:-1092px -728px;width:90px;height:90px}.customize-option.hair_beard_3_pyellow2{background-image:url(spritesmith2.png);background-position:-1117px -743px;width:60px;height:60px}.hair_mustache_1_pblue2{background-image:url(spritesmith2.png);background-position:-1092px -819px;width:90px;height:90px}.customize-option.hair_mustache_1_pblue2{background-image:url(spritesmith2.png);background-position:-1117px -834px;width:60px;height:60px}.hair_mustache_1_pgreen2{background-image:url(spritesmith2.png);background-position:-1092px -910px;width:90px;height:90px}.customize-option.hair_mustache_1_pgreen2{background-image:url(spritesmith2.png);background-position:-1117px -925px;width:60px;height:60px}.hair_mustache_1_porange2{background-image:url(spritesmith2.png);background-position:-1092px -1001px;width:90px;height:90px}.customize-option.hair_mustache_1_porange2{background-image:url(spritesmith2.png);background-position:-1117px -1016px;width:60px;height:60px}.hair_mustache_1_ppink2{background-image:url(spritesmith2.png);background-position:0 -1092px;width:90px;height:90px}.customize-option.hair_mustache_1_ppink2{background-image:url(spritesmith2.png);background-position:-25px -1107px;width:60px;height:60px}.hair_mustache_1_ppurple2{background-image:url(spritesmith2.png);background-position:-91px -1092px;width:90px;height:90px}.customize-option.hair_mustache_1_ppurple2{background-image:url(spritesmith2.png);background-position:-116px -1107px;width:60px;height:60px}.hair_mustache_1_pyellow2{background-image:url(spritesmith2.png);background-position:-182px -1092px;width:90px;height:90px}.customize-option.hair_mustache_1_pyellow2{background-image:url(spritesmith2.png);background-position:-207px -1107px;width:60px;height:60px}.hair_mustache_2_pblue2{background-image:url(spritesmith2.png);background-position:-273px -1092px;width:90px;height:90px}.customize-option.hair_mustache_2_pblue2{background-image:url(spritesmith2.png);background-position:-298px -1107px;width:60px;height:60px}.hair_mustache_2_pgreen2{background-image:url(spritesmith2.png);background-position:-364px -1092px;width:90px;height:90px}.customize-option.hair_mustache_2_pgreen2{background-image:url(spritesmith2.png);background-position:-389px -1107px;width:60px;height:60px}.hair_mustache_2_porange2{background-image:url(spritesmith2.png);background-position:-455px -1092px;width:90px;height:90px}.customize-option.hair_mustache_2_porange2{background-image:url(spritesmith2.png);background-position:-480px -1107px;width:60px;height:60px}.hair_mustache_2_ppink2{background-image:url(spritesmith2.png);background-position:-546px -1092px;width:90px;height:90px}.customize-option.hair_mustache_2_ppink2{background-image:url(spritesmith2.png);background-position:-571px -1107px;width:60px;height:60px}.hair_mustache_2_ppurple2{background-image:url(spritesmith2.png);background-position:-637px -1092px;width:90px;height:90px}.customize-option.hair_mustache_2_ppurple2{background-image:url(spritesmith2.png);background-position:-662px -1107px;width:60px;height:60px}.hair_mustache_2_pyellow2{background-image:url(spritesmith2.png);background-position:-728px -1092px;width:90px;height:90px}.customize-option.hair_mustache_2_pyellow2{background-image:url(spritesmith2.png);background-position:-753px -1107px;width:60px;height:60px}.broad_shirt_black{background-image:url(spritesmith2.png);background-position:-819px -1092px;width:90px;height:90px}.customize-option.broad_shirt_black{background-image:url(spritesmith2.png);background-position:-844px -1122px;width:60px;height:60px}.broad_shirt_blue{background-image:url(spritesmith2.png);background-position:-910px -1092px;width:90px;height:90px}.customize-option.broad_shirt_blue{background-image:url(spritesmith2.png);background-position:-935px -1122px;width:60px;height:60px}.broad_shirt_convict{background-image:url(spritesmith2.png);background-position:-1001px -1092px;width:90px;height:90px}.customize-option.broad_shirt_convict{background-image:url(spritesmith2.png);background-position:-1026px -1122px;width:60px;height:60px}.broad_shirt_cross{background-image:url(spritesmith2.png);background-position:-1092px -1092px;width:90px;height:90px}.customize-option.broad_shirt_cross{background-image:url(spritesmith2.png);background-position:-1117px -1122px;width:60px;height:60px}.broad_shirt_fire{background-image:url(spritesmith2.png);background-position:-1183px 0;width:90px;height:90px}.customize-option.broad_shirt_fire{background-image:url(spritesmith2.png);background-position:-1208px -30px;width:60px;height:60px}.broad_shirt_green{background-image:url(spritesmith2.png);background-position:-1183px -91px;width:90px;height:90px}.customize-option.broad_shirt_green{background-image:url(spritesmith2.png);background-position:-1208px -121px;width:60px;height:60px}.broad_shirt_horizon{background-image:url(spritesmith2.png);background-position:-1183px -182px;width:90px;height:90px}.customize-option.broad_shirt_horizon{background-image:url(spritesmith2.png);background-position:-1208px -212px;width:60px;height:60px}.broad_shirt_ocean{background-image:url(spritesmith2.png);background-position:-1183px -273px;width:90px;height:90px}.customize-option.broad_shirt_ocean{background-image:url(spritesmith2.png);background-position:-1208px -303px;width:60px;height:60px}.broad_shirt_pink{background-image:url(spritesmith2.png);background-position:-1183px -364px;width:90px;height:90px}.customize-option.broad_shirt_pink{background-image:url(spritesmith2.png);background-position:-1208px -394px;width:60px;height:60px}.broad_shirt_purple{background-image:url(spritesmith2.png);background-position:-1183px -455px;width:90px;height:90px}.customize-option.broad_shirt_purple{background-image:url(spritesmith2.png);background-position:-1208px -485px;width:60px;height:60px}.broad_shirt_rainbow{background-image:url(spritesmith2.png);background-position:-1183px -546px;width:90px;height:90px}.customize-option.broad_shirt_rainbow{background-image:url(spritesmith2.png);background-position:-1208px -576px;width:60px;height:60px}.broad_shirt_redblue{background-image:url(spritesmith2.png);background-position:-1183px -637px;width:90px;height:90px}.customize-option.broad_shirt_redblue{background-image:url(spritesmith2.png);background-position:-1208px -667px;width:60px;height:60px}.broad_shirt_thunder{background-image:url(spritesmith2.png);background-position:-1183px -728px;width:90px;height:90px}.customize-option.broad_shirt_thunder{background-image:url(spritesmith2.png);background-position:-1208px -758px;width:60px;height:60px}.broad_shirt_tropical{background-image:url(spritesmith2.png);background-position:-1183px -819px;width:90px;height:90px}.customize-option.broad_shirt_tropical{background-image:url(spritesmith2.png);background-position:-1208px -849px;width:60px;height:60px}.broad_shirt_white{background-image:url(spritesmith2.png);background-position:-1183px -910px;width:90px;height:90px}.customize-option.broad_shirt_white{background-image:url(spritesmith2.png);background-position:-1208px -940px;width:60px;height:60px}.broad_shirt_yellow{background-image:url(spritesmith2.png);background-position:-1183px -1001px;width:90px;height:90px}.customize-option.broad_shirt_yellow{background-image:url(spritesmith2.png);background-position:-1208px -1031px;width:60px;height:60px}.broad_shirt_zombie{background-image:url(spritesmith2.png);background-position:-1183px -1092px;width:90px;height:90px}.customize-option.broad_shirt_zombie{background-image:url(spritesmith2.png);background-position:-1208px -1122px;width:60px;height:60px}.slim_shirt_black{background-image:url(spritesmith2.png);background-position:0 -1183px;width:90px;height:90px}.customize-option.slim_shirt_black{background-image:url(spritesmith2.png);background-position:-25px -1213px;width:60px;height:60px}.slim_shirt_blue{background-image:url(spritesmith2.png);background-position:-91px -1183px;width:90px;height:90px}.customize-option.slim_shirt_blue{background-image:url(spritesmith2.png);background-position:-116px -1213px;width:60px;height:60px}.slim_shirt_convict{background-image:url(spritesmith2.png);background-position:-182px -1183px;width:90px;height:90px}.customize-option.slim_shirt_convict{background-image:url(spritesmith2.png);background-position:-207px -1213px;width:60px;height:60px}.slim_shirt_cross{background-image:url(spritesmith2.png);background-position:-273px -1183px;width:90px;height:90px}.customize-option.slim_shirt_cross{background-image:url(spritesmith2.png);background-position:-298px -1213px;width:60px;height:60px}.slim_shirt_fire{background-image:url(spritesmith2.png);background-position:-364px -1183px;width:90px;height:90px}.customize-option.slim_shirt_fire{background-image:url(spritesmith2.png);background-position:-389px -1213px;width:60px;height:60px}.slim_shirt_green{background-image:url(spritesmith2.png);background-position:-455px -1183px;width:90px;height:90px}.customize-option.slim_shirt_green{background-image:url(spritesmith2.png);background-position:-480px -1213px;width:60px;height:60px}.slim_shirt_horizon{background-image:url(spritesmith2.png);background-position:-546px -1183px;width:90px;height:90px}.customize-option.slim_shirt_horizon{background-image:url(spritesmith2.png);background-position:-571px -1213px;width:60px;height:60px}.slim_shirt_ocean{background-image:url(spritesmith2.png);background-position:-637px -1183px;width:90px;height:90px}.customize-option.slim_shirt_ocean{background-image:url(spritesmith2.png);background-position:-662px -1213px;width:60px;height:60px}.slim_shirt_pink{background-image:url(spritesmith2.png);background-position:-728px -1183px;width:90px;height:90px}.customize-option.slim_shirt_pink{background-image:url(spritesmith2.png);background-position:-753px -1213px;width:60px;height:60px}.slim_shirt_purple{background-image:url(spritesmith2.png);background-position:-819px -1183px;width:90px;height:90px}.customize-option.slim_shirt_purple{background-image:url(spritesmith2.png);background-position:-844px -1213px;width:60px;height:60px}.slim_shirt_rainbow{background-image:url(spritesmith2.png);background-position:-910px -1183px;width:90px;height:90px}.customize-option.slim_shirt_rainbow{background-image:url(spritesmith2.png);background-position:-935px -1213px;width:60px;height:60px}.slim_shirt_redblue{background-image:url(spritesmith2.png);background-position:0 0;width:90px;height:90px}.customize-option.slim_shirt_redblue{background-image:url(spritesmith2.png);background-position:-25px -30px;width:60px;height:60px}.slim_shirt_thunder{background-image:url(spritesmith2.png);background-position:-1092px -1183px;width:90px;height:90px}.customize-option.slim_shirt_thunder{background-image:url(spritesmith2.png);background-position:-1117px -1213px;width:60px;height:60px}.slim_shirt_tropical{background-image:url(spritesmith2.png);background-position:-1183px -1183px;width:90px;height:90px}.customize-option.slim_shirt_tropical{background-image:url(spritesmith2.png);background-position:-1208px -1213px;width:60px;height:60px}.slim_shirt_white{background-image:url(spritesmith2.png);background-position:-1274px 0;width:90px;height:90px}.customize-option.slim_shirt_white{background-image:url(spritesmith2.png);background-position:-1299px -30px;width:60px;height:60px}.slim_shirt_yellow{background-image:url(spritesmith2.png);background-position:-1274px -91px;width:90px;height:90px}.customize-option.slim_shirt_yellow{background-image:url(spritesmith2.png);background-position:-1299px -121px;width:60px;height:60px}.slim_shirt_zombie{background-image:url(spritesmith2.png);background-position:-1274px -182px;width:90px;height:90px}.customize-option.slim_shirt_zombie{background-image:url(spritesmith2.png);background-position:-1299px -212px;width:60px;height:60px}.skin_0ff591{background-image:url(spritesmith2.png);background-position:-1274px -273px;width:90px;height:90px}.customize-option.skin_0ff591{background-image:url(spritesmith2.png);background-position:-1299px -288px;width:60px;height:60px}.skin_0ff591_sleep{background-image:url(spritesmith2.png);background-position:-1274px -364px;width:90px;height:90px}.customize-option.skin_0ff591_sleep{background-image:url(spritesmith2.png);background-position:-1299px -379px;width:60px;height:60px}.skin_2b43f6{background-image:url(spritesmith2.png);background-position:-1274px -455px;width:90px;height:90px}.customize-option.skin_2b43f6{background-image:url(spritesmith2.png);background-position:-1299px -470px;width:60px;height:60px}.skin_2b43f6_sleep{background-image:url(spritesmith2.png);background-position:-1274px -546px;width:90px;height:90px}.customize-option.skin_2b43f6_sleep{background-image:url(spritesmith2.png);background-position:-1299px -561px;width:60px;height:60px}.skin_6bd049{background-image:url(spritesmith2.png);background-position:-1274px -637px;width:90px;height:90px}.customize-option.skin_6bd049{background-image:url(spritesmith2.png);background-position:-1299px -652px;width:60px;height:60px}.skin_6bd049_sleep{background-image:url(spritesmith2.png);background-position:-1274px -728px;width:90px;height:90px}.customize-option.skin_6bd049_sleep{background-image:url(spritesmith2.png);background-position:-1299px -743px;width:60px;height:60px}.skin_800ed0{background-image:url(spritesmith2.png);background-position:-1274px -819px;width:90px;height:90px}.customize-option.skin_800ed0{background-image:url(spritesmith2.png);background-position:-1299px -834px;width:60px;height:60px}.skin_800ed0_sleep{background-image:url(spritesmith2.png);background-position:-1274px -910px;width:90px;height:90px}.customize-option.skin_800ed0_sleep{background-image:url(spritesmith2.png);background-position:-1299px -925px;width:60px;height:60px}.skin_915533{background-image:url(spritesmith2.png);background-position:-1274px -1001px;width:90px;height:90px}.customize-option.skin_915533{background-image:url(spritesmith2.png);background-position:-1299px -1016px;width:60px;height:60px}.skin_915533_sleep{background-image:url(spritesmith2.png);background-position:-1274px -1092px;width:90px;height:90px}.customize-option.skin_915533_sleep{background-image:url(spritesmith2.png);background-position:-1299px -1107px;width:60px;height:60px}.skin_98461a{background-image:url(spritesmith2.png);background-position:-1274px -1183px;width:90px;height:90px}.customize-option.skin_98461a{background-image:url(spritesmith2.png);background-position:-1299px -1198px;width:60px;height:60px}.skin_98461a_sleep{background-image:url(spritesmith2.png);background-position:0 -1274px;width:90px;height:90px}.customize-option.skin_98461a_sleep{background-image:url(spritesmith2.png);background-position:-25px -1289px;width:60px;height:60px}.skin_bear{background-image:url(spritesmith2.png);background-position:-91px -1274px;width:90px;height:90px}.customize-option.skin_bear{background-image:url(spritesmith2.png);background-position:-116px -1289px;width:60px;height:60px}.skin_bear_sleep{background-image:url(spritesmith2.png);background-position:-182px -1274px;width:90px;height:90px}.customize-option.skin_bear_sleep{background-image:url(spritesmith2.png);background-position:-207px -1289px;width:60px;height:60px}.skin_c06534{background-image:url(spritesmith2.png);background-position:-273px -1274px;width:90px;height:90px}.customize-option.skin_c06534{background-image:url(spritesmith2.png);background-position:-298px -1289px;width:60px;height:60px}.skin_c06534_sleep{background-image:url(spritesmith2.png);background-position:-364px -1274px;width:90px;height:90px}.customize-option.skin_c06534_sleep{background-image:url(spritesmith2.png);background-position:-389px -1289px;width:60px;height:60px}.skin_c3e1dc{background-image:url(spritesmith2.png);background-position:-455px -1274px;width:90px;height:90px}.customize-option.skin_c3e1dc{background-image:url(spritesmith2.png);background-position:-480px -1289px;width:60px;height:60px}.skin_c3e1dc_sleep{background-image:url(spritesmith2.png);background-position:-546px -1274px;width:90px;height:90px}.customize-option.skin_c3e1dc_sleep{background-image:url(spritesmith2.png);background-position:-571px -1289px;width:60px;height:60px}.skin_cactus{background-image:url(spritesmith2.png);background-position:-637px -1274px;width:90px;height:90px}.customize-option.skin_cactus{background-image:url(spritesmith2.png);background-position:-662px -1289px;width:60px;height:60px}.skin_cactus_sleep{background-image:url(spritesmith2.png);background-position:-728px -1274px;width:90px;height:90px}.customize-option.skin_cactus_sleep{background-image:url(spritesmith2.png);background-position:-753px -1289px;width:60px;height:60px}.skin_candycorn{background-image:url(spritesmith2.png);background-position:-819px -1274px;width:90px;height:90px}.customize-option.skin_candycorn{background-image:url(spritesmith2.png);background-position:-844px -1289px;width:60px;height:60px}.skin_candycorn_sleep{background-image:url(spritesmith2.png);background-position:-910px -1274px;width:90px;height:90px}.customize-option.skin_candycorn_sleep{background-image:url(spritesmith2.png);background-position:-935px -1289px;width:60px;height:60px}.skin_d7a9f7{background-image:url(spritesmith2.png);background-position:-1001px -1274px;width:90px;height:90px}.customize-option.skin_d7a9f7{background-image:url(spritesmith2.png);background-position:-1026px -1289px;width:60px;height:60px}.skin_d7a9f7_sleep{background-image:url(spritesmith2.png);background-position:-1092px -1274px;width:90px;height:90px}.customize-option.skin_d7a9f7_sleep{background-image:url(spritesmith2.png);background-position:-1117px -1289px;width:60px;height:60px}.skin_ddc994{background-image:url(spritesmith2.png);background-position:-1183px -1274px;width:90px;height:90px}.customize-option.skin_ddc994{background-image:url(spritesmith2.png);background-position:-1208px -1289px;width:60px;height:60px}.skin_ddc994_sleep{background-image:url(spritesmith2.png);background-position:-1274px -1274px;width:90px;height:90px}.customize-option.skin_ddc994_sleep{background-image:url(spritesmith2.png);background-position:-1299px -1289px;width:60px;height:60px}.skin_ea8349{background-image:url(spritesmith2.png);background-position:-1365px 0;width:90px;height:90px}.customize-option.skin_ea8349{background-image:url(spritesmith2.png);background-position:-1390px -15px;width:60px;height:60px}.skin_ea8349_sleep{background-image:url(spritesmith2.png);background-position:-1365px -91px;width:90px;height:90px}.customize-option.skin_ea8349_sleep{background-image:url(spritesmith2.png);background-position:-1390px -106px;width:60px;height:60px}.skin_eb052b{background-image:url(spritesmith2.png);background-position:-1365px -182px;width:90px;height:90px}.customize-option.skin_eb052b{background-image:url(spritesmith2.png);background-position:-1390px -197px;width:60px;height:60px}.skin_eb052b_sleep{background-image:url(spritesmith2.png);background-position:-1365px -273px;width:90px;height:90px}.customize-option.skin_eb052b_sleep{background-image:url(spritesmith2.png);background-position:-1390px -288px;width:60px;height:60px}.skin_f5a76e{background-image:url(spritesmith2.png);background-position:-1365px -364px;width:90px;height:90px}.customize-option.skin_f5a76e{background-image:url(spritesmith2.png);background-position:-1390px -379px;width:60px;height:60px}.skin_f5a76e_sleep{background-image:url(spritesmith2.png);background-position:-1365px -455px;width:90px;height:90px}.customize-option.skin_f5a76e_sleep{background-image:url(spritesmith2.png);background-position:-1390px -470px;width:60px;height:60px}.skin_f5d70f{background-image:url(spritesmith2.png);background-position:-1365px -546px;width:90px;height:90px}.customize-option.skin_f5d70f{background-image:url(spritesmith2.png);background-position:-1390px -561px;width:60px;height:60px}.skin_f5d70f_sleep{background-image:url(spritesmith2.png);background-position:-1365px -637px;width:90px;height:90px}.customize-option.skin_f5d70f_sleep{background-image:url(spritesmith2.png);background-position:-1390px -652px;width:60px;height:60px}.skin_f69922{background-image:url(spritesmith2.png);background-position:-1365px -728px;width:90px;height:90px}.customize-option.skin_f69922{background-image:url(spritesmith2.png);background-position:-1390px -743px;width:60px;height:60px}.skin_f69922_sleep{background-image:url(spritesmith2.png);background-position:-1365px -819px;width:90px;height:90px}.customize-option.skin_f69922_sleep{background-image:url(spritesmith2.png);background-position:-1390px -834px;width:60px;height:60px}.skin_fox{background-image:url(spritesmith2.png);background-position:-1365px -910px;width:90px;height:90px}.customize-option.skin_fox{background-image:url(spritesmith2.png);background-position:-1390px -925px;width:60px;height:60px}.skin_fox_sleep{background-image:url(spritesmith2.png);background-position:-1365px -1001px;width:90px;height:90px}.customize-option.skin_fox_sleep{background-image:url(spritesmith2.png);background-position:-1390px -1016px;width:60px;height:60px}.skin_ghost{background-image:url(spritesmith2.png);background-position:-1365px -1092px;width:90px;height:90px}.customize-option.skin_ghost{background-image:url(spritesmith2.png);background-position:-1390px -1107px;width:60px;height:60px}.skin_ghost_sleep{background-image:url(spritesmith2.png);background-position:-1365px -1183px;width:90px;height:90px}.customize-option.skin_ghost_sleep{background-image:url(spritesmith2.png);background-position:-1390px -1198px;width:60px;height:60px}.skin_lion{background-image:url(spritesmith2.png);background-position:-1365px -1274px;width:90px;height:90px}.customize-option.skin_lion{background-image:url(spritesmith2.png);background-position:-1390px -1289px;width:60px;height:60px}.skin_lion_sleep{background-image:url(spritesmith2.png);background-position:0 -1365px;width:90px;height:90px}.customize-option.skin_lion_sleep{background-image:url(spritesmith2.png);background-position:-25px -1380px;width:60px;height:60px}.skin_monster{background-image:url(spritesmith2.png);background-position:-91px -1365px;width:90px;height:90px}.customize-option.skin_monster{background-image:url(spritesmith2.png);background-position:-116px -1380px;width:60px;height:60px}.skin_monster_sleep{background-image:url(spritesmith2.png);background-position:-182px -1365px;width:90px;height:90px}.customize-option.skin_monster_sleep{background-image:url(spritesmith2.png);background-position:-207px -1380px;width:60px;height:60px}.skin_ogre{background-image:url(spritesmith2.png);background-position:-273px -1365px;width:90px;height:90px}.customize-option.skin_ogre{background-image:url(spritesmith2.png);background-position:-298px -1380px;width:60px;height:60px}.skin_ogre_sleep{background-image:url(spritesmith2.png);background-position:-364px -1365px;width:90px;height:90px}.customize-option.skin_ogre_sleep{background-image:url(spritesmith2.png);background-position:-389px -1380px;width:60px;height:60px}.skin_panda{background-image:url(spritesmith2.png);background-position:-455px -1365px;width:90px;height:90px}.customize-option.skin_panda{background-image:url(spritesmith2.png);background-position:-480px -1380px;width:60px;height:60px}.skin_panda_sleep{background-image:url(spritesmith2.png);background-position:-546px -1365px;width:90px;height:90px}.customize-option.skin_panda_sleep{background-image:url(spritesmith2.png);background-position:-571px -1380px;width:60px;height:60px}.skin_pastelBlue{background-image:url(spritesmith2.png);background-position:-637px -1365px;width:90px;height:90px}.customize-option.skin_pastelBlue{background-image:url(spritesmith2.png);background-position:-662px -1380px;width:60px;height:60px}.skin_pastelBlue_sleep{background-image:url(spritesmith2.png);background-position:-728px -1365px;width:90px;height:90px}.customize-option.skin_pastelBlue_sleep{background-image:url(spritesmith2.png);background-position:-753px -1380px;width:60px;height:60px}.skin_pastelGreen{background-image:url(spritesmith2.png);background-position:-819px -1365px;width:90px;height:90px}.customize-option.skin_pastelGreen{background-image:url(spritesmith2.png);background-position:-844px -1380px;width:60px;height:60px}.skin_pastelGreen_sleep{background-image:url(spritesmith2.png);background-position:-910px -1365px;width:90px;height:90px}.customize-option.skin_pastelGreen_sleep{background-image:url(spritesmith2.png);background-position:-935px -1380px;width:60px;height:60px}.skin_pastelOrange{background-image:url(spritesmith2.png);background-position:-1001px -1365px;width:90px;height:90px}.customize-option.skin_pastelOrange{background-image:url(spritesmith2.png);background-position:-1026px -1380px;width:60px;height:60px}.skin_pastelOrange_sleep{background-image:url(spritesmith2.png);background-position:-1092px -1365px;width:90px;height:90px}.customize-option.skin_pastelOrange_sleep{background-image:url(spritesmith2.png);background-position:-1117px -1380px;width:60px;height:60px}.skin_pastelPink{background-image:url(spritesmith2.png);background-position:-1183px -1365px;width:90px;height:90px}.customize-option.skin_pastelPink{background-image:url(spritesmith2.png);background-position:-1208px -1380px;width:60px;height:60px}.skin_pastelPink_sleep{background-image:url(spritesmith2.png);background-position:-1274px -1365px;width:90px;height:90px}.customize-option.skin_pastelPink_sleep{background-image:url(spritesmith2.png);background-position:-1299px -1380px;width:60px;height:60px}.skin_pastelPurple{background-image:url(spritesmith2.png);background-position:-1365px -1365px;width:90px;height:90px}.customize-option.skin_pastelPurple{background-image:url(spritesmith2.png);background-position:-1390px -1380px;width:60px;height:60px}.skin_pastelPurple_sleep{background-image:url(spritesmith2.png);background-position:-1456px 0;width:90px;height:90px}.customize-option.skin_pastelPurple_sleep{background-image:url(spritesmith2.png);background-position:-1481px -15px;width:60px;height:60px}.skin_pastelRainbowChevron{background-image:url(spritesmith2.png);background-position:-1456px -91px;width:90px;height:90px}.customize-option.skin_pastelRainbowChevron{background-image:url(spritesmith2.png);background-position:-1481px -106px;width:60px;height:60px}.skin_pastelRainbowChevron_sleep{background-image:url(spritesmith2.png);background-position:-1456px -182px;width:90px;height:90px}.customize-option.skin_pastelRainbowChevron_sleep{background-image:url(spritesmith2.png);background-position:-1481px -197px;width:60px;height:60px}.skin_pastelRainbowDiagonal{background-image:url(spritesmith2.png);background-position:-1456px -273px;width:90px;height:90px}.customize-option.skin_pastelRainbowDiagonal{background-image:url(spritesmith2.png);background-position:-1481px -288px;width:60px;height:60px}.skin_pastelRainbowDiagonal_sleep{background-image:url(spritesmith2.png);background-position:-1456px -364px;width:90px;height:90px}.customize-option.skin_pastelRainbowDiagonal_sleep{background-image:url(spritesmith2.png);background-position:-1481px -379px;width:60px;height:60px}.skin_pastelYellow{background-image:url(spritesmith2.png);background-position:-1456px -455px;width:90px;height:90px}.customize-option.skin_pastelYellow{background-image:url(spritesmith2.png);background-position:-1481px -470px;width:60px;height:60px}.skin_pastelYellow_sleep{background-image:url(spritesmith2.png);background-position:-1456px -546px;width:90px;height:90px}.customize-option.skin_pastelYellow_sleep{background-image:url(spritesmith2.png);background-position:-1481px -561px;width:60px;height:60px}.skin_pig{background-image:url(spritesmith2.png);background-position:-1456px -637px;width:90px;height:90px}.customize-option.skin_pig{background-image:url(spritesmith2.png);background-position:-1481px -652px;width:60px;height:60px}.skin_pig_sleep{background-image:url(spritesmith2.png);background-position:-1456px -728px;width:90px;height:90px}.customize-option.skin_pig_sleep{background-image:url(spritesmith2.png);background-position:-1481px -743px;width:60px;height:60px}.skin_pumpkin{background-image:url(spritesmith2.png);background-position:-1456px -819px;width:90px;height:90px}.customize-option.skin_pumpkin{background-image:url(spritesmith2.png);background-position:-1481px -834px;width:60px;height:60px}.skin_pumpkin2{background-image:url(spritesmith2.png);background-position:-1456px -910px;width:90px;height:90px}.customize-option.skin_pumpkin2{background-image:url(spritesmith2.png);background-position:-1481px -925px;width:60px;height:60px}.skin_pumpkin2_sleep{background-image:url(spritesmith2.png);background-position:-1456px -1001px;width:90px;height:90px}.customize-option.skin_pumpkin2_sleep{background-image:url(spritesmith2.png);background-position:-1481px -1016px;width:60px;height:60px}.skin_pumpkin_sleep{background-image:url(spritesmith2.png);background-position:-1456px -1092px;width:90px;height:90px}.customize-option.skin_pumpkin_sleep{background-image:url(spritesmith2.png);background-position:-1481px -1107px;width:60px;height:60px}.skin_rainbow{background-image:url(spritesmith2.png);background-position:-1456px -1183px;width:90px;height:90px}.customize-option.skin_rainbow{background-image:url(spritesmith2.png);background-position:-1481px -1198px;width:60px;height:60px}.skin_rainbow_sleep{background-image:url(spritesmith2.png);background-position:-1456px -1274px;width:90px;height:90px}.customize-option.skin_rainbow_sleep{background-image:url(spritesmith2.png);background-position:-1481px -1289px;width:60px;height:60px}.skin_reptile{background-image:url(spritesmith2.png);background-position:-1456px -1365px;width:90px;height:90px}.customize-option.skin_reptile{background-image:url(spritesmith2.png);background-position:-1481px -1380px;width:60px;height:60px}.skin_reptile_sleep{background-image:url(spritesmith2.png);background-position:0 -1456px;width:90px;height:90px}.customize-option.skin_reptile_sleep{background-image:url(spritesmith2.png);background-position:-25px -1471px;width:60px;height:60px}.skin_shadow{background-image:url(spritesmith2.png);background-position:-91px -1456px;width:90px;height:90px}.customize-option.skin_shadow{background-image:url(spritesmith2.png);background-position:-116px -1471px;width:60px;height:60px}.skin_shadow2{background-image:url(spritesmith2.png);background-position:-182px -1456px;width:90px;height:90px}.customize-option.skin_shadow2{background-image:url(spritesmith2.png);background-position:-207px -1471px;width:60px;height:60px}.skin_shadow2_sleep{background-image:url(spritesmith2.png);background-position:-273px -1456px;width:90px;height:90px}.customize-option.skin_shadow2_sleep{background-image:url(spritesmith2.png);background-position:-298px -1471px;width:60px;height:60px}.skin_shadow_sleep{background-image:url(spritesmith2.png);background-position:-364px -1456px;width:90px;height:90px}.customize-option.skin_shadow_sleep{background-image:url(spritesmith2.png);background-position:-389px -1471px;width:60px;height:60px}.skin_skeleton{background-image:url(spritesmith2.png);background-position:-455px -1456px;width:90px;height:90px}.customize-option.skin_skeleton{background-image:url(spritesmith2.png);background-position:-480px -1471px;width:60px;height:60px}.skin_skeleton2{background-image:url(spritesmith2.png);background-position:-546px -1456px;width:90px;height:90px}.customize-option.skin_skeleton2{background-image:url(spritesmith2.png);background-position:-571px -1471px;width:60px;height:60px}.skin_skeleton2_sleep{background-image:url(spritesmith2.png);background-position:-637px -1456px;width:90px;height:90px}.customize-option.skin_skeleton2_sleep{background-image:url(spritesmith2.png);background-position:-662px -1471px;width:60px;height:60px}.skin_skeleton_sleep{background-image:url(spritesmith2.png);background-position:-728px -1456px;width:90px;height:90px}.customize-option.skin_skeleton_sleep{background-image:url(spritesmith2.png);background-position:-753px -1471px;width:60px;height:60px}.skin_tiger{background-image:url(spritesmith2.png);background-position:-819px -1456px;width:90px;height:90px}.customize-option.skin_tiger{background-image:url(spritesmith2.png);background-position:-844px -1471px;width:60px;height:60px}.skin_tiger_sleep{background-image:url(spritesmith2.png);background-position:-910px -1456px;width:90px;height:90px}.customize-option.skin_tiger_sleep{background-image:url(spritesmith2.png);background-position:-935px -1471px;width:60px;height:60px}.skin_transparent{background-image:url(spritesmith2.png);background-position:-1001px -1456px;width:90px;height:90px}.customize-option.skin_transparent{background-image:url(spritesmith2.png);background-position:-1026px -1471px;width:60px;height:60px}.skin_transparent_sleep{background-image:url(spritesmith2.png);background-position:-1092px -1456px;width:90px;height:90px}.customize-option.skin_transparent_sleep{background-image:url(spritesmith2.png);background-position:-1117px -1471px;width:60px;height:60px}.skin_wolf{background-image:url(spritesmith2.png);background-position:-1183px -1456px;width:90px;height:90px}.customize-option.skin_wolf{background-image:url(spritesmith2.png);background-position:-1208px -1471px;width:60px;height:60px}.skin_wolf_sleep{background-image:url(spritesmith2.png);background-position:-1274px -1456px;width:90px;height:90px}.customize-option.skin_wolf_sleep{background-image:url(spritesmith2.png);background-position:-1299px -1471px;width:60px;height:60px}.skin_zombie{background-image:url(spritesmith2.png);background-position:-1365px -1456px;width:90px;height:90px}.customize-option.skin_zombie{background-image:url(spritesmith2.png);background-position:-1390px -1471px;width:60px;height:60px}.skin_zombie2{background-image:url(spritesmith2.png);background-position:-1456px -1456px;width:90px;height:90px}.customize-option.skin_zombie2{background-image:url(spritesmith2.png);background-position:-1481px -1471px;width:60px;height:60px}.skin_zombie2_sleep{background-image:url(spritesmith2.png);background-position:-1547px 0;width:90px;height:90px}.customize-option.skin_zombie2_sleep{background-image:url(spritesmith2.png);background-position:-1572px -15px;width:60px;height:60px}.skin_zombie_sleep{background-image:url(spritesmith2.png);background-position:-1547px -91px;width:90px;height:90px}.customize-option.skin_zombie_sleep{background-image:url(spritesmith2.png);background-position:-1572px -106px;width:60px;height:60px}.broad_armor_armoire_gladiatorArmor{background-image:url(spritesmith2.png);background-position:-1547px -182px;width:90px;height:90px}.broad_armor_armoire_lunarArmor{background-image:url(spritesmith2.png);background-position:-1547px -273px;width:90px;height:90px}.head_armoire_gladiatorHelm{background-image:url(spritesmith2.png);background-position:-1547px -364px;width:90px;height:90px}.head_armoire_lunarCrown{background-image:url(spritesmith2.png);background-position:-1547px -455px;width:90px;height:90px}.head_armoire_rancherHat{background-image:url(spritesmith2.png);background-position:-1547px -546px;width:90px;height:90px}.head_armoire_redHairbow{background-image:url(spritesmith2.png);background-position:-1547px -637px;width:90px;height:90px}.head_armoire_violetFloppyHat{background-image:url(spritesmith2.png);background-position:-1547px -728px;width:90px;height:90px}.shield_armoire_gladiatorShield{background-image:url(spritesmith2.png);background-position:-1547px -819px;width:90px;height:90px}.shop_armor_armoire_gladiatorArmor{background-image:url(spritesmith2.png);background-position:-1590px -1679px;width:40px;height:40px}.shop_armor_armoire_lunarArmor{background-image:url(spritesmith2.png);background-position:-1549px -1679px;width:40px;height:40px}.shop_head_armoire_gladiatorHelm{background-image:url(spritesmith2.png);background-position:-1508px -1679px;width:40px;height:40px}.shop_head_armoire_lunarCrown{background-image:url(spritesmith2.png);background-position:-1467px -1679px;width:40px;height:40px}.shop_head_armoire_rancherHat{background-image:url(spritesmith2.png);background-position:-1344px -1679px;width:40px;height:40px}.shop_head_armoire_redHairbow{background-image:url(spritesmith2.png);background-position:-1303px -1679px;width:40px;height:40px}.shop_head_armoire_violetFloppyHat{background-image:url(spritesmith2.png);background-position:-1262px -1679px;width:40px;height:40px}.shop_shield_armoire_gladiatorShield{background-image:url(spritesmith2.png);background-position:-1221px -1679px;width:40px;height:40px}.shop_weapon_armoire_basicCrossbow{background-image:url(spritesmith2.png);background-position:-1180px -1679px;width:40px;height:40px}.shop_weapon_armoire_lunarSceptre{background-image:url(spritesmith2.png);background-position:-1139px -1679px;width:40px;height:40px}.slim_armor_armoire_gladiatorArmor{background-image:url(spritesmith2.png);background-position:-303px -1547px;width:90px;height:90px}.slim_armor_armoire_lunarArmor{background-image:url(spritesmith2.png);background-position:-394px -1547px;width:90px;height:90px}.weapon_armoire_basicCrossbow{background-image:url(spritesmith2.png);background-position:-485px -1547px;width:90px;height:90px}.weapon_armoire_lunarSceptre{background-image:url(spritesmith2.png);background-position:-576px -1547px;width:90px;height:90px}.broad_armor_healer_1{background-image:url(spritesmith2.png);background-position:-667px -1547px;width:90px;height:90px}.broad_armor_healer_2{background-image:url(spritesmith2.png);background-position:-758px -1547px;width:90px;height:90px}.broad_armor_healer_3{background-image:url(spritesmith2.png);background-position:-849px -1547px;width:90px;height:90px}.broad_armor_healer_4{background-image:url(spritesmith2.png);background-position:-940px -1547px;width:90px;height:90px}.broad_armor_healer_5{background-image:url(spritesmith2.png);background-position:-1031px -1547px;width:90px;height:90px}.broad_armor_rogue_1{background-image:url(spritesmith2.png);background-position:-1122px -1547px;width:90px;height:90px}.broad_armor_rogue_2{background-image:url(spritesmith2.png);background-position:-1213px -1547px;width:90px;height:90px}.broad_armor_rogue_3{background-image:url(spritesmith2.png);background-position:-1304px -1547px;width:90px;height:90px}.broad_armor_rogue_4{background-image:url(spritesmith2.png);background-position:-1395px -1547px;width:90px;height:90px}.broad_armor_rogue_5{background-image:url(spritesmith2.png);background-position:-1486px -1547px;width:90px;height:90px}.broad_armor_special_2{background-image:url(spritesmith2.png);background-position:-1638px 0;width:90px;height:90px}.broad_armor_warrior_1{background-image:url(spritesmith2.png);background-position:-1638px -91px;width:90px;height:90px}.broad_armor_warrior_2{background-image:url(spritesmith2.png);background-position:-1638px -182px;width:90px;height:90px}.broad_armor_warrior_3{background-image:url(spritesmith2.png);background-position:-1638px -273px;width:90px;height:90px}.broad_armor_warrior_4{background-image:url(spritesmith2.png);background-position:-1638px -364px;width:90px;height:90px}.broad_armor_warrior_5{background-image:url(spritesmith2.png);background-position:-1638px -455px;width:90px;height:90px}.broad_armor_wizard_1{background-image:url(spritesmith2.png);background-position:-1638px -546px;width:90px;height:90px}.broad_armor_wizard_2{background-image:url(spritesmith2.png);background-position:-1638px -637px;width:90px;height:90px}.broad_armor_wizard_3{background-image:url(spritesmith2.png);background-position:-1638px -728px;width:90px;height:90px}.broad_armor_wizard_4{background-image:url(spritesmith2.png);background-position:-1638px -819px;width:90px;height:90px}.broad_armor_wizard_5{background-image:url(spritesmith2.png);background-position:-1638px -910px;width:90px;height:90px}.shop_armor_healer_1{background-image:url(spritesmith2.png);background-position:-1098px -1679px;width:40px;height:40px}.shop_armor_healer_2{background-image:url(spritesmith2.png);background-position:-1057px -1679px;width:40px;height:40px}.shop_armor_healer_3{background-image:url(spritesmith2.png);background-position:-1016px -1679px;width:40px;height:40px}.shop_armor_healer_4{background-image:url(spritesmith2.png);background-position:-1672px -1638px;width:40px;height:40px}.shop_armor_healer_5{background-image:url(spritesmith2.png);background-position:-1631px -1679px;width:40px;height:40px}.shop_armor_rogue_1{background-image:url(spritesmith2.png);background-position:-1590px -1638px;width:40px;height:40px}.shop_armor_rogue_2{background-image:url(spritesmith2.png);background-position:-1549px -1638px;width:40px;height:40px}.shop_armor_rogue_3{background-image:url(spritesmith2.png);background-position:-1508px -1638px;width:40px;height:40px}.shop_armor_rogue_4{background-image:url(spritesmith2.png);background-position:-1467px -1638px;width:40px;height:40px}.shop_armor_rogue_5{background-image:url(spritesmith2.png);background-position:-1426px -1638px;width:40px;height:40px}.shop_armor_special_0{background-image:url(spritesmith2.png);background-position:-1385px -1638px;width:40px;height:40px}.shop_armor_special_1{background-image:url(spritesmith2.png);background-position:-1344px -1638px;width:40px;height:40px}.shop_armor_special_2{background-image:url(spritesmith2.png);background-position:-1303px -1638px;width:40px;height:40px}.shop_armor_warrior_1{background-image:url(spritesmith2.png);background-position:-1262px -1638px;width:40px;height:40px}.shop_armor_warrior_2{background-image:url(spritesmith2.png);background-position:-1221px -1638px;width:40px;height:40px}.shop_armor_warrior_3{background-image:url(spritesmith2.png);background-position:-1180px -1638px;width:40px;height:40px}.shop_armor_warrior_4{background-image:url(spritesmith2.png);background-position:-1139px -1638px;width:40px;height:40px}.shop_armor_warrior_5{background-image:url(spritesmith2.png);background-position:-1577px -1547px;width:40px;height:40px}.shop_armor_wizard_1{background-image:url(spritesmith2.png);background-position:-1631px -1638px;width:40px;height:40px}.shop_armor_wizard_2{background-image:url(spritesmith2.png);background-position:-1577px -1588px;width:40px;height:40px}.shop_armor_wizard_3{background-image:url(spritesmith2.png);background-position:-1016px -1638px;width:40px;height:40px}.shop_armor_wizard_4{background-image:url(spritesmith2.png);background-position:-1057px -1638px;width:40px;height:40px}.shop_armor_wizard_5{background-image:url(spritesmith2.png);background-position:-1098px -1638px;width:40px;height:40px}.slim_armor_healer_1{background-image:url(spritesmith2.png);background-position:-819px -1638px;width:90px;height:90px}.slim_armor_healer_2{background-image:url(spritesmith2.png);background-position:-728px -1638px;width:90px;height:90px}.slim_armor_healer_3{background-image:url(spritesmith2.png);background-position:-637px -1638px;width:90px;height:90px}.slim_armor_healer_4{background-image:url(spritesmith2.png);background-position:-546px -1638px;width:90px;height:90px}.slim_armor_healer_5{background-image:url(spritesmith2.png);background-position:-455px -1638px;width:90px;height:90px}.slim_armor_rogue_1{background-image:url(spritesmith2.png);background-position:-364px -1638px;width:90px;height:90px}.slim_armor_rogue_2{background-image:url(spritesmith2.png);background-position:-273px -1638px;width:90px;height:90px}.slim_armor_rogue_3{background-image:url(spritesmith2.png);background-position:-182px -1638px;width:90px;height:90px}.slim_armor_rogue_4{background-image:url(spritesmith2.png);background-position:-91px -1638px;width:90px;height:90px}.slim_armor_rogue_5{background-image:url(spritesmith2.png);background-position:0 -1638px;width:90px;height:90px}.slim_armor_special_2{background-image:url(spritesmith2.png);background-position:-1638px -1547px;width:90px;height:90px}.slim_armor_warrior_1{background-image:url(spritesmith2.png);background-position:-1638px -1456px;width:90px;height:90px}.slim_armor_warrior_2{background-image:url(spritesmith2.png);background-position:-1638px -1365px;width:90px;height:90px}.slim_armor_warrior_3{background-image:url(spritesmith2.png);background-position:-1638px -1274px;width:90px;height:90px}.slim_armor_warrior_4{background-image:url(spritesmith2.png);background-position:-1638px -1183px;width:90px;height:90px}.slim_armor_warrior_5{background-image:url(spritesmith2.png);background-position:-1638px -1092px;width:90px;height:90px}.slim_armor_wizard_1{background-image:url(spritesmith2.png);background-position:-1638px -1001px;width:90px;height:90px}.slim_armor_wizard_2{background-image:url(spritesmith2.png);background-position:-212px -1547px;width:90px;height:90px}.slim_armor_wizard_3{background-image:url(spritesmith2.png);background-position:-121px -1547px;width:90px;height:90px}.slim_armor_wizard_4{background-image:url(spritesmith2.png);background-position:-1547px -1456px;width:90px;height:90px}.slim_armor_wizard_5{background-image:url(spritesmith2.png);background-position:-1547px -1365px;width:90px;height:90px}.broad_armor_special_birthday{background-image:url(spritesmith2.png);background-position:-1547px -1274px;width:90px;height:90px}.broad_armor_special_birthday2015{background-image:url(spritesmith2.png);background-position:-1547px -1183px;width:90px;height:90px}.shop_armor_special_birthday{background-image:url(spritesmith2.png);background-position:-1385px -1679px;width:40px;height:40px}.shop_armor_special_birthday2015{background-image:url(spritesmith2.png);background-position:-1426px -1679px;width:40px;height:40px}.slim_armor_special_birthday{background-image:url(spritesmith2.png);background-position:-1547px -1092px;width:90px;height:90px}.slim_armor_special_birthday2015{background-image:url(spritesmith2.png);background-position:-1547px -1001px;width:90px;height:90px}.broad_armor_special_fallHealer{background-image:url(spritesmith2.png);background-position:-1547px -910px;width:90px;height:90px}.broad_armor_special_fallMage{background-image:url(spritesmith2.png);background-position:0 -1547px;width:120px;height:90px}.broad_armor_special_fallRogue{background-image:url(spritesmith2.png);background-position:-910px -1638px;width:105px;height:90px}.broad_armor_special_fallWarrior{background-image:url(spritesmith3.png);background-position:-546px 0;width:90px;height:90px}.head_special_fallHealer{background-image:url(spritesmith3.png);background-position:-455px -870px;width:90px;height:90px}.head_special_fallMage{background-image:url(spritesmith3.png);background-position:-1001px 0;width:120px;height:90px}.head_special_fallRogue{background-image:url(spritesmith3.png);background-position:0 -506px;width:105px;height:90px}.head_special_fallWarrior{background-image:url(spritesmith3.png);background-position:-546px -91px;width:90px;height:90px}.shield_special_fallHealer{background-image:url(spritesmith3.png);background-position:-91px -961px;width:90px;height:90px}.shield_special_fallRogue{background-image:url(spritesmith3.png);background-position:-182px -961px;width:105px;height:90px}.shield_special_fallWarrior{background-image:url(spritesmith3.png);background-position:-288px -961px;width:90px;height:90px}.shop_armor_special_fallHealer{background-image:url(spritesmith3.png);background-position:-1124px -1366px;width:40px;height:40px}.shop_armor_special_fallMage{background-image:url(spritesmith3.png);background-position:-1165px -1366px;width:40px;height:40px}.shop_armor_special_fallRogue{background-image:url(spritesmith3.png);background-position:-1288px -1366px;width:40px;height:40px}.shop_armor_special_fallWarrior{background-image:url(spritesmith3.png);background-position:-1431px -82px;width:40px;height:40px}.shop_head_special_fallHealer{background-image:url(spritesmith3.png);background-position:-1431px -123px;width:40px;height:40px}.shop_head_special_fallMage{background-image:url(spritesmith3.png);background-position:-1431px -328px;width:40px;height:40px}.shop_head_special_fallRogue{background-image:url(spritesmith3.png);background-position:-1472px -738px;width:40px;height:40px}.shop_head_special_fallWarrior{background-image:url(spritesmith3.png);background-position:-1472px -779px;width:40px;height:40px}.shop_shield_special_fallHealer{background-image:url(spritesmith3.png);background-position:-1472px -984px;width:40px;height:40px}.shop_shield_special_fallRogue{background-image:url(spritesmith3.png);background-position:-1228px -1092px;width:40px;height:40px}.shop_shield_special_fallWarrior{background-image:url(spritesmith3.png);background-position:-1269px -1092px;width:40px;height:40px}.shop_weapon_special_fallHealer{background-image:url(spritesmith3.png);background-position:-1122px -1001px;width:40px;height:40px}.shop_weapon_special_fallMage{background-image:url(spritesmith3.png);background-position:-1042px -910px;width:40px;height:40px}.shop_weapon_special_fallRogue{background-image:url(spritesmith3.png);background-position:-587px -455px;width:40px;height:40px}.shop_weapon_special_fallWarrior{background-image:url(spritesmith3.png);background-position:-455px -364px;width:40px;height:40px}.slim_armor_special_fallHealer{background-image:url(spritesmith3.png);background-position:-379px -961px;width:90px;height:90px}.slim_armor_special_fallMage{background-image:url(spritesmith3.png);background-position:-918px -961px;width:120px;height:90px}.slim_armor_special_fallRogue{background-image:url(spritesmith3.png);background-position:-1122px 0;width:105px;height:90px}.slim_armor_special_fallWarrior{background-image:url(spritesmith3.png);background-position:-1122px -91px;width:90px;height:90px}.weapon_special_fallHealer{background-image:url(spritesmith3.png);background-position:-1122px -182px;width:90px;height:90px}.weapon_special_fallMage{background-image:url(spritesmith3.png);background-position:-448px -1052px;width:120px;height:90px}.weapon_special_fallRogue{background-image:url(spritesmith3.png);background-position:-1122px -273px;width:105px;height:90px}.weapon_special_fallWarrior{background-image:url(spritesmith3.png);background-position:-1122px -364px;width:90px;height:90px}.broad_armor_special_gaymerx{background-image:url(spritesmith3.png);background-position:-1122px -455px;width:90px;height:90px}.head_special_gaymerx{background-image:url(spritesmith3.png);background-position:-1122px -546px;width:90px;height:90px}.shop_armor_special_gaymerx{background-image:url(spritesmith3.png);background-position:-1472px -1107px;width:40px;height:40px}.shop_head_special_gaymerx{background-image:url(spritesmith3.png);background-position:-1472px -1148px;width:40px;height:40px}.slim_armor_special_gaymerx{background-image:url(spritesmith3.png);background-position:-182px -318px;width:90px;height:90px}.back_mystery_201402{background-image:url(spritesmith3.png);background-position:-273px -318px;width:90px;height:90px}.broad_armor_mystery_201402{background-image:url(spritesmith3.png);background-position:-364px -318px;width:90px;height:90px}.head_mystery_201402{background-image:url(spritesmith3.png);background-position:-455px 0;width:90px;height:90px}.shop_armor_mystery_201402{background-image:url(spritesmith3.png);background-position:-728px -637px;width:40px;height:40px}.shop_back_mystery_201402{background-image:url(spritesmith3.png);background-position:-769px -637px;width:40px;height:40px}.shop_head_mystery_201402{background-image:url(spritesmith3.png);background-position:-546px -455px;width:40px;height:40px}.slim_armor_mystery_201402{background-image:url(spritesmith3.png);background-position:-455px -91px;width:90px;height:90px}.broad_armor_mystery_201403{background-image:url(spritesmith3.png);background-position:-455px -182px;width:90px;height:90px}.headAccessory_mystery_201403{background-image:url(spritesmith3.png);background-position:-455px -273px;width:90px;height:90px}.shop_armor_mystery_201403{background-image:url(spritesmith3.png);background-position:-1370px -1325px;width:40px;height:40px}.shop_headAccessory_mystery_201403{background-image:url(spritesmith3.png);background-position:-1083px -1366px;width:40px;height:40px}.slim_armor_mystery_201403{background-image:url(spritesmith3.png);background-position:0 -415px;width:90px;height:90px}.back_mystery_201404{background-image:url(spritesmith3.png);background-position:-91px -415px;width:90px;height:90px}.headAccessory_mystery_201404{background-image:url(spritesmith3.png);background-position:-182px -415px;width:90px;height:90px}.shop_back_mystery_201404{background-image:url(spritesmith3.png);background-position:-1329px -1366px;width:40px;height:40px}.shop_headAccessory_mystery_201404{background-image:url(spritesmith3.png);background-position:-1370px -1366px;width:40px;height:40px}.broad_armor_mystery_201405{background-image:url(spritesmith3.png);background-position:-273px -415px;width:90px;height:90px}.head_mystery_201405{background-image:url(spritesmith3.png);background-position:-364px -415px;width:90px;height:90px}.shop_armor_mystery_201405{background-image:url(spritesmith3.png);background-position:-1431px -246px;width:40px;height:40px}.shop_head_mystery_201405{background-image:url(spritesmith3.png);background-position:-1431px -287px;width:40px;height:40px}.slim_armor_mystery_201405{background-image:url(spritesmith3.png);background-position:-455px -415px;width:90px;height:90px}.broad_armor_mystery_201406{background-image:url(spritesmith3.png);background-position:-364px -106px;width:90px;height:96px}.head_mystery_201406{background-image:url(spritesmith3.png);background-position:0 -318px;width:90px;height:96px}.shop_armor_mystery_201406{background-image:url(spritesmith3.png);background-position:-1472px -820px;width:40px;height:40px}.shop_head_mystery_201406{background-image:url(spritesmith3.png);background-position:-1472px -943px;width:40px;height:40px}.slim_armor_mystery_201406{background-image:url(spritesmith3.png);background-position:-364px -203px;width:90px;height:96px}.broad_armor_mystery_201407{background-image:url(spritesmith3.png);background-position:-546px -182px;width:90px;height:90px}.head_mystery_201407{background-image:url(spritesmith3.png);background-position:-546px -273px;width:90px;height:90px}.shop_armor_mystery_201407{background-image:url(spritesmith3.png);background-position:-1472px -1189px;width:40px;height:40px}.shop_head_mystery_201407{background-image:url(spritesmith3.png);background-position:-1472px -1230px;width:40px;height:40px}.slim_armor_mystery_201407{background-image:url(spritesmith3.png);background-position:-546px -364px;width:90px;height:90px}.broad_armor_mystery_201408{background-image:url(spritesmith3.png);background-position:-106px -506px;width:90px;height:90px}.head_mystery_201408{background-image:url(spritesmith3.png);background-position:-197px -506px;width:90px;height:90px}.shop_armor_mystery_201408{background-image:url(spritesmith3.png);background-position:-1163px -1001px;width:40px;height:40px}.shop_head_mystery_201408{background-image:url(spritesmith3.png);background-position:-1001px -910px;width:40px;height:40px}.slim_armor_mystery_201408{background-image:url(spritesmith3.png);background-position:-288px -506px;width:90px;height:90px}.broad_armor_mystery_201409{background-image:url(spritesmith3.png);background-position:-379px -506px;width:90px;height:90px}.headAccessory_mystery_201409{background-image:url(spritesmith3.png);background-position:-470px -506px;width:90px;height:90px}.shop_armor_mystery_201409{background-image:url(spritesmith3.png);background-position:-637px -546px;width:40px;height:40px}.shop_headAccessory_mystery_201409{background-image:url(spritesmith3.png);background-position:-678px -546px;width:40px;height:40px}.slim_armor_mystery_201409{background-image:url(spritesmith3.png);background-position:-637px 0;width:90px;height:90px}.back_mystery_201410{background-image:url(spritesmith3.png);background-position:0 -597px;width:93px;height:90px}.broad_armor_mystery_201410{background-image:url(spritesmith3.png);background-position:-94px -597px;width:93px;height:90px}.shop_armor_mystery_201410{background-image:url(spritesmith3.png);background-position:-1247px -1325px;width:40px;height:40px}.shop_back_mystery_201410{background-image:url(spritesmith3.png);background-position:-1288px -1325px;width:40px;height:40px}.slim_armor_mystery_201410{background-image:url(spritesmith3.png);background-position:-188px -597px;width:93px;height:90px}.head_mystery_201411{background-image:url(spritesmith3.png);background-position:-637px -91px;width:90px;height:90px}.shop_head_mystery_201411{background-image:url(spritesmith3.png);background-position:-1001px -1366px;width:40px;height:40px}.shop_weapon_mystery_201411{background-image:url(spritesmith3.png);background-position:-1042px -1366px;width:40px;height:40px}.weapon_mystery_201411{background-image:url(spritesmith3.png);background-position:-637px -182px;width:90px;height:90px}.broad_armor_mystery_201412{background-image:url(spritesmith3.png);background-position:-637px -273px;width:90px;height:90px}.head_mystery_201412{background-image:url(spritesmith3.png);background-position:-637px -364px;width:90px;height:90px}.shop_armor_mystery_201412{background-image:url(spritesmith3.png);background-position:-1206px -1366px;width:40px;height:40px}.shop_head_mystery_201412{background-image:url(spritesmith3.png);background-position:-1247px -1366px;width:40px;height:40px}.slim_armor_mystery_201412{background-image:url(spritesmith3.png);background-position:-637px -455px;width:90px;height:90px}.broad_armor_mystery_201501{background-image:url(spritesmith3.png);background-position:-282px -597px;width:90px;height:90px}.head_mystery_201501{background-image:url(spritesmith3.png);background-position:-373px -597px;width:90px;height:90px}.shop_armor_mystery_201501{background-image:url(spritesmith3.png);background-position:-1431px 0;width:40px;height:40px}.shop_head_mystery_201501{background-image:url(spritesmith3.png);background-position:-1431px -41px;width:40px;height:40px}.slim_armor_mystery_201501{background-image:url(spritesmith3.png);background-position:-464px -597px;width:90px;height:90px}.headAccessory_mystery_201502{background-image:url(spritesmith3.png);background-position:-555px -597px;width:90px;height:90px}.shop_headAccessory_mystery_201502{background-image:url(spritesmith3.png);background-position:-1431px -164px;width:40px;height:40px}.shop_weapon_mystery_201502{background-image:url(spritesmith3.png);background-position:-1431px -205px;width:40px;height:40px}.weapon_mystery_201502{background-image:url(spritesmith3.png);background-position:-728px 0;width:90px;height:90px}.broad_armor_mystery_201503{background-image:url(spritesmith3.png);background-position:-728px -91px;width:90px;height:90px}.eyewear_mystery_201503{background-image:url(spritesmith3.png);background-position:-728px -182px;width:90px;height:90px}.shop_armor_mystery_201503{background-image:url(spritesmith3.png);background-position:-1472px -451px;width:40px;height:40px}.shop_eyewear_mystery_201503{background-image:url(spritesmith3.png);background-position:-1472px -697px;width:40px;height:40px}.slim_armor_mystery_201503{background-image:url(spritesmith3.png);background-position:-728px -273px;width:90px;height:90px}.back_mystery_201504{background-image:url(spritesmith3.png);background-position:-728px -364px;width:90px;height:90px}.broad_armor_mystery_201504{background-image:url(spritesmith3.png);background-position:-728px -455px;width:90px;height:90px}.shop_armor_mystery_201504{background-image:url(spritesmith3.png);background-position:-1472px -861px;width:40px;height:40px}.shop_back_mystery_201504{background-image:url(spritesmith3.png);background-position:-1472px -902px;width:40px;height:40px}.slim_armor_mystery_201504{background-image:url(spritesmith3.png);background-position:-728px -546px;width:90px;height:90px}.head_mystery_201505{background-image:url(spritesmith3.png);background-position:0 -688px;width:90px;height:90px}.shop_head_mystery_201505{background-image:url(spritesmith3.png);background-position:-1472px -1025px;width:40px;height:40px}.shop_weapon_mystery_201505{background-image:url(spritesmith3.png);background-position:-1472px -1066px;width:40px;height:40px}.weapon_mystery_201505{background-image:url(spritesmith3.png);background-position:-91px -688px;width:90px;height:90px}.broad_armor_mystery_301404{background-image:url(spritesmith3.png);background-position:-182px -688px;width:90px;height:90px}.eyewear_mystery_301404{background-image:url(spritesmith3.png);background-position:-273px -688px;width:90px;height:90px}.head_mystery_301404{background-image:url(spritesmith3.png);background-position:-364px -688px;width:90px;height:90px}.shop_armor_mystery_301404{background-image:url(spritesmith3.png);background-position:-1472px -1271px;width:40px;height:40px}.shop_eyewear_mystery_301404{background-image:url(spritesmith3.png);background-position:-1472px -1312px;width:40px;height:40px}.shop_head_mystery_301404{background-image:url(spritesmith3.png);background-position:-1340px -1274px;width:40px;height:40px}.shop_weapon_mystery_301404{background-image:url(spritesmith3.png);background-position:-1381px -1274px;width:40px;height:40px}.slim_armor_mystery_301404{background-image:url(spritesmith3.png);background-position:-455px -688px;width:90px;height:90px}.weapon_mystery_301404{background-image:url(spritesmith3.png);background-position:-546px -688px;width:90px;height:90px}.eyewear_mystery_301405{background-image:url(spritesmith3.png);background-position:-637px -688px;width:90px;height:90px}.headAccessory_mystery_301405{background-image:url(spritesmith3.png);background-position:-728px -688px;width:90px;height:90px}.head_mystery_301405{background-image:url(spritesmith3.png);background-position:-819px 0;width:90px;height:90px}.shield_mystery_301405{background-image:url(spritesmith3.png);background-position:-819px -91px;width:90px;height:90px}.shop_eyewear_mystery_301405{background-image:url(spritesmith3.png);background-position:-910px -819px;width:40px;height:40px}.shop_headAccessory_mystery_301405{background-image:url(spritesmith3.png);background-position:-951px -819px;width:40px;height:40px}.shop_head_mystery_301405{background-image:url(spritesmith3.png);background-position:-819px -728px;width:40px;height:40px}.shop_shield_mystery_301405{background-image:url(spritesmith3.png);background-position:-860px -728px;width:40px;height:40px}.broad_armor_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-819px -182px;width:90px;height:90px}.broad_armor_special_spring2015Mage{background-image:url(spritesmith3.png);background-position:-819px -273px;width:90px;height:90px}.broad_armor_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:-819px -364px;width:90px;height:90px}.broad_armor_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-819px -455px;width:90px;height:90px}.broad_armor_special_springHealer{background-image:url(spritesmith3.png);background-position:-819px -546px;width:90px;height:90px}.broad_armor_special_springMage{background-image:url(spritesmith3.png);background-position:-819px -637px;width:90px;height:90px}.broad_armor_special_springRogue{background-image:url(spritesmith3.png);background-position:0 -779px;width:90px;height:90px}.broad_armor_special_springWarrior{background-image:url(spritesmith3.png);background-position:-91px -779px;width:90px;height:90px}.headAccessory_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-182px -779px;width:90px;height:90px}.headAccessory_special_spring2015Mage{background-image:url(spritesmith3.png);background-position:-273px -779px;width:90px;height:90px}.headAccessory_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:-364px -779px;width:90px;height:90px}.headAccessory_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-455px -779px;width:90px;height:90px}.headAccessory_special_springHealer{background-image:url(spritesmith3.png);background-position:-546px -779px;width:90px;height:90px}.headAccessory_special_springMage{background-image:url(spritesmith3.png);background-position:-637px -779px;width:90px;height:90px}.headAccessory_special_springRogue{background-image:url(spritesmith3.png);background-position:-728px -779px;width:90px;height:90px}.headAccessory_special_springWarrior{background-image:url(spritesmith3.png);background-position:-819px -779px;width:90px;height:90px}.head_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-910px 0;width:90px;height:90px}.head_special_spring2015Mage{background-image:url(spritesmith3.png);background-position:-910px -91px;width:90px;height:90px}.head_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:-910px -182px;width:90px;height:90px}.head_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-910px -273px;width:90px;height:90px}.head_special_springHealer{background-image:url(spritesmith3.png);background-position:-910px -364px;width:90px;height:90px}.head_special_springMage{background-image:url(spritesmith3.png);background-position:-910px -455px;width:90px;height:90px}.head_special_springRogue{background-image:url(spritesmith3.png);background-position:-910px -546px;width:90px;height:90px}.head_special_springWarrior{background-image:url(spritesmith3.png);background-position:-910px -637px;width:90px;height:90px}.shield_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-910px -728px;width:90px;height:90px}.shield_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:0 -870px;width:90px;height:90px}.shield_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-91px -870px;width:90px;height:90px}.shield_special_springHealer{background-image:url(spritesmith3.png);background-position:-182px -870px;width:90px;height:90px}.shield_special_springRogue{background-image:url(spritesmith3.png);background-position:-273px -870px;width:90px;height:90px}.shield_special_springWarrior{background-image:url(spritesmith3.png);background-position:-364px -870px;width:90px;height:90px}.shop_armor_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-1431px -369px;width:40px;height:40px}.shop_armor_special_spring2015Mage{background-image:url(spritesmith3.png);background-position:-1431px -410px;width:40px;height:40px}.shop_armor_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:-1431px -451px;width:40px;height:40px}.shop_armor_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-1431px -492px;width:40px;height:40px}.shop_armor_special_springHealer{background-image:url(spritesmith3.png);background-position:-1431px -533px;width:40px;height:40px}.shop_armor_special_springMage{background-image:url(spritesmith3.png);background-position:-1431px -574px;width:40px;height:40px}.shop_armor_special_springRogue{background-image:url(spritesmith3.png);background-position:-1431px -615px;width:40px;height:40px}.shop_armor_special_springWarrior{background-image:url(spritesmith3.png);background-position:-1431px -656px;width:40px;height:40px}.shop_headAccessory_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-1431px -697px;width:40px;height:40px}.shop_headAccessory_special_spring2015Mage{background-image:url(spritesmith3.png);background-position:-656px -1416px;width:40px;height:40px}.shop_headAccessory_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:-697px -1416px;width:40px;height:40px}.shop_headAccessory_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-738px -1416px;width:40px;height:40px}.shop_headAccessory_special_springHealer{background-image:url(spritesmith3.png);background-position:-779px -1416px;width:40px;height:40px}.shop_headAccessory_special_springMage{background-image:url(spritesmith3.png);background-position:-820px -1416px;width:40px;height:40px}.shop_headAccessory_special_springRogue{background-image:url(spritesmith3.png);background-position:-861px -1416px;width:40px;height:40px}.shop_headAccessory_special_springWarrior{background-image:url(spritesmith3.png);background-position:-902px -1416px;width:40px;height:40px}.shop_head_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-943px -1416px;width:40px;height:40px}.shop_head_special_spring2015Mage{background-image:url(spritesmith3.png);background-position:-984px -1416px;width:40px;height:40px}.shop_head_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:-1025px -1416px;width:40px;height:40px}.shop_head_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-1066px -1416px;width:40px;height:40px}.shop_head_special_springHealer{background-image:url(spritesmith3.png);background-position:-1107px -1416px;width:40px;height:40px}.shop_head_special_springMage{background-image:url(spritesmith3.png);background-position:-1148px -1416px;width:40px;height:40px}.shop_head_special_springRogue{background-image:url(spritesmith3.png);background-position:-1189px -1416px;width:40px;height:40px}.shop_head_special_springWarrior{background-image:url(spritesmith3.png);background-position:-1230px -1416px;width:40px;height:40px}.shop_shield_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-1271px -1416px;width:40px;height:40px}.shop_shield_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:-1312px -1416px;width:40px;height:40px}.shop_shield_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-1353px -1416px;width:40px;height:40px}.shop_shield_special_springHealer{background-image:url(spritesmith3.png);background-position:-1394px -1416px;width:40px;height:40px}.shop_shield_special_springRogue{background-image:url(spritesmith3.png);background-position:-1472px 0;width:40px;height:40px}.shop_shield_special_springWarrior{background-image:url(spritesmith3.png);background-position:-1472px -41px;width:40px;height:40px}.shop_weapon_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-1472px -82px;width:40px;height:40px}.shop_weapon_special_spring2015Mage{background-image:url(spritesmith3.png);background-position:-1472px -123px;width:40px;height:40px}.shop_weapon_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:-615px -1457px;width:40px;height:40px}.shop_weapon_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-1472px -492px;width:40px;height:40px}.shop_weapon_special_springHealer{background-image:url(spritesmith3.png);background-position:-1472px -533px;width:40px;height:40px}.shop_weapon_special_springMage{background-image:url(spritesmith3.png);background-position:-1472px -574px;width:40px;height:40px}.shop_weapon_special_springRogue{background-image:url(spritesmith3.png);background-position:-1472px -615px;width:40px;height:40px}.shop_weapon_special_springWarrior{background-image:url(spritesmith3.png);background-position:-1472px -656px;width:40px;height:40px}.slim_armor_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-546px -870px;width:90px;height:90px}.slim_armor_special_spring2015Mage{background-image:url(spritesmith3.png);background-position:-637px -870px;width:90px;height:90px}.slim_armor_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:-728px -870px;width:90px;height:90px}.slim_armor_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-819px -870px;width:90px;height:90px}.slim_armor_special_springHealer{background-image:url(spritesmith3.png);background-position:-91px -318px;width:90px;height:90px}.slim_armor_special_springMage{background-image:url(spritesmith3.png);background-position:-1001px -91px;width:90px;height:90px}.slim_armor_special_springRogue{background-image:url(spritesmith3.png);background-position:-1001px -182px;width:90px;height:90px}.slim_armor_special_springWarrior{background-image:url(spritesmith3.png);background-position:-1001px -273px;width:90px;height:90px}.weapon_special_spring2015Healer{background-image:url(spritesmith3.png);background-position:-1001px -364px;width:90px;height:90px}.weapon_special_spring2015Mage{background-image:url(spritesmith3.png);background-position:-1001px -455px;width:90px;height:90px}.weapon_special_spring2015Rogue{background-image:url(spritesmith3.png);background-position:-1001px -546px;width:90px;height:90px}.weapon_special_spring2015Warrior{background-image:url(spritesmith3.png);background-position:-1001px -637px;width:90px;height:90px}.weapon_special_springHealer{background-image:url(spritesmith3.png);background-position:-1001px -728px;width:90px;height:90px}.weapon_special_springMage{background-image:url(spritesmith3.png);background-position:-1001px -819px;width:90px;height:90px}.weapon_special_springRogue{background-image:url(spritesmith3.png);background-position:-910px -870px;width:90px;height:90px}.weapon_special_springWarrior{background-image:url(spritesmith3.png);background-position:0 -961px;width:90px;height:90px}.body_special_summerHealer{background-image:url(spritesmith3.png);background-position:-91px -106px;width:90px;height:105px}.body_special_summerMage{background-image:url(spritesmith3.png);background-position:-182px -106px;width:90px;height:105px}.broad_armor_special_summerHealer{background-image:url(spritesmith3.png);background-position:-273px 0;width:90px;height:105px}.broad_armor_special_summerMage{background-image:url(spritesmith3.png);background-position:-273px -106px;width:90px;height:105px}.broad_armor_special_summerRogue{background-image:url(spritesmith3.png);background-position:-470px -961px;width:111px;height:90px}.broad_armor_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-582px -961px;width:111px;height:90px}.eyewear_special_summerRogue{background-image:url(spritesmith3.png);background-position:-694px -961px;width:111px;height:90px}.eyewear_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-806px -961px;width:111px;height:90px}.head_special_summerHealer{background-image:url(spritesmith3.png);background-position:0 0;width:90px;height:105px}.head_special_summerMage{background-image:url(spritesmith3.png);background-position:-91px -212px;width:90px;height:105px}.head_special_summerRogue{background-image:url(spritesmith3.png);background-position:0 -1052px;width:111px;height:90px}.head_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-112px -1052px;width:111px;height:90px}.Healer_Summer{background-image:url(spritesmith3.png);background-position:-182px -212px;width:90px;height:105px}.Mage_Summer{background-image:url(spritesmith3.png);background-position:-273px -212px;width:90px;height:105px}.SummerRogue14{background-image:url(spritesmith3.png);background-position:-224px -1052px;width:111px;height:90px}.SummerWarrior14{background-image:url(spritesmith3.png);background-position:-336px -1052px;width:111px;height:90px}.shield_special_summerHealer{background-image:url(spritesmith3.png);background-position:-364px 0;width:90px;height:105px}.shield_special_summerRogue{background-image:url(spritesmith3.png);background-position:-569px -1052px;width:111px;height:90px}.shield_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-681px -1052px;width:111px;height:90px}.shop_armor_special_summerHealer{background-image:url(spritesmith3.png);background-position:-496px -364px;width:40px;height:40px}.shop_armor_special_summerMage{background-image:url(spritesmith3.png);background-position:-561px -506px;width:40px;height:40px}.shop_armor_special_summerRogue{background-image:url(spritesmith3.png);background-position:-561px -547px;width:40px;height:40px}.shop_armor_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-646px -597px;width:40px;height:40px}.shop_body_special_summerHealer{background-image:url(spritesmith3.png);background-position:-687px -597px;width:40px;height:40px}.shop_body_special_summerMage{background-image:url(spritesmith3.png);background-position:-646px -638px;width:40px;height:40px}.shop_eyewear_special_summerRogue{background-image:url(spritesmith3.png);background-position:-687px -638px;width:40px;height:40px}.shop_eyewear_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-1039px -961px;width:40px;height:40px}.shop_head_special_summerHealer{background-image:url(spritesmith3.png);background-position:-1080px -961px;width:40px;height:40px}.shop_head_special_summerMage{background-image:url(spritesmith3.png);background-position:-1039px -1002px;width:40px;height:40px}.shop_head_special_summerRogue{background-image:url(spritesmith3.png);background-position:-1080px -1002px;width:40px;height:40px}.shop_head_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-1280px -1234px;width:40px;height:40px}.shop_shield_special_summerHealer{background-image:url(spritesmith3.png);background-position:-1280px -1275px;width:40px;height:40px}.shop_shield_special_summerRogue{background-image:url(spritesmith3.png);background-position:-1001px -1325px;width:40px;height:40px}.shop_shield_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-1042px -1325px;width:40px;height:40px}.shop_weapon_special_summerHealer{background-image:url(spritesmith3.png);background-position:-1083px -1325px;width:40px;height:40px}.shop_weapon_special_summerMage{background-image:url(spritesmith3.png);background-position:-1124px -1325px;width:40px;height:40px}.shop_weapon_special_summerRogue{background-image:url(spritesmith3.png);background-position:-1165px -1325px;width:40px;height:40px}.shop_weapon_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-1206px -1325px;width:40px;height:40px}.slim_armor_special_summerHealer{background-image:url(spritesmith3.png);background-position:0 -212px;width:90px;height:105px}.slim_armor_special_summerMage{background-image:url(spritesmith3.png);background-position:0 -106px;width:90px;height:105px}.slim_armor_special_summerRogue{background-image:url(spritesmith3.png);background-position:-793px -1052px;width:111px;height:90px}.slim_armor_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-905px -1052px;width:111px;height:90px}.weapon_special_summerHealer{background-image:url(spritesmith3.png);background-position:-182px 0;width:90px;height:105px}.weapon_special_summerMage{background-image:url(spritesmith3.png);background-position:-91px 0;width:90px;height:105px}.weapon_special_summerRogue{background-image:url(spritesmith3.png);background-position:-1017px -1052px;width:111px;height:90px}.weapon_special_summerWarrior{background-image:url(spritesmith3.png);background-position:-1228px 0;width:111px;height:90px}.broad_armor_special_candycane{background-image:url(spritesmith3.png);background-position:-1228px -91px;width:90px;height:90px}.broad_armor_special_ski{background-image:url(spritesmith3.png);background-position:-1228px -182px;width:90px;height:90px}.broad_armor_special_snowflake{background-image:url(spritesmith3.png);background-position:-1228px -273px;width:90px;height:90px}.broad_armor_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1228px -364px;width:90px;height:90px}.broad_armor_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1228px -455px;width:90px;height:90px}.broad_armor_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-1228px -546px;width:96px;height:90px}.broad_armor_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-1228px -637px;width:90px;height:90px}.broad_armor_special_yeti{background-image:url(spritesmith3.png);background-position:-1228px -728px;width:90px;height:90px}.head_special_candycane{background-image:url(spritesmith3.png);background-position:-1228px -819px;width:90px;height:90px}.head_special_nye{background-image:url(spritesmith3.png);background-position:-1228px -910px;width:90px;height:90px}.head_special_nye2014{background-image:url(spritesmith3.png);background-position:-1228px -1001px;width:90px;height:90px}.head_special_ski{background-image:url(spritesmith3.png);background-position:-1122px -637px;width:90px;height:90px}.head_special_snowflake{background-image:url(spritesmith3.png);background-position:-1122px -728px;width:90px;height:90px}.head_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1122px -819px;width:90px;height:90px}.head_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1122px -910px;width:90px;height:90px}.head_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-1129px -1052px;width:96px;height:90px}.head_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:0 -1143px;width:90px;height:90px}.head_special_yeti{background-image:url(spritesmith3.png);background-position:-91px -1143px;width:90px;height:90px}.shield_special_ski{background-image:url(spritesmith3.png);background-position:-182px -1143px;width:104px;height:90px}.shield_special_snowflake{background-image:url(spritesmith3.png);background-position:-287px -1143px;width:90px;height:90px}.shield_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-378px -1143px;width:90px;height:90px}.shield_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-469px -1143px;width:96px;height:90px}.shield_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-566px -1143px;width:90px;height:90px}.shield_special_yeti{background-image:url(spritesmith3.png);background-position:-657px -1143px;width:90px;height:90px}.shop_armor_special_candycane{background-image:url(spritesmith3.png);background-position:-1431px -738px;width:40px;height:40px}.shop_armor_special_ski{background-image:url(spritesmith3.png);background-position:-1431px -779px;width:40px;height:40px}.shop_armor_special_snowflake{background-image:url(spritesmith3.png);background-position:-1431px -820px;width:40px;height:40px}.shop_armor_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1431px -861px;width:40px;height:40px}.shop_armor_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1431px -902px;width:40px;height:40px}.shop_armor_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-1431px -943px;width:40px;height:40px}.shop_armor_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-1431px -984px;width:40px;height:40px}.shop_armor_special_yeti{background-image:url(spritesmith3.png);background-position:-1431px -1025px;width:40px;height:40px}.shop_head_special_candycane{background-image:url(spritesmith3.png);background-position:-1431px -1066px;width:40px;height:40px}.shop_head_special_nye{background-image:url(spritesmith3.png);background-position:-1431px -1107px;width:40px;height:40px}.shop_head_special_nye2014{background-image:url(spritesmith3.png);background-position:-1431px -1148px;width:40px;height:40px}.shop_head_special_ski{background-image:url(spritesmith3.png);background-position:-1431px -1189px;width:40px;height:40px}.shop_head_special_snowflake{background-image:url(spritesmith3.png);background-position:-1431px -1230px;width:40px;height:40px}.shop_head_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1431px -1271px;width:40px;height:40px}.shop_head_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1431px -1312px;width:40px;height:40px}.shop_head_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-1431px -1353px;width:40px;height:40px}.shop_head_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:0 -1416px;width:40px;height:40px}.shop_head_special_yeti{background-image:url(spritesmith3.png);background-position:-41px -1416px;width:40px;height:40px}.shop_shield_special_ski{background-image:url(spritesmith3.png);background-position:-82px -1416px;width:40px;height:40px}.shop_shield_special_snowflake{background-image:url(spritesmith3.png);background-position:-123px -1416px;width:40px;height:40px}.shop_shield_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-164px -1416px;width:40px;height:40px}.shop_shield_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-205px -1416px;width:40px;height:40px}.shop_shield_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-246px -1416px;width:40px;height:40px}.shop_shield_special_yeti{background-image:url(spritesmith3.png);background-position:-287px -1416px;width:40px;height:40px}.shop_weapon_special_candycane{background-image:url(spritesmith3.png);background-position:-328px -1416px;width:40px;height:40px}.shop_weapon_special_ski{background-image:url(spritesmith3.png);background-position:-369px -1416px;width:40px;height:40px}.shop_weapon_special_snowflake{background-image:url(spritesmith3.png);background-position:-410px -1416px;width:40px;height:40px}.shop_weapon_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-451px -1416px;width:40px;height:40px}.shop_weapon_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-492px -1416px;width:40px;height:40px}.shop_weapon_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-533px -1416px;width:40px;height:40px}.shop_weapon_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-574px -1416px;width:40px;height:40px}.shop_weapon_special_yeti{background-image:url(spritesmith3.png);background-position:-615px -1416px;width:40px;height:40px}.slim_armor_special_candycane{background-image:url(spritesmith3.png);background-position:-748px -1143px;width:90px;height:90px}.slim_armor_special_ski{background-image:url(spritesmith3.png);background-position:-839px -1143px;width:90px;height:90px}.slim_armor_special_snowflake{background-image:url(spritesmith3.png);background-position:-930px -1143px;width:90px;height:90px}.slim_armor_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-1021px -1143px;width:90px;height:90px}.slim_armor_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-1112px -1143px;width:90px;height:90px}.slim_armor_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-1203px -1143px;width:96px;height:90px}.slim_armor_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:0 -1234px;width:90px;height:90px}.slim_armor_special_yeti{background-image:url(spritesmith3.png);background-position:-91px -1234px;width:90px;height:90px}.weapon_special_candycane{background-image:url(spritesmith3.png);background-position:-182px -1234px;width:90px;height:90px}.weapon_special_ski{background-image:url(spritesmith3.png);background-position:-273px -1234px;width:90px;height:90px}.weapon_special_snowflake{background-image:url(spritesmith3.png);background-position:-364px -1234px;width:90px;height:90px}.weapon_special_winter2015Healer{background-image:url(spritesmith3.png);background-position:-455px -1234px;width:90px;height:90px}.weapon_special_winter2015Mage{background-image:url(spritesmith3.png);background-position:-546px -1234px;width:90px;height:90px}.weapon_special_winter2015Rogue{background-image:url(spritesmith3.png);background-position:-637px -1234px;width:96px;height:90px}.weapon_special_winter2015Warrior{background-image:url(spritesmith3.png);background-position:-734px -1234px;width:90px;height:90px}.weapon_special_yeti{background-image:url(spritesmith3.png);background-position:-825px -1234px;width:90px;height:90px}.back_special_wondercon_black{background-image:url(spritesmith3.png);background-position:-916px -1234px;width:90px;height:90px}.back_special_wondercon_red{background-image:url(spritesmith3.png);background-position:-1007px -1234px;width:90px;height:90px}.body_special_wondercon_black{background-image:url(spritesmith3.png);background-position:-1098px -1234px;width:90px;height:90px}.body_special_wondercon_gold{background-image:url(spritesmith3.png);background-position:-1189px -1234px;width:90px;height:90px}.body_special_wondercon_red{background-image:url(spritesmith3.png);background-position:-1340px 0;width:90px;height:90px}.eyewear_special_wondercon_black{background-image:url(spritesmith3.png);background-position:-1340px -91px;width:90px;height:90px}.eyewear_special_wondercon_red{background-image:url(spritesmith3.png);background-position:-1340px -182px;width:90px;height:90px}.shop_back_special_wondercon_black{background-image:url(spritesmith3.png);background-position:-1472px -164px;width:40px;height:40px}.shop_back_special_wondercon_red{background-image:url(spritesmith3.png);background-position:-1472px -205px;width:40px;height:40px}.shop_body_special_wondercon_black{background-image:url(spritesmith3.png);background-position:-1472px -246px;width:40px;height:40px}.shop_body_special_wondercon_gold{background-image:url(spritesmith3.png);background-position:-1472px -287px;width:40px;height:40px}.shop_body_special_wondercon_red{background-image:url(spritesmith3.png);background-position:-1472px -328px;width:40px;height:40px}.shop_eyewear_special_wondercon_black{background-image:url(spritesmith3.png);background-position:-1472px -369px;width:40px;height:40px}.shop_eyewear_special_wondercon_red{background-image:url(spritesmith3.png);background-position:-1472px -410px;width:40px;height:40px}.head_0{background-image:url(spritesmith3.png);background-position:-1340px -273px;width:90px;height:90px}.customize-option.head_0{background-image:url(spritesmith3.png);background-position:-1365px -288px;width:60px;height:60px}.head_healer_1{background-image:url(spritesmith3.png);background-position:-1340px -364px;width:90px;height:90px}.head_healer_2{background-image:url(spritesmith3.png);background-position:-1340px -455px;width:90px;height:90px}.head_healer_3{background-image:url(spritesmith3.png);background-position:-1340px -546px;width:90px;height:90px}.head_healer_4{background-image:url(spritesmith3.png);background-position:-1340px -637px;width:90px;height:90px}.head_healer_5{background-image:url(spritesmith3.png);background-position:-1340px -728px;width:90px;height:90px}.head_rogue_1{background-image:url(spritesmith3.png);background-position:-1340px -819px;width:90px;height:90px}.head_rogue_2{background-image:url(spritesmith3.png);background-position:-1340px -910px;width:90px;height:90px}.head_rogue_3{background-image:url(spritesmith3.png);background-position:-1340px -1001px;width:90px;height:90px}.head_rogue_4{background-image:url(spritesmith3.png);background-position:-1340px -1092px;width:90px;height:90px}.head_rogue_5{background-image:url(spritesmith3.png);background-position:-1340px -1183px;width:90px;height:90px}.head_special_2{background-image:url(spritesmith3.png);background-position:0 -1325px;width:90px;height:90px}.head_warrior_1{background-image:url(spritesmith3.png);background-position:-91px -1325px;width:90px;height:90px}.head_warrior_2{background-image:url(spritesmith3.png);background-position:-182px -1325px;width:90px;height:90px}.head_warrior_3{background-image:url(spritesmith3.png);background-position:-273px -1325px;width:90px;height:90px}.head_warrior_4{background-image:url(spritesmith3.png);background-position:-364px -1325px;width:90px;height:90px}.head_warrior_5{background-image:url(spritesmith3.png);background-position:-455px -1325px;width:90px;height:90px}.head_wizard_1{background-image:url(spritesmith3.png);background-position:-546px -1325px;width:90px;height:90px}.head_wizard_2{background-image:url(spritesmith3.png);background-position:-637px -1325px;width:90px;height:90px}.head_wizard_3{background-image:url(spritesmith3.png);background-position:-728px -1325px;width:90px;height:90px}.head_wizard_4{background-image:url(spritesmith3.png);background-position:-819px -1325px;width:90px;height:90px}.head_wizard_5{background-image:url(spritesmith3.png);background-position:-910px -1325px;width:90px;height:90px}.shop_head_healer_1{background-image:url(spritesmith3.png);background-position:-1472px -1353px;width:40px;height:40px}.shop_head_healer_2{background-image:url(spritesmith3.png);background-position:-1472px -1394px;width:40px;height:40px}.shop_head_healer_3{background-image:url(spritesmith3.png);background-position:0 -1457px;width:40px;height:40px}.shop_head_healer_4{background-image:url(spritesmith3.png);background-position:-41px -1457px;width:40px;height:40px}.shop_head_healer_5{background-image:url(spritesmith3.png);background-position:-82px -1457px;width:40px;height:40px}.shop_head_rogue_1{background-image:url(spritesmith3.png);background-position:-123px -1457px;width:40px;height:40px}.shop_head_rogue_2{background-image:url(spritesmith3.png);background-position:-164px -1457px;width:40px;height:40px}.shop_head_rogue_3{background-image:url(spritesmith3.png);background-position:-205px -1457px;width:40px;height:40px}.shop_head_rogue_4{background-image:url(spritesmith3.png);background-position:-246px -1457px;width:40px;height:40px}.shop_head_rogue_5{background-image:url(spritesmith3.png);background-position:-287px -1457px;width:40px;height:40px}.shop_head_special_0{background-image:url(spritesmith3.png);background-position:-328px -1457px;width:40px;height:40px}.shop_head_special_1{background-image:url(spritesmith3.png);background-position:-369px -1457px;width:40px;height:40px}.shop_head_special_2{background-image:url(spritesmith3.png);background-position:-410px -1457px;width:40px;height:40px}.shop_head_warrior_1{background-image:url(spritesmith3.png);background-position:-451px -1457px;width:40px;height:40px}.shop_head_warrior_2{background-image:url(spritesmith3.png);background-position:-492px -1457px;width:40px;height:40px}.shop_head_warrior_3{background-image:url(spritesmith3.png);background-position:-533px -1457px;width:40px;height:40px}.shop_head_warrior_4{background-image:url(spritesmith3.png);background-position:-574px -1457px;width:40px;height:40px}.shop_head_warrior_5{background-image:url(spritesmith3.png);background-position:-1329px -1325px;width:40px;height:40px}.shop_head_wizard_1{background-image:url(spritesmith4.png);background-position:-1756px -1915px;width:40px;height:40px}.shop_head_wizard_2{background-image:url(spritesmith4.png);background-position:-690px -1915px;width:40px;height:40px}.shop_head_wizard_3{background-image:url(spritesmith4.png);background-position:-1928px -1329px;width:40px;height:40px}.shop_head_wizard_4{background-image:url(spritesmith4.png);background-position:-813px -1915px;width:40px;height:40px}.shop_head_wizard_5{background-image:url(spritesmith4.png);background-position:-1928px -1206px;width:40px;height:40px}.headAccessory_special_bearEars{background-image:url(spritesmith4.png);background-position:-819px -1590px;width:90px;height:90px}.customize-option.headAccessory_special_bearEars{background-image:url(spritesmith4.png);background-position:-844px -1605px;width:60px;height:60px}.headAccessory_special_cactusEars{background-image:url(spritesmith4.png);background-position:-1001px -1590px;width:90px;height:90px}.customize-option.headAccessory_special_cactusEars{background-image:url(spritesmith4.png);background-position:-1026px -1605px;width:60px;height:60px}.headAccessory_special_foxEars{background-image:url(spritesmith4.png);background-position:-471px -1681px;width:90px;height:90px}.customize-option.headAccessory_special_foxEars{background-image:url(spritesmith4.png);background-position:-496px -1696px;width:60px;height:60px}.headAccessory_special_lionEars{background-image:url(spritesmith4.png);background-position:-653px -1681px;width:90px;height:90px}.customize-option.headAccessory_special_lionEars{background-image:url(spritesmith4.png);background-position:-678px -1696px;width:60px;height:60px}.headAccessory_special_pandaEars{background-image:url(spritesmith4.png);background-position:-1053px -1681px;width:90px;height:90px}.customize-option.headAccessory_special_pandaEars{background-image:url(spritesmith4.png);background-position:-1078px -1696px;width:60px;height:60px}.headAccessory_special_pigEars{background-image:url(spritesmith4.png);background-position:-1326px -1681px;width:90px;height:90px}.customize-option.headAccessory_special_pigEars{background-image:url(spritesmith4.png);background-position:-1351px -1696px;width:60px;height:60px}.headAccessory_special_tigerEars{background-image:url(spritesmith4.png);background-position:-1788px -819px;width:90px;height:90px}.customize-option.headAccessory_special_tigerEars{background-image:url(spritesmith4.png);background-position:-1813px -834px;width:60px;height:60px}.headAccessory_special_wolfEars{background-image:url(spritesmith4.png);background-position:-1788px -728px;width:90px;height:90px}.customize-option.headAccessory_special_wolfEars{background-image:url(spritesmith4.png);background-position:-1813px -743px;width:60px;height:60px}.shop_headAccessory_special_bearEars{background-image:url(spritesmith4.png);background-position:-854px -1915px;width:40px;height:40px}.shop_headAccessory_special_cactusEars{background-image:url(spritesmith4.png);background-position:-1928px -1575px;width:40px;height:40px}.shop_headAccessory_special_foxEars{background-image:url(spritesmith4.png);background-position:-239px -1915px;width:40px;height:40px}.shop_headAccessory_special_lionEars{background-image:url(spritesmith4.png);background-position:-321px -1915px;width:40px;height:40px}.shop_headAccessory_special_pandaEars{background-image:url(spritesmith4.png);background-position:-485px -1915px;width:40px;height:40px}.shop_headAccessory_special_pigEars{background-image:url(spritesmith4.png);background-position:-526px -1915px;width:40px;height:40px}.shop_headAccessory_special_tigerEars{background-image:url(spritesmith4.png);background-position:-567px -1915px;width:40px;height:40px}.shop_headAccessory_special_wolfEars{background-image:url(spritesmith4.png);background-position:-608px -1915px;width:40px;height:40px}.shield_healer_1{background-image:url(spritesmith4.png);background-position:-1788px -637px;width:90px;height:90px}.shield_healer_2{background-image:url(spritesmith4.png);background-position:-1788px -455px;width:90px;height:90px}.shield_healer_3{background-image:url(spritesmith4.png);background-position:-562px -1681px;width:90px;height:90px}.shield_healer_4{background-image:url(spritesmith4.png);background-position:-1183px -1590px;width:90px;height:90px}.shield_healer_5{background-image:url(spritesmith4.png);background-position:-1092px -1590px;width:90px;height:90px}.shield_rogue_0{background-image:url(spritesmith4.png);background-position:-660px -576px;width:90px;height:90px}.shield_rogue_1{background-image:url(spritesmith4.png);background-position:-1334px -1399px;width:103px;height:90px}.shield_rogue_2{background-image:url(spritesmith4.png);background-position:-1230px -1399px;width:103px;height:90px}.shield_rogue_3{background-image:url(spritesmith4.png);background-position:-1115px -1399px;width:114px;height:90px}.shield_rogue_4{background-image:url(spritesmith4.png);background-position:-1018px -1399px;width:96px;height:90px}.shield_rogue_5{background-image:url(spritesmith4.png);background-position:-903px -1399px;width:114px;height:90px}.shield_rogue_6{background-image:url(spritesmith4.png);background-position:0 -1772px;width:114px;height:90px}.shield_special_1{background-image:url(spritesmith4.png);background-position:-1788px 0;width:90px;height:90px}.shield_special_goldenknight{background-image:url(spritesmith4.png);background-position:-1599px -1681px;width:111px;height:90px}.shield_warrior_1{background-image:url(spritesmith4.png);background-position:-380px -1681px;width:90px;height:90px}.shield_warrior_2{background-image:url(spritesmith4.png);background-position:-289px -1681px;width:90px;height:90px}.shield_warrior_3{background-image:url(spritesmith4.png);background-position:-1654px -1590px;width:90px;height:90px}.shield_warrior_4{background-image:url(spritesmith4.png);background-position:-910px -1590px;width:90px;height:90px}.shield_warrior_5{background-image:url(spritesmith4.png);background-position:-1563px -1590px;width:90px;height:90px}.shop_shield_healer_1{background-image:url(spritesmith4.png);background-position:-1715px -1915px;width:40px;height:40px}.shop_shield_healer_2{background-image:url(spritesmith4.png);background-position:-1674px -1915px;width:40px;height:40px}.shop_shield_healer_3{background-image:url(spritesmith4.png);background-position:-1633px -1915px;width:40px;height:40px}.shop_shield_healer_4{background-image:url(spritesmith4.png);background-position:-1592px -1915px;width:40px;height:40px}.shop_shield_healer_5{background-image:url(spritesmith4.png);background-position:-1551px -1915px;width:40px;height:40px}.shop_shield_rogue_0{background-image:url(spritesmith4.png);background-position:-1510px -1915px;width:40px;height:40px}.shop_shield_rogue_1{background-image:url(spritesmith4.png);background-position:-1469px -1915px;width:40px;height:40px}.shop_shield_rogue_2{background-image:url(spritesmith4.png);background-position:-1428px -1915px;width:40px;height:40px}.shop_shield_rogue_3{background-image:url(spritesmith4.png);background-position:-1387px -1915px;width:40px;height:40px}.shop_shield_rogue_4{background-image:url(spritesmith4.png);background-position:-1346px -1915px;width:40px;height:40px}.shop_shield_rogue_5{background-image:url(spritesmith4.png);background-position:-1305px -1915px;width:40px;height:40px}.shop_shield_rogue_6{background-image:url(spritesmith4.png);background-position:-1264px -1915px;width:40px;height:40px}.shop_shield_special_0{background-image:url(spritesmith4.png);background-position:-1223px -1915px;width:40px;height:40px}.shop_shield_special_1{background-image:url(spritesmith4.png);background-position:-1182px -1915px;width:40px;height:40px}.shop_shield_special_goldenknight{background-image:url(spritesmith4.png);background-position:-1141px -1915px;width:40px;height:40px}.shop_shield_warrior_1{background-image:url(spritesmith4.png);background-position:-1100px -1915px;width:40px;height:40px}.shop_shield_warrior_2{background-image:url(spritesmith4.png);background-position:-1059px -1915px;width:40px;height:40px}.shop_shield_warrior_3{background-image:url(spritesmith4.png);background-position:-1018px -1915px;width:40px;height:40px}.shop_shield_warrior_4{background-image:url(spritesmith4.png);background-position:-977px -1915px;width:40px;height:40px}.shop_shield_warrior_5{background-image:url(spritesmith4.png);background-position:-936px -1915px;width:40px;height:40px}.shop_weapon_healer_0{background-image:url(spritesmith4.png);background-position:-895px -1915px;width:40px;height:40px}.shop_weapon_healer_1{background-image:url(spritesmith4.png);background-position:-198px -1915px;width:40px;height:40px}.shop_weapon_healer_2{background-image:url(spritesmith4.png);background-position:-116px -1915px;width:40px;height:40px}.shop_weapon_healer_3{background-image:url(spritesmith4.png);background-position:-1745px -1631px;width:40px;height:40px}.shop_weapon_healer_4{background-image:url(spritesmith4.png);background-position:-1745px -1590px;width:40px;height:40px}.shop_weapon_healer_5{background-image:url(spritesmith4.png);background-position:-1741px -1540px;width:40px;height:40px}.shop_weapon_healer_6{background-image:url(spritesmith4.png);background-position:-1928px -919px;width:40px;height:40px}.shop_weapon_rogue_0{background-image:url(spritesmith4.png);background-position:-971px -845px;width:40px;height:40px}.shop_weapon_rogue_1{background-image:url(spritesmith4.png);background-position:-758px -364px;width:40px;height:40px}.shop_weapon_rogue_2{background-image:url(spritesmith4.png);background-position:-1386px -961px;width:40px;height:40px}.shop_weapon_rogue_3{background-image:url(spritesmith4.png);background-position:-1712px -1332px;width:40px;height:40px}.shop_weapon_rogue_4{background-image:url(spritesmith4.png);background-position:-1837px -1414px;width:40px;height:40px}.shop_weapon_rogue_5{background-image:url(spritesmith4.png);background-position:-1879px -1820px;width:40px;height:40px}.shop_weapon_rogue_6{background-image:url(spritesmith4.png);background-position:-1928px -1862px;width:40px;height:40px}.shop_weapon_special_0{background-image:url(spritesmith4.png);background-position:-1928px -1821px;width:40px;height:40px}.shop_weapon_special_1{background-image:url(spritesmith4.png);background-position:-1928px -1780px;width:40px;height:40px}.shop_weapon_special_2{background-image:url(spritesmith4.png);background-position:-1928px -1739px;width:40px;height:40px}.shop_weapon_special_3{background-image:url(spritesmith4.png);background-position:-1928px -1698px;width:40px;height:40px}.shop_weapon_special_critical{background-image:url(spritesmith4.png);background-position:-1928px -1657px;width:40px;height:40px}.shop_weapon_warrior_0{background-image:url(spritesmith4.png);background-position:-1928px -1616px;width:40px;height:40px}.shop_weapon_warrior_1{background-image:url(spritesmith4.png);background-position:-1928px -1534px;width:40px;height:40px}.shop_weapon_warrior_2{background-image:url(spritesmith4.png);background-position:-1928px -1493px;width:40px;height:40px}.shop_weapon_warrior_3{background-image:url(spritesmith4.png);background-position:-1928px -1452px;width:40px;height:40px}.shop_weapon_warrior_4{background-image:url(spritesmith4.png);background-position:-1928px -1411px;width:40px;height:40px}.shop_weapon_warrior_5{background-image:url(spritesmith4.png);background-position:-1928px -1370px;width:40px;height:40px}.shop_weapon_warrior_6{background-image:url(spritesmith4.png);background-position:-1928px -1288px;width:40px;height:40px}.shop_weapon_wizard_0{background-image:url(spritesmith4.png);background-position:-1928px -1247px;width:40px;height:40px}.shop_weapon_wizard_1{background-image:url(spritesmith4.png);background-position:-1928px -1165px;width:40px;height:40px}.shop_weapon_wizard_2{background-image:url(spritesmith4.png);background-position:-1928px -1124px;width:40px;height:40px}.shop_weapon_wizard_3{background-image:url(spritesmith4.png);background-position:-1928px -1083px;width:40px;height:40px}.shop_weapon_wizard_4{background-image:url(spritesmith4.png);background-position:-1928px -1042px;width:40px;height:40px}.shop_weapon_wizard_5{background-image:url(spritesmith4.png);background-position:-1928px -1001px;width:40px;height:40px}.shop_weapon_wizard_6{background-image:url(spritesmith4.png);background-position:-1928px -960px;width:40px;height:40px}.weapon_healer_0{background-image:url(spritesmith4.png);background-position:-1438px -1399px;width:90px;height:90px}.weapon_healer_1{background-image:url(spritesmith4.png);background-position:-1529px -1399px;width:90px;height:90px}.weapon_healer_2{background-image:url(spritesmith4.png);background-position:-1620px -1399px;width:90px;height:90px}.weapon_healer_3{background-image:url(spritesmith4.png);background-position:0 -1499px;width:90px;height:90px}.weapon_healer_4{background-image:url(spritesmith4.png);background-position:-91px -1499px;width:90px;height:90px}.weapon_healer_5{background-image:url(spritesmith4.png);background-position:-182px -1499px;width:90px;height:90px}.weapon_healer_6{background-image:url(spritesmith4.png);background-position:-273px -1499px;width:90px;height:90px}.weapon_rogue_0{background-image:url(spritesmith4.png);background-position:-364px -1499px;width:90px;height:90px}.weapon_rogue_1{background-image:url(spritesmith4.png);background-position:-455px -1499px;width:90px;height:90px}.weapon_rogue_2{background-image:url(spritesmith4.png);background-position:-546px -1499px;width:90px;height:90px}.weapon_rogue_3{background-image:url(spritesmith4.png);background-position:-637px -1499px;width:90px;height:90px}.weapon_rogue_4{background-image:url(spritesmith4.png);background-position:-728px -1499px;width:90px;height:90px}.weapon_rogue_5{background-image:url(spritesmith4.png);background-position:-819px -1499px;width:90px;height:90px}.weapon_rogue_6{background-image:url(spritesmith4.png);background-position:-910px -1499px;width:90px;height:90px}.weapon_special_1{background-image:url(spritesmith4.png);background-position:-1001px -1499px;width:102px;height:90px}.weapon_special_2{background-image:url(spritesmith4.png);background-position:-1104px -1499px;width:90px;height:90px}.weapon_special_3{background-image:url(spritesmith4.png);background-position:-1195px -1499px;width:90px;height:90px}.weapon_warrior_0{background-image:url(spritesmith4.png);background-position:-1286px -1499px;width:90px;height:90px}.weapon_warrior_1{background-image:url(spritesmith4.png);background-position:-1377px -1499px;width:90px;height:90px}.weapon_warrior_2{background-image:url(spritesmith4.png);background-position:-1468px -1499px;width:90px;height:90px}.weapon_warrior_3{background-image:url(spritesmith4.png);background-position:-1559px -1499px;width:90px;height:90px}.weapon_warrior_4{background-image:url(spritesmith4.png);background-position:-1650px -1499px;width:90px;height:90px}.weapon_warrior_5{background-image:url(spritesmith4.png);background-position:0 -1590px;width:90px;height:90px}.weapon_warrior_6{background-image:url(spritesmith4.png);background-position:-91px -1590px;width:90px;height:90px}.weapon_wizard_0{background-image:url(spritesmith4.png);background-position:-182px -1590px;width:90px;height:90px}.weapon_wizard_1{background-image:url(spritesmith4.png);background-position:-273px -1590px;width:90px;height:90px}.weapon_wizard_2{background-image:url(spritesmith4.png);background-position:-364px -1590px;width:90px;height:90px}.weapon_wizard_3{background-image:url(spritesmith4.png);background-position:-455px -1590px;width:90px;height:90px}.weapon_wizard_4{background-image:url(spritesmith4.png);background-position:-546px -1590px;width:90px;height:90px}.weapon_wizard_5{background-image:url(spritesmith4.png);background-position:-637px -1590px;width:90px;height:90px}.weapon_wizard_6{background-image:url(spritesmith4.png);background-position:-728px -1590px;width:90px;height:90px}.GrimReaper{background-image:url(spritesmith4.png);background-position:-1788px -1283px;width:57px;height:66px}.Pet_Currency_Gem{background-image:url(spritesmith4.png);background-position:-1834px -1915px;width:45px;height:39px}.Pet_Currency_Gem1x{background-image:url(spritesmith4.png);background-position:-1849px -1001px;width:15px;height:13px}.Pet_Currency_Gem2x{background-image:url(spritesmith4.png);background-position:-1846px -1588px;width:30px;height:26px}.PixelPaw-Gold{background-image:url(spritesmith4.png);background-position:-1532px -1772px;width:51px;height:51px}.PixelPaw{background-image:url(spritesmith4.png);background-position:-1480px -1772px;width:51px;height:51px}.PixelPaw002{background-image:url(spritesmith4.png);background-position:-1428px -1772px;width:51px;height:51px}.avatar_floral_healer{background-image:url(spritesmith4.png);background-position:0 -1399px;width:99px;height:99px}.avatar_floral_rogue{background-image:url(spritesmith4.png);background-position:-100px -1399px;width:99px;height:99px}.avatar_floral_warrior{background-image:url(spritesmith4.png);background-position:-200px -1399px;width:99px;height:99px}.avatar_floral_wizard{background-image:url(spritesmith4.png);background-position:-300px -1399px;width:99px;height:99px}.inventory_present{background-image:url(spritesmith4.png);background-position:-1379px -1772px;width:48px;height:51px}.inventory_present_01{background-image:url(spritesmith4.png);background-position:-1711px -1681px;width:48px;height:51px}.inventory_present_02{background-image:url(spritesmith4.png);background-position:-1711px -1399px;width:48px;height:51px}.inventory_present_03{background-image:url(spritesmith4.png);background-position:-1400px -1248px;width:48px;height:51px}.inventory_present_04{background-image:url(spritesmith4.png);background-position:-971px -793px;width:48px;height:51px}.inventory_present_05{background-image:url(spritesmith4.png);background-position:-965px -724px;width:48px;height:51px}.inventory_present_06{background-image:url(spritesmith4.png);background-position:-965px -672px;width:48px;height:51px}.inventory_present_07{background-image:url(spritesmith4.png);background-position:-751px -576px;width:48px;height:51px}.inventory_present_08{background-image:url(spritesmith4.png);background-position:-709px -364px;width:48px;height:51px}.inventory_present_09{background-image:url(spritesmith4.png);background-position:-660px -364px;width:48px;height:51px}.inventory_present_10{background-image:url(spritesmith4.png);background-position:-1178px -811px;width:48px;height:51px}.inventory_present_11{background-image:url(spritesmith4.png);background-position:-1392px -1005px;width:48px;height:51px}.inventory_present_12{background-image:url(spritesmith4.png);background-position:-1343px -1005px;width:48px;height:51px}.inventory_quest_scroll{background-image:url(spritesmith4.png);background-position:-1245px -1005px;width:48px;height:51px}.inventory_quest_scroll_locked{background-image:url(spritesmith4.png);background-position:-1386px -909px;width:48px;height:51px}.inventory_special_fortify{background-image:url(spritesmith4.png);background-position:-1402px -709px;width:57px;height:54px}.inventory_special_nye{background-image:url(spritesmith4.png);background-position:-1712px -1277px;width:57px;height:54px}.inventory_special_opaquePotion{background-image:url(spritesmith4.png);background-position:-772px -1915px;width:40px;height:40px}.inventory_special_shinySeed{background-image:url(spritesmith4.png);background-position:-1788px -1698px;width:57px;height:54px}.inventory_special_snowball{background-image:url(spritesmith4.png);background-position:-1788px -1643px;width:57px;height:54px}.inventory_special_spookDust{background-image:url(spritesmith4.png);background-position:-1788px -1588px;width:57px;height:54px}.inventory_special_trinket{background-image:url(spritesmith4.png);background-position:-1294px -1005px;width:48px;height:51px}.inventory_special_valentine{background-image:url(spritesmith4.png);background-position:-1788px -1533px;width:57px;height:54px}.pet_key{background-image:url(spritesmith4.png);background-position:-1788px -1478px;width:57px;height:54px}.rebirth_orb{background-image:url(spritesmith4.png);background-position:-1402px -764px;width:57px;height:54px}.shop_armoire{background-image:url(spritesmith4.png);background-position:-649px -1915px;width:40px;height:40px}.snowman{background-image:url(spritesmith4.png);background-position:-1788px -910px;width:90px;height:90px}.spookman{background-image:url(spritesmith4.png);background-position:-1788px -182px;width:90px;height:90px}.welcome_to_Habit_1{background-image:url(spritesmith4.png);background-position:-400px -1399px;width:502px;height:99px}.welcome_to_Habit_2{background-image:url(spritesmith4.png);background-position:0 -1076px;width:500px;height:171px}.welcome_to_Habit_3{background-image:url(spritesmith4.png);background-position:-220px 0;width:584px;height:220px}.welcome_to_Habit_4{background-image:url(spritesmith4.png);background-position:-501px -1076px;width:423px;height:171px}.zzz{background-image:url(spritesmith4.png);background-position:-1741px -1499px;width:40px;height:40px}.zzz_light{background-image:url(spritesmith4.png);background-position:-731px -1915px;width:40px;height:40px}.npc_alex{background-image:url(spritesmith4.png);background-position:-1065px -892px;width:162px;height:138px}.npc_bailey{background-image:url(spritesmith4.png);background-position:-1788px -1001px;width:60px;height:72px}.npc_daniel{background-image:url(spritesmith4.png);background-position:-660px -452px;width:135px;height:123px}.npc_justin{background-image:url(spritesmith4.png);background-position:-880px -672px;width:84px;height:120px}.npc_justin_head{background-image:url(spritesmith4.png);background-position:-1797px -1915px;width:36px;height:39px}.npc_matt{background-image:url(spritesmith4.png);background-position:-1204px -1248px;width:195px;height:138px}.npc_timetravelers{background-image:url(spritesmith4.png);background-position:-800px -1248px;width:195px;height:138px}.npc_timetravelers_active{background-image:url(spritesmith4.png);background-position:-604px -1248px;width:195px;height:138px}.npc_tyler{background-image:url(spritesmith4.png);background-position:-1788px -546px;width:90px;height:90px}.seasonalshop_closed{background-image:url(spritesmith4.png);background-position:-441px -1248px;width:162px;height:138px}.2014_Fall_HealerPROMO2{background-image:url(spritesmith4.png);background-position:-1788px -364px;width:90px;height:90px}.2014_Fall_Mage_PROMO9{background-image:url(spritesmith4.png);background-position:-221px -1772px;width:120px;height:90px}.2014_Fall_RoguePROMO3{background-image:url(spritesmith4.png);background-position:-115px -1772px;width:105px;height:90px}.2014_Fall_Warrior_PROMO{background-image:url(spritesmith4.png);background-position:-1788px -273px;width:90px;height:90px}.promo_enchanted_armoire{background-image:url(spritesmith4.png);background-position:-1004px -1772px;width:374px;height:76px}.promo_item_notif{background-image:url(spritesmith4.png);background-position:-1462px -1277px;width:249px;height:102px}.promo_mystery_201405{background-image:url(spritesmith4.png);background-position:-1788px -91px;width:90px;height:90px}.promo_mystery_201406{background-image:url(spritesmith4.png);background-position:-880px -793px;width:90px;height:96px}.promo_mystery_201407{background-image:url(spritesmith4.png);background-position:-1831px -1216px;width:42px;height:62px}.promo_mystery_201408{background-image:url(spritesmith4.png);background-position:-1788px -1074px;width:60px;height:71px}.promo_mystery_201409{background-image:url(spritesmith4.png);background-position:-1508px -1681px;width:90px;height:90px}.promo_mystery_201410{background-image:url(spritesmith4.png);background-position:-1788px -1350px;width:72px;height:63px}.promo_mystery_201411{background-image:url(spritesmith4.png);background-position:-1417px -1681px;width:90px;height:90px}.promo_mystery_201412{background-image:url(spritesmith4.png);background-position:-1788px -1216px;width:42px;height:66px}.promo_mystery_201501{background-image:url(spritesmith4.png);background-position:-1788px -1414px;width:48px;height:63px}.promo_mystery_201502{background-image:url(spritesmith4.png);background-position:-1235px -1681px;width:90px;height:90px}.promo_mystery_201503{background-image:url(spritesmith4.png);background-position:-1144px -1681px;width:90px;height:90px}.promo_mystery_201504{background-image:url(spritesmith4.png);background-position:-1788px -1146px;width:60px;height:69px}.promo_mystery_201505{background-image:url(spritesmith4.png);background-position:-962px -1681px;width:90px;height:90px}.promo_mystery_3014{background-image:url(spritesmith4.png);background-position:-744px -1681px;width:217px;height:90px}.promo_partyhats{background-image:url(spritesmith4.png);background-position:0 -1915px;width:115px;height:47px}.promo_pastel_skin{background-image:url(spritesmith4.png);background-position:-342px -1772px;width:330px;height:83px}.customize-option.promo_pastel_skin{background-image:url(spritesmith4.png);background-position:-367px -1787px;width:60px;height:60px}.promo_pet_skins{background-image:url(spritesmith4.png);background-position:-1245px -857px;width:140px;height:147px}.customize-option.promo_pet_skins{background-image:url(spritesmith4.png);background-position:-1270px -872px;width:60px;height:60px}.promo_shimmer_hair{background-image:url(spritesmith4.png);background-position:-673px -1772px;width:330px;height:83px}.customize-option.promo_shimmer_hair{background-image:url(spritesmith4.png);background-position:-698px -1787px;width:60px;height:60px}.promo_springclasses2014{background-image:url(spritesmith4.png);background-position:0 -1681px;width:288px;height:90px}.promo_springclasses2015{background-image:url(spritesmith4.png);background-position:-1274px -1590px;width:288px;height:90px}.promo_updos{background-image:url(spritesmith4.png);background-position:-1245px -709px;width:156px;height:147px}.promo_winterclasses2015{background-image:url(spritesmith4.png);background-position:-1462px 0;width:325px;height:110px}.promo_winteryhair{background-image:url(spritesmith4.png);background-position:-1025px -811px;width:152px;height:75px}.customize-option.promo_winteryhair{background-image:url(spritesmith4.png);background-position:-1050px -826px;width:60px;height:60px}.inventory_quest_scroll_atom1{background-image:url(spritesmith4.png);background-position:-1584px -1772px;width:48px;height:51px}.inventory_quest_scroll_atom2{background-image:url(spritesmith4.png);background-position:-1633px -1772px;width:48px;height:51px}.inventory_quest_scroll_atom2_locked{background-image:url(spritesmith4.png);background-position:-1682px -1772px;width:48px;height:51px}.inventory_quest_scroll_atom3{background-image:url(spritesmith4.png);background-position:-1731px -1772px;width:48px;height:51px}.inventory_quest_scroll_atom3_locked{background-image:url(spritesmith4.png);background-position:-1780px -1772px;width:48px;height:51px}.inventory_quest_scroll_basilist{background-image:url(spritesmith4.png);background-position:-1829px -1772px;width:48px;height:51px}.inventory_quest_scroll_bunny{background-image:url(spritesmith4.png);background-position:-1879px 0;width:48px;height:51px}.inventory_quest_scroll_dilatory_derby{background-image:url(spritesmith4.png);background-position:-1879px -52px;width:48px;height:51px}.inventory_quest_scroll_egg{background-image:url(spritesmith4.png);background-position:-1879px -104px;width:48px;height:51px}.inventory_quest_scroll_evilsanta{background-image:url(spritesmith4.png);background-position:-1879px -156px;width:48px;height:51px}.inventory_quest_scroll_evilsanta2{background-image:url(spritesmith4.png);background-position:-1879px -208px;width:48px;height:51px}.inventory_quest_scroll_ghost_stag{background-image:url(spritesmith4.png);background-position:-1879px -260px;width:48px;height:51px}.inventory_quest_scroll_goldenknight1{background-image:url(spritesmith4.png);background-position:-1879px -312px;width:48px;height:51px}.inventory_quest_scroll_goldenknight2{background-image:url(spritesmith4.png);background-position:-1879px -364px;width:48px;height:51px}.inventory_quest_scroll_goldenknight2_locked{background-image:url(spritesmith4.png);background-position:-1879px -416px;width:48px;height:51px}.inventory_quest_scroll_goldenknight3{background-image:url(spritesmith4.png);background-position:-1879px -468px;width:48px;height:51px}.inventory_quest_scroll_goldenknight3_locked{background-image:url(spritesmith4.png);background-position:-1879px -520px;width:48px;height:51px}.inventory_quest_scroll_gryphon{background-image:url(spritesmith4.png);background-position:-1879px -572px;width:48px;height:51px}.inventory_quest_scroll_harpy{background-image:url(spritesmith4.png);background-position:-1879px -624px;width:48px;height:51px}.inventory_quest_scroll_hedgehog{background-image:url(spritesmith4.png);background-position:-1879px -676px;width:48px;height:51px}.inventory_quest_scroll_moonstone1{background-image:url(spritesmith4.png);background-position:-1879px -728px;width:48px;height:51px}.inventory_quest_scroll_moonstone2{background-image:url(spritesmith4.png);background-position:-1879px -780px;width:48px;height:51px}.inventory_quest_scroll_moonstone2_locked{background-image:url(spritesmith4.png);background-position:-1879px -832px;width:48px;height:51px}.inventory_quest_scroll_moonstone3{background-image:url(spritesmith4.png);background-position:-1879px -884px;width:48px;height:51px}.inventory_quest_scroll_moonstone3_locked{background-image:url(spritesmith4.png);background-position:-1879px -936px;width:48px;height:51px}.inventory_quest_scroll_octopus{background-image:url(spritesmith4.png);background-position:-1879px -988px;width:48px;height:51px}.inventory_quest_scroll_owl{background-image:url(spritesmith4.png);background-position:-1879px -1040px;width:48px;height:51px}.inventory_quest_scroll_penguin{background-image:url(spritesmith4.png);background-position:-1879px -1092px;width:48px;height:51px}.inventory_quest_scroll_rat{background-image:url(spritesmith4.png);background-position:-1879px -1144px;width:48px;height:51px}.inventory_quest_scroll_rock{background-image:url(spritesmith4.png);background-position:-1879px -1196px;width:48px;height:51px}.inventory_quest_scroll_rooster{background-image:url(spritesmith4.png);background-position:-1879px -1248px;width:48px;height:51px}.inventory_quest_scroll_sheep{background-image:url(spritesmith4.png);background-position:-1879px -1300px;width:48px;height:51px}.inventory_quest_scroll_slime{background-image:url(spritesmith4.png);background-position:-1879px -1352px;width:48px;height:51px}.inventory_quest_scroll_spider{background-image:url(spritesmith4.png);background-position:-1879px -1404px;width:48px;height:51px}.inventory_quest_scroll_trex{background-image:url(spritesmith4.png);background-position:-1879px -1456px;width:48px;height:51px}.inventory_quest_scroll_trex_undead{background-image:url(spritesmith4.png);background-position:-1386px -857px;width:48px;height:51px}.inventory_quest_scroll_vice1{background-image:url(spritesmith4.png);background-position:-1879px -1560px;width:48px;height:51px}.inventory_quest_scroll_vice2{background-image:url(spritesmith4.png);background-position:-1879px -1612px;width:48px;height:51px}.inventory_quest_scroll_vice2_locked{background-image:url(spritesmith4.png);background-position:-1879px -1664px;width:48px;height:51px}.inventory_quest_scroll_vice3{background-image:url(spritesmith4.png);background-position:-1879px -1716px;width:48px;height:51px}.inventory_quest_scroll_vice3_locked{background-image:url(spritesmith4.png);background-position:-1879px -1768px;width:48px;height:51px}.quest_atom1{background-image:url(spritesmith4.png);background-position:0 -1248px;width:250px;height:150px}.quest_atom2{background-image:url(spritesmith4.png);background-position:-996px -1248px;width:207px;height:138px}.quest_atom3{background-image:url(spritesmith4.png);background-position:-191px -892px;width:216px;height:180px}.quest_basilist{background-image:url(spritesmith4.png);background-position:-251px -1248px;width:189px;height:141px}.quest_bunny{background-image:url(spritesmith4.png);background-position:-1025px -437px;width:210px;height:186px}.quest_dilatory{background-image:url(spritesmith4.png);background-position:-660px -672px;width:219px;height:219px}.quest_dilatory_derby{background-image:url(spritesmith4.png);background-position:-440px -672px;width:219px;height:219px}.quest_egg_plainEgg{background-image:url(spritesmith4.png);background-position:0 -1863px;width:48px;height:51px}.quest_evilsanta{background-image:url(spritesmith4.png);background-position:-660px -232px;width:118px;height:131px}.quest_ghost_stag{background-image:url(spritesmith4.png);background-position:0 -452px;width:219px;height:219px}.quest_goldenknight1_testimony{background-image:url(spritesmith4.png);background-position:-49px -1863px;width:48px;height:51px}.quest_goldenknight2{background-image:url(spritesmith4.png);background-position:-925px -1076px;width:250px;height:150px}.quest_goldenknight3{background-image:url(spritesmith4.png);background-position:0 0;width:219px;height:231px}.quest_gryphon{background-image:url(spritesmith4.png);background-position:-1245px 0;width:216px;height:177px}.quest_harpy{background-image:url(spritesmith4.png);background-position:-220px -672px;width:219px;height:219px}.quest_hedgehog{background-image:url(spritesmith4.png);background-position:-1025px -624px;width:219px;height:186px}.quest_moonstone1_moonstone{background-image:url(spritesmith4.png);background-position:-1846px -1533px;width:30px;height:30px}.quest_moonstone2{background-image:url(spritesmith4.png);background-position:-1025px 0;width:219px;height:219px}.quest_moonstone3{background-image:url(spritesmith4.png);background-position:0 -232px;width:219px;height:219px}.quest_octopus{background-image:url(spritesmith4.png);background-position:-408px -892px;width:222px;height:177px}.quest_owl{background-image:url(spritesmith4.png);background-position:-220px -232px;width:219px;height:219px}.quest_penguin{background-image:url(spritesmith4.png);background-position:0 -892px;width:190px;height:183px}.quest_rat{background-image:url(spritesmith4.png);background-position:-440px -232px;width:219px;height:219px}.quest_rock{background-image:url(spritesmith4.png);background-position:-1025px -220px;width:216px;height:216px}.quest_rooster{background-image:url(spritesmith4.png);background-position:-1245px -534px;width:213px;height:174px}.quest_sheep{background-image:url(spritesmith4.png);background-position:-220px -452px;width:219px;height:219px}.quest_slime{background-image:url(spritesmith4.png);background-position:-440px -452px;width:219px;height:219px}.quest_spider{background-image:url(spritesmith4.png);background-position:-1176px -1076px;width:250px;height:150px}.quest_stressbeast{background-image:url(spritesmith4.png);background-position:-805px 0;width:219px;height:219px}.quest_stressbeast_bailey{background-image:url(spritesmith4.png);background-position:-805px -220px;width:219px;height:219px}.quest_stressbeast_guide{background-image:url(spritesmith4.png);background-position:-805px -440px;width:219px;height:219px}.quest_stressbeast_stables{background-image:url(spritesmith4.png);background-position:0 -672px;width:219px;height:219px}.quest_trex{background-image:url(spritesmith4.png);background-position:-1245px -356px;width:204px;height:177px}.quest_trex_undead{background-image:url(spritesmith4.png);background-position:-631px -892px;width:216px;height:177px}.quest_vice1{background-image:url(spritesmith4.png);background-position:-848px -892px;width:216px;height:177px}.quest_vice2_lightCrystal{background-image:url(spritesmith4.png);background-position:-157px -1915px;width:40px;height:40px}.quest_vice3{background-image:url(spritesmith4.png);background-position:-1245px -178px;width:216px;height:177px}.shop_copper{background-image:url(spritesmith4.png);background-position:-1837px -1455px;width:32px;height:22px}.shop_eyes{background-image:url(spritesmith4.png);background-position:-280px -1915px;width:40px;height:40px}.shop_gold{background-image:url(spritesmith4.png);background-position:-1846px -1564px;width:32px;height:22px}.shop_opaquePotion{background-image:url(spritesmith4.png);background-position:-362px -1915px;width:40px;height:40px}.shop_potion{background-image:url(spritesmith4.png);background-position:-403px -1915px;width:40px;height:40px}.shop_reroll{background-image:url(spritesmith4.png);background-position:-444px -1915px;width:40px;height:40px}.shop_shinySeed{background-image:url(spritesmith4.png);background-position:-1846px -1283px;width:32px;height:32px}.shop_silver{background-image:url(spritesmith4.png);background-position:-1846px -1615px;width:32px;height:22px}.shop_snowball{background-image:url(spritesmith4.png);background-position:-1846px -1478px;width:32px;height:32px}.shop_spookDust{background-image:url(spritesmith4.png);background-position:-1846px -1316px;width:32px;height:32px}.Pet_Egg_BearCub{background-image:url(spritesmith4.png);background-position:-98px -1863px;width:48px;height:51px}.Pet_Egg_Bunny{background-image:url(spritesmith4.png);background-position:-147px -1863px;width:48px;height:51px}.Pet_Egg_Cactus{background-image:url(spritesmith4.png);background-position:-196px -1863px;width:48px;height:51px}.Pet_Egg_Deer{background-image:url(spritesmith4.png);background-position:-245px -1863px;width:48px;height:51px}.Pet_Egg_Dragon{background-image:url(spritesmith4.png);background-position:-294px -1863px;width:48px;height:51px}.Pet_Egg_Egg{background-image:url(spritesmith4.png);background-position:-343px -1863px;width:48px;height:51px}.Pet_Egg_FlyingPig{background-image:url(spritesmith4.png);background-position:-392px -1863px;width:48px;height:51px}.Pet_Egg_Fox{background-image:url(spritesmith4.png);background-position:-441px -1863px;width:48px;height:51px}.Pet_Egg_Gryphon{background-image:url(spritesmith4.png);background-position:-490px -1863px;width:48px;height:51px}.Pet_Egg_Hedgehog{background-image:url(spritesmith4.png);background-position:-539px -1863px;width:48px;height:51px}.Pet_Egg_LionCub{background-image:url(spritesmith4.png);background-position:-588px -1863px;width:48px;height:51px}.Pet_Egg_Octopus{background-image:url(spritesmith4.png);background-position:-637px -1863px;width:48px;height:51px}.Pet_Egg_Owl{background-image:url(spritesmith4.png);background-position:-686px -1863px;width:48px;height:51px}.Pet_Egg_PandaCub{background-image:url(spritesmith4.png);background-position:-735px -1863px;width:48px;height:51px}.Pet_Egg_Parrot{background-image:url(spritesmith4.png);background-position:-784px -1863px;width:48px;height:51px}.Pet_Egg_Penguin{background-image:url(spritesmith4.png);background-position:-833px -1863px;width:48px;height:51px}.Pet_Egg_PolarBear{background-image:url(spritesmith4.png);background-position:-882px -1863px;width:48px;height:51px}.Pet_Egg_Rat{background-image:url(spritesmith4.png);background-position:-931px -1863px;width:48px;height:51px}.Pet_Egg_Rock{background-image:url(spritesmith4.png);background-position:-980px -1863px;width:48px;height:51px}.Pet_Egg_Rooster{background-image:url(spritesmith4.png);background-position:-1029px -1863px;width:48px;height:51px}.Pet_Egg_Seahorse{background-image:url(spritesmith4.png);background-position:-1078px -1863px;width:48px;height:51px}.Pet_Egg_Sheep{background-image:url(spritesmith4.png);background-position:-1127px -1863px;width:48px;height:51px}.Pet_Egg_Slime{background-image:url(spritesmith4.png);background-position:-1176px -1863px;width:48px;height:51px}.Pet_Egg_Spider{background-image:url(spritesmith4.png);background-position:-1225px -1863px;width:48px;height:51px}.Pet_Egg_TRex{background-image:url(spritesmith4.png);background-position:-1274px -1863px;width:48px;height:51px}.Pet_Egg_TigerCub{background-image:url(spritesmith4.png);background-position:-1323px -1863px;width:48px;height:51px}.Pet_Egg_Wolf{background-image:url(spritesmith4.png);background-position:-1372px -1863px;width:48px;height:51px}.Pet_Food_Cake_Base{background-image:url(spritesmith4.png);background-position:-1928px -832px;width:43px;height:43px}.Pet_Food_Cake_CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1928px -787px;width:42px;height:44px}.Pet_Food_Cake_CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1928px -516px;width:43px;height:45px}.Pet_Food_Cake_Desert{background-image:url(spritesmith4.png);background-position:-1928px -562px;width:43px;height:44px}.Pet_Food_Cake_Golden{background-image:url(spritesmith4.png);background-position:-1928px -876px;width:43px;height:42px}.Pet_Food_Cake_Red{background-image:url(spritesmith4.png);background-position:-1928px -607px;width:43px;height:44px}.Pet_Food_Cake_Shade{background-image:url(spritesmith4.png);background-position:-1928px -742px;width:43px;height:44px}.Pet_Food_Cake_Skeleton{background-image:url(spritesmith4.png);background-position:-1928px -468px;width:42px;height:47px}.Pet_Food_Cake_White{background-image:url(spritesmith4.png);background-position:-1928px -697px;width:44px;height:44px}.Pet_Food_Cake_Zombie{background-image:url(spritesmith4.png);background-position:-1928px -652px;width:45px;height:44px}.Pet_Food_Candy_Base{background-image:url(spritesmith4.png);background-position:-1928px 0;width:48px;height:51px}.Pet_Food_Candy_CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1928px -52px;width:48px;height:51px}.Pet_Food_Candy_CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1928px -104px;width:48px;height:51px}.Pet_Food_Candy_Desert{background-image:url(spritesmith4.png);background-position:-1928px -156px;width:48px;height:51px}.Pet_Food_Candy_Golden{background-image:url(spritesmith4.png);background-position:-1928px -208px;width:48px;height:51px}.Pet_Food_Candy_Red{background-image:url(spritesmith4.png);background-position:-1928px -260px;width:48px;height:51px}.Pet_Food_Candy_Shade{background-image:url(spritesmith4.png);background-position:-1928px -312px;width:48px;height:51px}.Pet_Food_Candy_Skeleton{background-image:url(spritesmith4.png);background-position:-1928px -364px;width:48px;height:51px}.Pet_Food_Candy_White{background-image:url(spritesmith4.png);background-position:-1928px -416px;width:48px;height:51px}.Pet_Food_Candy_Zombie{background-image:url(spritesmith4.png);background-position:-1862px -1863px;width:48px;height:51px}.Pet_Food_Chocolate{background-image:url(spritesmith4.png);background-position:-1813px -1863px;width:48px;height:51px}.Pet_Food_CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1764px -1863px;width:48px;height:51px}.Pet_Food_CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1715px -1863px;width:48px;height:51px}.Pet_Food_Fish{background-image:url(spritesmith4.png);background-position:-1666px -1863px;width:48px;height:51px}.Pet_Food_Honey{background-image:url(spritesmith4.png);background-position:-1617px -1863px;width:48px;height:51px}.Pet_Food_Meat{background-image:url(spritesmith4.png);background-position:-1568px -1863px;width:48px;height:51px}.Pet_Food_Milk{background-image:url(spritesmith4.png);background-position:-1519px -1863px;width:48px;height:51px}.Pet_Food_Potatoe{background-image:url(spritesmith4.png);background-position:-1470px -1863px;width:48px;height:51px}.Pet_Food_RottenMeat{background-image:url(spritesmith4.png);background-position:-1421px -1863px;width:48px;height:51px}.Pet_Food_Saddle{background-image:url(spritesmith4.png);background-position:-1400px -1300px;width:48px;height:51px}.Pet_Food_Strawberry{background-image:url(spritesmith4.png);background-position:-1879px -1508px;width:48px;height:51px}.Mount_Body_BearCub-Base{background-image:url(spritesmith4.png);background-position:-1568px -535px;width:105px;height:105px}.Mount_Body_BearCub-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1462px -535px;width:105px;height:105px}.Mount_Body_BearCub-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1674px -429px;width:105px;height:105px}.Mount_Body_BearCub-Desert{background-image:url(spritesmith4.png);background-position:-1568px -429px;width:105px;height:105px}.Mount_Body_BearCub-Golden{background-image:url(spritesmith4.png);background-position:-1462px -429px;width:105px;height:105px}.Mount_Body_BearCub-Polar{background-image:url(spritesmith4.png);background-position:-1674px -323px;width:105px;height:105px}.Mount_Body_BearCub-Red{background-image:url(spritesmith4.png);background-position:-1568px -323px;width:105px;height:105px}.Mount_Body_BearCub-Shade{background-image:url(spritesmith4.png);background-position:-1462px -323px;width:105px;height:105px}.Mount_Body_BearCub-Skeleton{background-image:url(spritesmith4.png);background-position:-1674px -217px;width:105px;height:105px}.Mount_Body_BearCub-White{background-image:url(spritesmith4.png);background-position:-1568px -217px;width:105px;height:105px}.Mount_Body_BearCub-Zombie{background-image:url(spritesmith4.png);background-position:-1462px -217px;width:105px;height:105px}.Mount_Body_Bunny-Base{background-image:url(spritesmith4.png);background-position:-1674px -111px;width:105px;height:105px}.Mount_Body_Bunny-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1568px -111px;width:105px;height:105px}.Mount_Body_Bunny-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1462px -111px;width:105px;height:105px}.Mount_Body_Bunny-Desert{background-image:url(spritesmith4.png);background-position:-1674px -1171px;width:105px;height:105px}.Mount_Body_Bunny-Golden{background-image:url(spritesmith4.png);background-position:-1568px -1171px;width:105px;height:105px}.Mount_Body_Bunny-Red{background-image:url(spritesmith4.png);background-position:-1462px -1171px;width:105px;height:105px}.Mount_Body_Bunny-Shade{background-image:url(spritesmith4.png);background-position:-1674px -1065px;width:105px;height:105px}.Mount_Body_Bunny-Skeleton{background-image:url(spritesmith4.png);background-position:-1568px -1065px;width:105px;height:105px}.Mount_Body_Bunny-White{background-image:url(spritesmith4.png);background-position:-1462px -1065px;width:105px;height:105px}.Mount_Body_Bunny-Zombie{background-image:url(spritesmith4.png);background-position:-1674px -959px;width:105px;height:105px}.Mount_Body_Cactus-Base{background-image:url(spritesmith4.png);background-position:-1674px -641px;width:105px;height:105px}.Mount_Body_Cactus-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1568px -641px;width:105px;height:105px}.Mount_Body_Cactus-CottonCandyPink{background-image:url(spritesmith4.png);background-position:-1462px -641px;width:105px;height:105px}.Mount_Body_Cactus-Desert{background-image:url(spritesmith4.png);background-position:-1674px -535px;width:105px;height:105px}.Mount_Body_Cactus-Golden{background-image:url(spritesmith4.png);background-position:-1568px -959px;width:105px;height:105px}.Mount_Body_Cactus-Red{background-image:url(spritesmith4.png);background-position:-1462px -959px;width:105px;height:105px}.Mount_Body_Cactus-Shade{background-image:url(spritesmith4.png);background-position:-1674px -853px;width:105px;height:105px}.Mount_Body_Cactus-Skeleton{background-image:url(spritesmith4.png);background-position:-1568px -853px;width:105px;height:105px}.Mount_Body_Cactus-White{background-image:url(spritesmith4.png);background-position:-1462px -747px;width:105px;height:105px}.Mount_Body_Cactus-Zombie{background-image:url(spritesmith4.png);background-position:-1462px -853px;width:105px;height:105px}.Mount_Body_Deer-Base{background-image:url(spritesmith4.png);background-position:-1674px -747px;width:105px;height:105px}.Mount_Body_Deer-CottonCandyBlue{background-image:url(spritesmith4.png);background-position:-1568px -747px;width:105px;height:105px}.Mount_Body_Deer-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-998px -742px;width:105px;height:105px}.Mount_Body_Deer-Desert{background-image:url(spritesmith5.png);background-position:-1528px -742px;width:105px;height:105px}.Mount_Body_Deer-Golden{background-image:url(spritesmith5.png);background-position:-106px -1516px;width:105px;height:105px}.Mount_Body_Deer-Red{background-image:url(spritesmith5.png);background-position:-212px -1516px;width:105px;height:105px}.Mount_Body_Deer-Shade{background-image:url(spritesmith5.png);background-position:-318px -1516px;width:105px;height:105px}.Mount_Body_Deer-Skeleton{background-image:url(spritesmith5.png);background-position:-424px -1516px;width:105px;height:105px}.Mount_Body_Deer-White{background-image:url(spritesmith5.png);background-position:-530px -1516px;width:105px;height:105px}.Mount_Body_Deer-Zombie{background-image:url(spritesmith5.png);background-position:-636px -1516px;width:105px;height:105px}.Mount_Body_Dragon-Base{background-image:url(spritesmith5.png);background-position:-742px -1516px;width:105px;height:105px}.Mount_Body_Dragon-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-848px -1516px;width:105px;height:105px}.Mount_Body_Dragon-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-954px -1516px;width:105px;height:105px}.Mount_Body_Dragon-Desert{background-image:url(spritesmith5.png);background-position:-1060px -1516px;width:105px;height:105px}.Mount_Body_Dragon-Golden{background-image:url(spritesmith5.png);background-position:-1634px -742px;width:105px;height:105px}.Mount_Body_Dragon-Red{background-image:url(spritesmith5.png);background-position:-1634px -848px;width:105px;height:105px}.Mount_Body_Dragon-Shade{background-image:url(spritesmith5.png);background-position:-1634px -954px;width:105px;height:105px}.Mount_Body_Dragon-Skeleton{background-image:url(spritesmith5.png);background-position:-1634px -1060px;width:105px;height:105px}.Mount_Body_Dragon-White{background-image:url(spritesmith5.png);background-position:-1634px -1166px;width:105px;height:105px}.Mount_Body_Dragon-Zombie{background-image:url(spritesmith5.png);background-position:-1634px -1272px;width:105px;height:105px}.Mount_Body_Egg-Base{background-image:url(spritesmith5.png);background-position:-1634px -1378px;width:105px;height:105px}.Mount_Body_Egg-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1634px -1484px;width:105px;height:105px}.Mount_Body_Egg-CottonCandyPink{background-image:url(spritesmith5.png);background-position:0 -1622px;width:105px;height:105px}.Mount_Body_Egg-Desert{background-image:url(spritesmith5.png);background-position:-106px -1622px;width:105px;height:105px}.Mount_Body_Egg-Golden{background-image:url(spritesmith5.png);background-position:-954px -1940px;width:105px;height:105px}.Mount_Body_Egg-Red{background-image:url(spritesmith5.png);background-position:-1272px -1940px;width:105px;height:105px}.Mount_Body_Egg-Shade{background-image:url(spritesmith5.png);background-position:-424px -544px;width:105px;height:105px}.Mount_Body_Egg-Skeleton{background-image:url(spritesmith5.png);background-position:-530px -544px;width:105px;height:105px}.Mount_Body_Egg-White{background-image:url(spritesmith5.png);background-position:-680px 0;width:105px;height:105px}.Mount_Body_Egg-Zombie{background-image:url(spritesmith5.png);background-position:-680px -106px;width:105px;height:105px}.Mount_Body_FlyingPig-Base{background-image:url(spritesmith5.png);background-position:-680px -212px;width:105px;height:105px}.Mount_Body_FlyingPig-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-680px -318px;width:105px;height:105px}.Mount_Body_FlyingPig-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-680px -424px;width:105px;height:105px}.Mount_Body_FlyingPig-Desert{background-image:url(spritesmith5.png);background-position:-680px -530px;width:105px;height:105px}.Mount_Body_FlyingPig-Golden{background-image:url(spritesmith5.png);background-position:0 -668px;width:105px;height:105px}.Mount_Body_FlyingPig-Red{background-image:url(spritesmith5.png);background-position:-106px -668px;width:105px;height:105px}.Mount_Body_FlyingPig-Shade{background-image:url(spritesmith5.png);background-position:-212px -668px;width:105px;height:105px}.Mount_Body_FlyingPig-Skeleton{background-image:url(spritesmith5.png);background-position:-318px -668px;width:105px;height:105px}.Mount_Body_FlyingPig-White{background-image:url(spritesmith5.png);background-position:-424px -668px;width:105px;height:105px}.Mount_Body_FlyingPig-Zombie{background-image:url(spritesmith5.png);background-position:-530px -668px;width:105px;height:105px}.Mount_Body_Fox-Base{background-image:url(spritesmith5.png);background-position:-636px -668px;width:105px;height:105px}.Mount_Body_Fox-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-786px 0;width:105px;height:105px}.Mount_Body_Fox-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-786px -106px;width:105px;height:105px}.Mount_Body_Fox-Desert{background-image:url(spritesmith5.png);background-position:-786px -212px;width:105px;height:105px}.Mount_Body_Fox-Golden{background-image:url(spritesmith5.png);background-position:-786px -318px;width:105px;height:105px}.Mount_Body_Fox-Red{background-image:url(spritesmith5.png);background-position:-786px -424px;width:105px;height:105px}.Mount_Body_Fox-Shade{background-image:url(spritesmith5.png);background-position:-786px -530px;width:105px;height:105px}.Mount_Body_Fox-Skeleton{background-image:url(spritesmith5.png);background-position:-786px -636px;width:105px;height:105px}.Mount_Body_Fox-White{background-image:url(spritesmith5.png);background-position:0 -774px;width:105px;height:105px}.Mount_Body_Fox-Zombie{background-image:url(spritesmith5.png);background-position:-106px -774px;width:105px;height:105px}.Mount_Body_Gryphon-Base{background-image:url(spritesmith5.png);background-position:-212px -774px;width:105px;height:105px}.Mount_Body_Gryphon-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-318px -774px;width:105px;height:105px}.Mount_Body_Gryphon-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-424px -774px;width:105px;height:105px}.Mount_Body_Gryphon-Desert{background-image:url(spritesmith5.png);background-position:-530px -774px;width:105px;height:105px}.Mount_Body_Gryphon-Golden{background-image:url(spritesmith5.png);background-position:-636px -774px;width:105px;height:105px}.Mount_Body_Gryphon-Red{background-image:url(spritesmith5.png);background-position:-742px -774px;width:105px;height:105px}.Mount_Body_Gryphon-Shade{background-image:url(spritesmith5.png);background-position:-892px 0;width:105px;height:105px}.Mount_Body_Gryphon-Skeleton{background-image:url(spritesmith5.png);background-position:-892px -106px;width:105px;height:105px}.Mount_Body_Gryphon-White{background-image:url(spritesmith5.png);background-position:-892px -212px;width:105px;height:105px}.Mount_Body_Gryphon-Zombie{background-image:url(spritesmith5.png);background-position:-892px -318px;width:105px;height:105px}.Mount_Body_Hedgehog-Base{background-image:url(spritesmith5.png);background-position:-892px -424px;width:105px;height:105px}.Mount_Body_Hedgehog-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-892px -530px;width:105px;height:105px}.Mount_Body_Hedgehog-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-892px -636px;width:105px;height:105px}.Mount_Body_Hedgehog-Desert{background-image:url(spritesmith5.png);background-position:-892px -742px;width:105px;height:105px}.Mount_Body_Hedgehog-Golden{background-image:url(spritesmith5.png);background-position:0 -880px;width:105px;height:105px}.Mount_Body_Hedgehog-Red{background-image:url(spritesmith5.png);background-position:-106px -880px;width:105px;height:105px}.Mount_Body_Hedgehog-Shade{background-image:url(spritesmith5.png);background-position:-212px -880px;width:105px;height:105px}.Mount_Body_Hedgehog-Skeleton{background-image:url(spritesmith5.png);background-position:-318px -880px;width:105px;height:105px}.Mount_Body_Hedgehog-White{background-image:url(spritesmith5.png);background-position:-424px -880px;width:105px;height:105px}.Mount_Body_Hedgehog-Zombie{background-image:url(spritesmith5.png);background-position:-530px -880px;width:105px;height:105px}.Mount_Body_LionCub-Base{background-image:url(spritesmith5.png);background-position:-636px -880px;width:105px;height:105px}.Mount_Body_LionCub-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-742px -880px;width:105px;height:105px}.Mount_Body_LionCub-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-848px -880px;width:105px;height:105px}.Mount_Body_LionCub-Desert{background-image:url(spritesmith5.png);background-position:-998px 0;width:105px;height:105px}.Mount_Body_LionCub-Ethereal{background-image:url(spritesmith5.png);background-position:-998px -106px;width:105px;height:105px}.Mount_Body_LionCub-Golden{background-image:url(spritesmith5.png);background-position:-998px -212px;width:105px;height:105px}.Mount_Body_LionCub-Red{background-image:url(spritesmith5.png);background-position:-998px -318px;width:105px;height:105px}.Mount_Body_LionCub-Shade{background-image:url(spritesmith5.png);background-position:-998px -424px;width:105px;height:105px}.Mount_Body_LionCub-Skeleton{background-image:url(spritesmith5.png);background-position:0 -986px;width:111px;height:105px}.Mount_Body_LionCub-White{background-image:url(spritesmith5.png);background-position:-998px -530px;width:105px;height:105px}.Mount_Body_LionCub-Zombie{background-image:url(spritesmith5.png);background-position:-998px -636px;width:105px;height:105px}.Mount_Body_Mammoth-Base{background-image:url(spritesmith5.png);background-position:0 -544px;width:105px;height:123px}.Mount_Body_MantisShrimp-Base{background-image:url(spritesmith5.png);background-position:-112px -986px;width:108px;height:105px}.Mount_Body_Octopus-Base{background-image:url(spritesmith5.png);background-position:-998px -848px;width:105px;height:105px}.Mount_Body_Octopus-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-221px -986px;width:105px;height:105px}.Mount_Body_Octopus-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-327px -986px;width:105px;height:105px}.Mount_Body_Octopus-Desert{background-image:url(spritesmith5.png);background-position:-433px -986px;width:105px;height:105px}.Mount_Body_Octopus-Golden{background-image:url(spritesmith5.png);background-position:-539px -986px;width:105px;height:105px}.Mount_Body_Octopus-Red{background-image:url(spritesmith5.png);background-position:-645px -986px;width:105px;height:105px}.Mount_Body_Octopus-Shade{background-image:url(spritesmith5.png);background-position:-751px -986px;width:105px;height:105px}.Mount_Body_Octopus-Skeleton{background-image:url(spritesmith5.png);background-position:-857px -986px;width:105px;height:105px}.Mount_Body_Octopus-White{background-image:url(spritesmith5.png);background-position:-963px -986px;width:105px;height:105px}.Mount_Body_Octopus-Zombie{background-image:url(spritesmith5.png);background-position:-1104px 0;width:105px;height:105px}.Mount_Body_Owl-Base{background-image:url(spritesmith5.png);background-position:-1104px -106px;width:105px;height:105px}.Mount_Body_Owl-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1104px -212px;width:105px;height:105px}.Mount_Body_Owl-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1104px -318px;width:105px;height:105px}.Mount_Body_Owl-Desert{background-image:url(spritesmith5.png);background-position:-1104px -424px;width:105px;height:105px}.Mount_Body_Owl-Golden{background-image:url(spritesmith5.png);background-position:-1104px -530px;width:105px;height:105px}.Mount_Body_Owl-Red{background-image:url(spritesmith5.png);background-position:-1104px -636px;width:105px;height:105px}.Mount_Body_Owl-Shade{background-image:url(spritesmith5.png);background-position:-1104px -742px;width:105px;height:105px}.Mount_Body_Owl-Skeleton{background-image:url(spritesmith5.png);background-position:-1104px -848px;width:105px;height:105px}.Mount_Body_Owl-White{background-image:url(spritesmith5.png);background-position:-1104px -954px;width:105px;height:105px}.Mount_Body_Owl-Zombie{background-image:url(spritesmith5.png);background-position:0 -1092px;width:105px;height:105px}.Mount_Body_PandaCub-Base{background-image:url(spritesmith5.png);background-position:-106px -1092px;width:105px;height:105px}.Mount_Body_PandaCub-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-212px -1092px;width:105px;height:105px}.Mount_Body_PandaCub-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-318px -1092px;width:105px;height:105px}.Mount_Body_PandaCub-Desert{background-image:url(spritesmith5.png);background-position:-424px -1092px;width:105px;height:105px}.Mount_Body_PandaCub-Golden{background-image:url(spritesmith5.png);background-position:-530px -1092px;width:105px;height:105px}.Mount_Body_PandaCub-Red{background-image:url(spritesmith5.png);background-position:-636px -1092px;width:105px;height:105px}.Mount_Body_PandaCub-Shade{background-image:url(spritesmith5.png);background-position:-742px -1092px;width:105px;height:105px}.Mount_Body_PandaCub-Skeleton{background-image:url(spritesmith5.png);background-position:-848px -1092px;width:105px;height:105px}.Mount_Body_PandaCub-White{background-image:url(spritesmith5.png);background-position:-954px -1092px;width:105px;height:105px}.Mount_Body_PandaCub-Zombie{background-image:url(spritesmith5.png);background-position:-1060px -1092px;width:105px;height:105px}.Mount_Body_Parrot-Base{background-image:url(spritesmith5.png);background-position:-1210px 0;width:105px;height:105px}.Mount_Body_Parrot-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1210px -106px;width:105px;height:105px}.Mount_Body_Parrot-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1210px -212px;width:105px;height:105px}.Mount_Body_Parrot-Desert{background-image:url(spritesmith5.png);background-position:-1210px -318px;width:105px;height:105px}.Mount_Body_Parrot-Golden{background-image:url(spritesmith5.png);background-position:-1210px -424px;width:105px;height:105px}.Mount_Body_Parrot-Red{background-image:url(spritesmith5.png);background-position:-1210px -530px;width:105px;height:105px}.Mount_Body_Parrot-Shade{background-image:url(spritesmith5.png);background-position:-1210px -636px;width:105px;height:105px}.Mount_Body_Parrot-Skeleton{background-image:url(spritesmith5.png);background-position:-1210px -742px;width:105px;height:105px}.Mount_Body_Parrot-White{background-image:url(spritesmith5.png);background-position:-1210px -848px;width:105px;height:105px}.Mount_Body_Parrot-Zombie{background-image:url(spritesmith5.png);background-position:-1210px -954px;width:105px;height:105px}.Mount_Body_Penguin-Base{background-image:url(spritesmith5.png);background-position:-1210px -1060px;width:105px;height:105px}.Mount_Body_Penguin-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:0 -1198px;width:105px;height:105px}.Mount_Body_Penguin-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-106px -1198px;width:105px;height:105px}.Mount_Body_Penguin-Desert{background-image:url(spritesmith5.png);background-position:-212px -1198px;width:105px;height:105px}.Mount_Body_Penguin-Golden{background-image:url(spritesmith5.png);background-position:-318px -1198px;width:105px;height:105px}.Mount_Body_Penguin-Red{background-image:url(spritesmith5.png);background-position:-424px -1198px;width:105px;height:105px}.Mount_Body_Penguin-Shade{background-image:url(spritesmith5.png);background-position:-530px -1198px;width:105px;height:105px}.Mount_Body_Penguin-Skeleton{background-image:url(spritesmith5.png);background-position:-636px -1198px;width:105px;height:105px}.Mount_Body_Penguin-White{background-image:url(spritesmith5.png);background-position:-742px -1198px;width:105px;height:105px}.Mount_Body_Penguin-Zombie{background-image:url(spritesmith5.png);background-position:-848px -1198px;width:105px;height:105px}.Mount_Body_Rat-Base{background-image:url(spritesmith5.png);background-position:-954px -1198px;width:105px;height:105px}.Mount_Body_Rat-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1060px -1198px;width:105px;height:105px}.Mount_Body_Rat-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1166px -1198px;width:105px;height:105px}.Mount_Body_Rat-Desert{background-image:url(spritesmith5.png);background-position:-1316px 0;width:105px;height:105px}.Mount_Body_Rat-Golden{background-image:url(spritesmith5.png);background-position:-1316px -106px;width:105px;height:105px}.Mount_Body_Rat-Red{background-image:url(spritesmith5.png);background-position:-1316px -212px;width:105px;height:105px}.Mount_Body_Rat-Shade{background-image:url(spritesmith5.png);background-position:-1316px -318px;width:105px;height:105px}.Mount_Body_Rat-Skeleton{background-image:url(spritesmith5.png);background-position:-1316px -424px;width:105px;height:105px}.Mount_Body_Rat-White{background-image:url(spritesmith5.png);background-position:-1316px -530px;width:105px;height:105px}.Mount_Body_Rat-Zombie{background-image:url(spritesmith5.png);background-position:-1316px -636px;width:105px;height:105px}.Mount_Body_Rock-Base{background-image:url(spritesmith5.png);background-position:-1316px -742px;width:105px;height:105px}.Mount_Body_Rock-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1316px -848px;width:105px;height:105px}.Mount_Body_Rock-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1316px -954px;width:105px;height:105px}.Mount_Body_Rock-Desert{background-image:url(spritesmith5.png);background-position:-1316px -1060px;width:105px;height:105px}.Mount_Body_Rock-Golden{background-image:url(spritesmith5.png);background-position:-1316px -1166px;width:105px;height:105px}.Mount_Body_Rock-Red{background-image:url(spritesmith5.png);background-position:0 -1304px;width:105px;height:105px}.Mount_Body_Rock-Shade{background-image:url(spritesmith5.png);background-position:-106px -1304px;width:105px;height:105px}.Mount_Body_Rock-Skeleton{background-image:url(spritesmith5.png);background-position:-212px -1304px;width:105px;height:105px}.Mount_Body_Rock-White{background-image:url(spritesmith5.png);background-position:-318px -1304px;width:105px;height:105px}.Mount_Body_Rock-Zombie{background-image:url(spritesmith5.png);background-position:-424px -1304px;width:105px;height:105px}.Mount_Body_Rooster-Base{background-image:url(spritesmith5.png);background-position:-530px -1304px;width:105px;height:105px}.Mount_Body_Rooster-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-636px -1304px;width:105px;height:105px}.Mount_Body_Rooster-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-742px -1304px;width:105px;height:105px}.Mount_Body_Rooster-Desert{background-image:url(spritesmith5.png);background-position:-848px -1304px;width:105px;height:105px}.Mount_Body_Rooster-Golden{background-image:url(spritesmith5.png);background-position:-954px -1304px;width:105px;height:105px}.Mount_Body_Rooster-Red{background-image:url(spritesmith5.png);background-position:-1060px -1304px;width:105px;height:105px}.Mount_Body_Rooster-Shade{background-image:url(spritesmith5.png);background-position:-1166px -1304px;width:105px;height:105px}.Mount_Body_Rooster-Skeleton{background-image:url(spritesmith5.png);background-position:-1272px -1304px;width:105px;height:105px}.Mount_Body_Rooster-White{background-image:url(spritesmith5.png);background-position:-1422px 0;width:105px;height:105px}.Mount_Body_Rooster-Zombie{background-image:url(spritesmith5.png);background-position:-1422px -106px;width:105px;height:105px}.Mount_Body_Seahorse-Base{background-image:url(spritesmith5.png);background-position:-1422px -212px;width:105px;height:105px}.Mount_Body_Seahorse-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1422px -318px;width:105px;height:105px}.Mount_Body_Seahorse-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1422px -424px;width:105px;height:105px}.Mount_Body_Seahorse-Desert{background-image:url(spritesmith5.png);background-position:-1422px -530px;width:105px;height:105px}.Mount_Body_Seahorse-Golden{background-image:url(spritesmith5.png);background-position:-1422px -636px;width:105px;height:105px}.Mount_Body_Seahorse-Red{background-image:url(spritesmith5.png);background-position:-1422px -742px;width:105px;height:105px}.Mount_Body_Seahorse-Shade{background-image:url(spritesmith5.png);background-position:-1422px -848px;width:105px;height:105px}.Mount_Body_Seahorse-Skeleton{background-image:url(spritesmith5.png);background-position:-1422px -954px;width:105px;height:105px}.Mount_Body_Seahorse-White{background-image:url(spritesmith5.png);background-position:-1422px -1060px;width:105px;height:105px}.Mount_Body_Seahorse-Zombie{background-image:url(spritesmith5.png);background-position:-1422px -1166px;width:105px;height:105px}.Mount_Body_Sheep-Base{background-image:url(spritesmith5.png);background-position:-1422px -1272px;width:105px;height:105px}.Mount_Body_Sheep-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:0 -1410px;width:105px;height:105px}.Mount_Body_Sheep-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-106px -1410px;width:105px;height:105px}.Mount_Body_Sheep-Desert{background-image:url(spritesmith5.png);background-position:-212px -1410px;width:105px;height:105px}.Mount_Body_Sheep-Golden{background-image:url(spritesmith5.png);background-position:-318px -1410px;width:105px;height:105px}.Mount_Body_Sheep-Red{background-image:url(spritesmith5.png);background-position:-424px -1410px;width:105px;height:105px}.Mount_Body_Sheep-Shade{background-image:url(spritesmith5.png);background-position:-530px -1410px;width:105px;height:105px}.Mount_Body_Sheep-Skeleton{background-image:url(spritesmith5.png);background-position:-636px -1410px;width:105px;height:105px}.Mount_Body_Sheep-White{background-image:url(spritesmith5.png);background-position:-742px -1410px;width:105px;height:105px}.Mount_Body_Sheep-Zombie{background-image:url(spritesmith5.png);background-position:-848px -1410px;width:105px;height:105px}.Mount_Body_Slime-Base{background-image:url(spritesmith5.png);background-position:-954px -1410px;width:105px;height:105px}.Mount_Body_Slime-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1060px -1410px;width:105px;height:105px}.Mount_Body_Slime-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1166px -1410px;width:105px;height:105px}.Mount_Body_Slime-Desert{background-image:url(spritesmith5.png);background-position:-1272px -1410px;width:105px;height:105px}.Mount_Body_Slime-Golden{background-image:url(spritesmith5.png);background-position:-1378px -1410px;width:105px;height:105px}.Mount_Body_Slime-Red{background-image:url(spritesmith5.png);background-position:-1528px 0;width:105px;height:105px}.Mount_Body_Slime-Shade{background-image:url(spritesmith5.png);background-position:-1528px -106px;width:105px;height:105px}.Mount_Body_Slime-Skeleton{background-image:url(spritesmith5.png);background-position:-1528px -212px;width:105px;height:105px}.Mount_Body_Slime-White{background-image:url(spritesmith5.png);background-position:-1528px -318px;width:105px;height:105px}.Mount_Body_Slime-Zombie{background-image:url(spritesmith5.png);background-position:-1528px -424px;width:105px;height:105px}.Mount_Body_Spider-Base{background-image:url(spritesmith5.png);background-position:-1528px -530px;width:105px;height:105px}.Mount_Body_Spider-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1528px -636px;width:105px;height:105px}.Mount_Body_Spider-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-318px -544px;width:105px;height:105px}.Mount_Body_Spider-Desert{background-image:url(spritesmith5.png);background-position:-1528px -848px;width:105px;height:105px}.Mount_Body_Spider-Golden{background-image:url(spritesmith5.png);background-position:-1528px -954px;width:105px;height:105px}.Mount_Body_Spider-Red{background-image:url(spritesmith5.png);background-position:-1528px -1060px;width:105px;height:105px}.Mount_Body_Spider-Shade{background-image:url(spritesmith5.png);background-position:-1528px -1166px;width:105px;height:105px}.Mount_Body_Spider-Skeleton{background-image:url(spritesmith5.png);background-position:-1528px -1272px;width:105px;height:105px}.Mount_Body_Spider-White{background-image:url(spritesmith5.png);background-position:-1528px -1378px;width:105px;height:105px}.Mount_Body_Spider-Zombie{background-image:url(spritesmith5.png);background-position:0 -1516px;width:105px;height:105px}.Mount_Body_TRex-Base{background-image:url(spritesmith5.png);background-position:-408px -136px;width:135px;height:135px}.Mount_Body_TRex-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:0 -136px;width:135px;height:135px}.Mount_Body_TRex-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-136px -136px;width:135px;height:135px}.Mount_Body_TRex-Desert{background-image:url(spritesmith5.png);background-position:-272px 0;width:135px;height:135px}.Mount_Body_TRex-Golden{background-image:url(spritesmith5.png);background-position:-272px -136px;width:135px;height:135px}.Mount_Body_TRex-Red{background-image:url(spritesmith5.png);background-position:0 -272px;width:135px;height:135px}.Mount_Body_TRex-Shade{background-image:url(spritesmith5.png);background-position:-136px -272px;width:135px;height:135px}.Mount_Body_TRex-Skeleton{background-image:url(spritesmith5.png);background-position:-272px -272px;width:135px;height:135px}.Mount_Body_TRex-White{background-image:url(spritesmith5.png);background-position:-408px 0;width:135px;height:135px}.Mount_Body_TRex-Zombie{background-image:url(spritesmith5.png);background-position:0 0;width:135px;height:135px}.Mount_Body_TigerCub-Base{background-image:url(spritesmith5.png);background-position:-1166px -1516px;width:105px;height:105px}.Mount_Body_TigerCub-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1272px -1516px;width:105px;height:105px}.Mount_Body_TigerCub-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1378px -1516px;width:105px;height:105px}.Mount_Body_TigerCub-Desert{background-image:url(spritesmith5.png);background-position:-1484px -1516px;width:105px;height:105px}.Mount_Body_TigerCub-Golden{background-image:url(spritesmith5.png);background-position:-1634px 0;width:105px;height:105px}.Mount_Body_TigerCub-Red{background-image:url(spritesmith5.png);background-position:-1634px -106px;width:105px;height:105px}.Mount_Body_TigerCub-Shade{background-image:url(spritesmith5.png);background-position:-1634px -212px;width:105px;height:105px}.Mount_Body_TigerCub-Skeleton{background-image:url(spritesmith5.png);background-position:-1634px -318px;width:105px;height:105px}.Mount_Body_TigerCub-White{background-image:url(spritesmith5.png);background-position:-1634px -424px;width:105px;height:105px}.Mount_Body_TigerCub-Zombie{background-image:url(spritesmith5.png);background-position:-1634px -530px;width:105px;height:105px}.Mount_Body_Turkey-Base{background-image:url(spritesmith5.png);background-position:-1634px -636px;width:105px;height:105px}.Mount_Body_Wolf-Base{background-image:url(spritesmith5.png);background-position:-136px 0;width:135px;height:135px}.Mount_Body_Wolf-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-408px -272px;width:135px;height:135px}.Mount_Body_Wolf-CottonCandyPink{background-image:url(spritesmith5.png);background-position:0 -408px;width:135px;height:135px}.Mount_Body_Wolf-Desert{background-image:url(spritesmith5.png);background-position:-136px -408px;width:135px;height:135px}.Mount_Body_Wolf-Golden{background-image:url(spritesmith5.png);background-position:-272px -408px;width:135px;height:135px}.Mount_Body_Wolf-Red{background-image:url(spritesmith5.png);background-position:-408px -408px;width:135px;height:135px}.Mount_Body_Wolf-Shade{background-image:url(spritesmith5.png);background-position:-544px 0;width:135px;height:135px}.Mount_Body_Wolf-Skeleton{background-image:url(spritesmith5.png);background-position:-544px -136px;width:135px;height:135px}.Mount_Body_Wolf-White{background-image:url(spritesmith5.png);background-position:-544px -272px;width:135px;height:135px}.Mount_Body_Wolf-Zombie{background-image:url(spritesmith5.png);background-position:-544px -408px;width:135px;height:135px}.Mount_Head_BearCub-Base{background-image:url(spritesmith5.png);background-position:-212px -1622px;width:105px;height:105px}.Mount_Head_BearCub-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-318px -1622px;width:105px;height:105px}.Mount_Head_BearCub-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-424px -1622px;width:105px;height:105px}.Mount_Head_BearCub-Desert{background-image:url(spritesmith5.png);background-position:-530px -1622px;width:105px;height:105px}.Mount_Head_BearCub-Golden{background-image:url(spritesmith5.png);background-position:-636px -1622px;width:105px;height:105px}.Mount_Head_BearCub-Polar{background-image:url(spritesmith5.png);background-position:-742px -1622px;width:105px;height:105px}.Mount_Head_BearCub-Red{background-image:url(spritesmith5.png);background-position:-848px -1622px;width:105px;height:105px}.Mount_Head_BearCub-Shade{background-image:url(spritesmith5.png);background-position:-954px -1622px;width:105px;height:105px}.Mount_Head_BearCub-Skeleton{background-image:url(spritesmith5.png);background-position:-1060px -1622px;width:105px;height:105px}.Mount_Head_BearCub-White{background-image:url(spritesmith5.png);background-position:-1166px -1622px;width:105px;height:105px}.Mount_Head_BearCub-Zombie{background-image:url(spritesmith5.png);background-position:-1272px -1622px;width:105px;height:105px}.Mount_Head_Bunny-Base{background-image:url(spritesmith5.png);background-position:-1378px -1622px;width:105px;height:105px}.Mount_Head_Bunny-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1484px -1622px;width:105px;height:105px}.Mount_Head_Bunny-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1590px -1622px;width:105px;height:105px}.Mount_Head_Bunny-Desert{background-image:url(spritesmith5.png);background-position:-1740px 0;width:105px;height:105px}.Mount_Head_Bunny-Golden{background-image:url(spritesmith5.png);background-position:-1740px -106px;width:105px;height:105px}.Mount_Head_Bunny-Red{background-image:url(spritesmith5.png);background-position:-1740px -212px;width:105px;height:105px}.Mount_Head_Bunny-Shade{background-image:url(spritesmith5.png);background-position:-1740px -318px;width:105px;height:105px}.Mount_Head_Bunny-Skeleton{background-image:url(spritesmith5.png);background-position:-1740px -424px;width:105px;height:105px}.Mount_Head_Bunny-White{background-image:url(spritesmith5.png);background-position:-1740px -530px;width:105px;height:105px}.Mount_Head_Bunny-Zombie{background-image:url(spritesmith5.png);background-position:-1740px -636px;width:105px;height:105px}.Mount_Head_Cactus-Base{background-image:url(spritesmith5.png);background-position:-1740px -742px;width:105px;height:105px}.Mount_Head_Cactus-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1740px -848px;width:105px;height:105px}.Mount_Head_Cactus-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1740px -954px;width:105px;height:105px}.Mount_Head_Cactus-Desert{background-image:url(spritesmith5.png);background-position:-1740px -1060px;width:105px;height:105px}.Mount_Head_Cactus-Golden{background-image:url(spritesmith5.png);background-position:-1740px -1166px;width:105px;height:105px}.Mount_Head_Cactus-Red{background-image:url(spritesmith5.png);background-position:-1740px -1272px;width:105px;height:105px}.Mount_Head_Cactus-Shade{background-image:url(spritesmith5.png);background-position:-1740px -1378px;width:105px;height:105px}.Mount_Head_Cactus-Skeleton{background-image:url(spritesmith5.png);background-position:-1740px -1484px;width:105px;height:105px}.Mount_Head_Cactus-White{background-image:url(spritesmith5.png);background-position:-1740px -1590px;width:105px;height:105px}.Mount_Head_Cactus-Zombie{background-image:url(spritesmith5.png);background-position:0 -1728px;width:105px;height:105px}.Mount_Head_Deer-Base{background-image:url(spritesmith5.png);background-position:-106px -1728px;width:105px;height:105px}.Mount_Head_Deer-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-212px -1728px;width:105px;height:105px}.Mount_Head_Deer-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-318px -1728px;width:105px;height:105px}.Mount_Head_Deer-Desert{background-image:url(spritesmith5.png);background-position:-424px -1728px;width:105px;height:105px}.Mount_Head_Deer-Golden{background-image:url(spritesmith5.png);background-position:-530px -1728px;width:105px;height:105px}.Mount_Head_Deer-Red{background-image:url(spritesmith5.png);background-position:-636px -1728px;width:105px;height:105px}.Mount_Head_Deer-Shade{background-image:url(spritesmith5.png);background-position:-742px -1728px;width:105px;height:105px}.Mount_Head_Deer-Skeleton{background-image:url(spritesmith5.png);background-position:-848px -1728px;width:105px;height:105px}.Mount_Head_Deer-White{background-image:url(spritesmith5.png);background-position:-954px -1728px;width:105px;height:105px}.Mount_Head_Deer-Zombie{background-image:url(spritesmith5.png);background-position:-1060px -1728px;width:105px;height:105px}.Mount_Head_Dragon-Base{background-image:url(spritesmith5.png);background-position:-1166px -1728px;width:105px;height:105px}.Mount_Head_Dragon-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1272px -1728px;width:105px;height:105px}.Mount_Head_Dragon-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1378px -1728px;width:105px;height:105px}.Mount_Head_Dragon-Desert{background-image:url(spritesmith5.png);background-position:-1484px -1728px;width:105px;height:105px}.Mount_Head_Dragon-Golden{background-image:url(spritesmith5.png);background-position:-1590px -1728px;width:105px;height:105px}.Mount_Head_Dragon-Red{background-image:url(spritesmith5.png);background-position:-1696px -1728px;width:105px;height:105px}.Mount_Head_Dragon-Shade{background-image:url(spritesmith5.png);background-position:-1846px 0;width:105px;height:105px}.Mount_Head_Dragon-Skeleton{background-image:url(spritesmith5.png);background-position:-1846px -106px;width:105px;height:105px}.Mount_Head_Dragon-White{background-image:url(spritesmith5.png);background-position:-1846px -212px;width:105px;height:105px}.Mount_Head_Dragon-Zombie{background-image:url(spritesmith5.png);background-position:-1846px -318px;width:105px;height:105px}.Mount_Head_Egg-Base{background-image:url(spritesmith5.png);background-position:-1846px -424px;width:105px;height:105px}.Mount_Head_Egg-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1846px -530px;width:105px;height:105px}.Mount_Head_Egg-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1846px -636px;width:105px;height:105px}.Mount_Head_Egg-Desert{background-image:url(spritesmith5.png);background-position:-1846px -742px;width:105px;height:105px}.Mount_Head_Egg-Golden{background-image:url(spritesmith5.png);background-position:-1846px -848px;width:105px;height:105px}.Mount_Head_Egg-Red{background-image:url(spritesmith5.png);background-position:-1846px -954px;width:105px;height:105px}.Mount_Head_Egg-Shade{background-image:url(spritesmith5.png);background-position:-1846px -1060px;width:105px;height:105px}.Mount_Head_Egg-Skeleton{background-image:url(spritesmith5.png);background-position:-1846px -1166px;width:105px;height:105px}.Mount_Head_Egg-White{background-image:url(spritesmith5.png);background-position:-1846px -1272px;width:105px;height:105px}.Mount_Head_Egg-Zombie{background-image:url(spritesmith5.png);background-position:-1846px -1378px;width:105px;height:105px}.Mount_Head_FlyingPig-Base{background-image:url(spritesmith5.png);background-position:-1846px -1484px;width:105px;height:105px}.Mount_Head_FlyingPig-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1846px -1590px;width:105px;height:105px}.Mount_Head_FlyingPig-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1846px -1696px;width:105px;height:105px}.Mount_Head_FlyingPig-Desert{background-image:url(spritesmith5.png);background-position:0 -1834px;width:105px;height:105px}.Mount_Head_FlyingPig-Golden{background-image:url(spritesmith5.png);background-position:-106px -1834px;width:105px;height:105px}.Mount_Head_FlyingPig-Red{background-image:url(spritesmith5.png);background-position:-212px -1834px;width:105px;height:105px}.Mount_Head_FlyingPig-Shade{background-image:url(spritesmith5.png);background-position:-318px -1834px;width:105px;height:105px}.Mount_Head_FlyingPig-Skeleton{background-image:url(spritesmith5.png);background-position:-424px -1834px;width:105px;height:105px}.Mount_Head_FlyingPig-White{background-image:url(spritesmith5.png);background-position:-530px -1834px;width:105px;height:105px}.Mount_Head_FlyingPig-Zombie{background-image:url(spritesmith5.png);background-position:-636px -1834px;width:105px;height:105px}.Mount_Head_Fox-Base{background-image:url(spritesmith5.png);background-position:-742px -1834px;width:105px;height:105px}.Mount_Head_Fox-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-848px -1834px;width:105px;height:105px}.Mount_Head_Fox-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-954px -1834px;width:105px;height:105px}.Mount_Head_Fox-Desert{background-image:url(spritesmith5.png);background-position:-1060px -1834px;width:105px;height:105px}.Mount_Head_Fox-Golden{background-image:url(spritesmith5.png);background-position:-1166px -1834px;width:105px;height:105px}.Mount_Head_Fox-Red{background-image:url(spritesmith5.png);background-position:-1272px -1834px;width:105px;height:105px}.Mount_Head_Fox-Shade{background-image:url(spritesmith5.png);background-position:-1378px -1834px;width:105px;height:105px}.Mount_Head_Fox-Skeleton{background-image:url(spritesmith5.png);background-position:-1484px -1834px;width:105px;height:105px}.Mount_Head_Fox-White{background-image:url(spritesmith5.png);background-position:-1590px -1834px;width:105px;height:105px}.Mount_Head_Fox-Zombie{background-image:url(spritesmith5.png);background-position:-1696px -1834px;width:105px;height:105px}.Mount_Head_Gryphon-Base{background-image:url(spritesmith5.png);background-position:-1802px -1834px;width:105px;height:105px}.Mount_Head_Gryphon-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1952px 0;width:105px;height:105px}.Mount_Head_Gryphon-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1952px -106px;width:105px;height:105px}.Mount_Head_Gryphon-Desert{background-image:url(spritesmith5.png);background-position:-1952px -212px;width:105px;height:105px}.Mount_Head_Gryphon-Golden{background-image:url(spritesmith5.png);background-position:-1952px -318px;width:105px;height:105px}.Mount_Head_Gryphon-Red{background-image:url(spritesmith5.png);background-position:-1952px -424px;width:105px;height:105px}.Mount_Head_Gryphon-Shade{background-image:url(spritesmith5.png);background-position:-1952px -530px;width:105px;height:105px}.Mount_Head_Gryphon-Skeleton{background-image:url(spritesmith5.png);background-position:-1952px -636px;width:105px;height:105px}.Mount_Head_Gryphon-White{background-image:url(spritesmith5.png);background-position:-1952px -742px;width:105px;height:105px}.Mount_Head_Gryphon-Zombie{background-image:url(spritesmith5.png);background-position:-1952px -848px;width:105px;height:105px}.Mount_Head_Hedgehog-Base{background-image:url(spritesmith5.png);background-position:-1952px -954px;width:105px;height:105px}.Mount_Head_Hedgehog-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1952px -1060px;width:105px;height:105px}.Mount_Head_Hedgehog-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1952px -1166px;width:105px;height:105px}.Mount_Head_Hedgehog-Desert{background-image:url(spritesmith5.png);background-position:-1952px -1272px;width:105px;height:105px}.Mount_Head_Hedgehog-Golden{background-image:url(spritesmith5.png);background-position:-1952px -1378px;width:105px;height:105px}.Mount_Head_Hedgehog-Red{background-image:url(spritesmith5.png);background-position:-1952px -1484px;width:105px;height:105px}.Mount_Head_Hedgehog-Shade{background-image:url(spritesmith5.png);background-position:-1952px -1590px;width:105px;height:105px}.Mount_Head_Hedgehog-Skeleton{background-image:url(spritesmith5.png);background-position:-1952px -1696px;width:105px;height:105px}.Mount_Head_Hedgehog-White{background-image:url(spritesmith5.png);background-position:-1952px -1802px;width:105px;height:105px}.Mount_Head_Hedgehog-Zombie{background-image:url(spritesmith5.png);background-position:0 -1940px;width:105px;height:105px}.Mount_Head_LionCub-Base{background-image:url(spritesmith5.png);background-position:-106px -1940px;width:105px;height:105px}.Mount_Head_LionCub-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-212px -1940px;width:105px;height:105px}.Mount_Head_LionCub-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-318px -1940px;width:105px;height:105px}.Mount_Head_LionCub-Desert{background-image:url(spritesmith5.png);background-position:-424px -1940px;width:105px;height:105px}.Mount_Head_LionCub-Ethereal{background-image:url(spritesmith5.png);background-position:-530px -1940px;width:105px;height:105px}.Mount_Head_LionCub-Golden{background-image:url(spritesmith5.png);background-position:-636px -1940px;width:105px;height:105px}.Mount_Head_LionCub-Red{background-image:url(spritesmith5.png);background-position:-742px -1940px;width:105px;height:105px}.Mount_Head_LionCub-Shade{background-image:url(spritesmith5.png);background-position:-848px -1940px;width:105px;height:105px}.Mount_Head_LionCub-Skeleton{background-image:url(spritesmith5.png);background-position:-212px -544px;width:105px;height:110px}.Mount_Head_LionCub-White{background-image:url(spritesmith5.png);background-position:-1060px -1940px;width:105px;height:105px}.Mount_Head_LionCub-Zombie{background-image:url(spritesmith5.png);background-position:-1166px -1940px;width:105px;height:105px}.Mount_Head_Mammoth-Base{background-image:url(spritesmith5.png);background-position:-106px -544px;width:105px;height:123px}.Mount_Head_MantisShrimp-Base{background-image:url(spritesmith5.png);background-position:-1378px -1940px;width:108px;height:105px}.Mount_Head_Octopus-Base{background-image:url(spritesmith5.png);background-position:-1487px -1940px;width:105px;height:105px}.Mount_Head_Octopus-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-1593px -1940px;width:105px;height:105px}.Mount_Head_Octopus-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-1699px -1940px;width:105px;height:105px}.Mount_Head_Octopus-Desert{background-image:url(spritesmith5.png);background-position:-1805px -1940px;width:105px;height:105px}.Mount_Head_Octopus-Golden{background-image:url(spritesmith5.png);background-position:-1911px -1940px;width:105px;height:105px}.Mount_Head_Octopus-Red{background-image:url(spritesmith5.png);background-position:-2058px 0;width:105px;height:105px}.Mount_Head_Octopus-Shade{background-image:url(spritesmith5.png);background-position:-2058px -106px;width:105px;height:105px}.Mount_Head_Octopus-Skeleton{background-image:url(spritesmith5.png);background-position:-2058px -212px;width:105px;height:105px}.Mount_Head_Octopus-White{background-image:url(spritesmith5.png);background-position:-2058px -318px;width:105px;height:105px}.Mount_Head_Octopus-Zombie{background-image:url(spritesmith5.png);background-position:-2058px -424px;width:105px;height:105px}.Mount_Head_Owl-Base{background-image:url(spritesmith5.png);background-position:-2058px -530px;width:105px;height:105px}.Mount_Head_Owl-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-2058px -636px;width:105px;height:105px}.Mount_Head_Owl-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-2058px -742px;width:105px;height:105px}.Mount_Head_Owl-Desert{background-image:url(spritesmith5.png);background-position:-2058px -848px;width:105px;height:105px}.Mount_Head_Owl-Golden{background-image:url(spritesmith5.png);background-position:-2058px -954px;width:105px;height:105px}.Mount_Head_Owl-Red{background-image:url(spritesmith5.png);background-position:-2058px -1060px;width:105px;height:105px}.Mount_Head_Owl-Shade{background-image:url(spritesmith5.png);background-position:-2058px -1166px;width:105px;height:105px}.Mount_Head_Owl-Skeleton{background-image:url(spritesmith5.png);background-position:-2058px -1272px;width:105px;height:105px}.Mount_Head_Owl-White{background-image:url(spritesmith5.png);background-position:-2058px -1378px;width:105px;height:105px}.Mount_Head_Owl-Zombie{background-image:url(spritesmith5.png);background-position:-2058px -1484px;width:105px;height:105px}.Mount_Head_PandaCub-Base{background-image:url(spritesmith5.png);background-position:-2058px -1590px;width:105px;height:105px}.Mount_Head_PandaCub-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-2058px -1696px;width:105px;height:105px}.Mount_Head_PandaCub-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-2058px -1802px;width:105px;height:105px}.Mount_Head_PandaCub-Desert{background-image:url(spritesmith5.png);background-position:-2058px -1908px;width:105px;height:105px}.Mount_Head_PandaCub-Golden{background-image:url(spritesmith5.png);background-position:0 -2046px;width:105px;height:105px}.Mount_Head_PandaCub-Red{background-image:url(spritesmith5.png);background-position:-106px -2046px;width:105px;height:105px}.Mount_Head_PandaCub-Shade{background-image:url(spritesmith5.png);background-position:-212px -2046px;width:105px;height:105px}.Mount_Head_PandaCub-Skeleton{background-image:url(spritesmith5.png);background-position:-318px -2046px;width:105px;height:105px}.Mount_Head_PandaCub-White{background-image:url(spritesmith5.png);background-position:-424px -2046px;width:105px;height:105px}.Mount_Head_PandaCub-Zombie{background-image:url(spritesmith5.png);background-position:-530px -2046px;width:105px;height:105px}.Mount_Head_Parrot-Base{background-image:url(spritesmith5.png);background-position:-636px -2046px;width:105px;height:105px}.Mount_Head_Parrot-CottonCandyBlue{background-image:url(spritesmith5.png);background-position:-742px -2046px;width:105px;height:105px}.Mount_Head_Parrot-CottonCandyPink{background-image:url(spritesmith5.png);background-position:-848px -2046px;width:105px;height:105px}.Mount_Head_Parrot-Desert{background-image:url(spritesmith5.png);background-position:-954px -2046px;width:105px;height:105px}.Mount_Head_Parrot-Golden{background-image:url(spritesmith5.png);background-position:-1060px -2046px;width:105px;height:105px}.Mount_Head_Parrot-Red{background-image:url(spritesmith5.png);background-position:-1166px -2046px;width:105px;height:105px}.Mount_Head_Parrot-Shade{background-image:url(spritesmith5.png);background-position:-1272px -2046px;width:105px;height:105px}.Mount_Head_Parrot-Skeleton{background-image:url(spritesmith5.png);background-position:-1378px -2046px;width:105px;height:105px}.Mount_Head_Parrot-White{background-image:url(spritesmith5.png);background-position:-1484px -2046px;width:105px;height:105px}.Mount_Head_Parrot-Zombie{background-image:url(spritesmith5.png);background-position:-1590px -2046px;width:105px;height:105px}.Mount_Head_Penguin-Base{background-image:url(spritesmith5.png);background-position:-1696px -2046px;width:105px;height:105px}.Mount_Head_Penguin-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-998px -742px;width:105px;height:105px}.Mount_Head_Penguin-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-954px -1074px;width:105px;height:105px}.Mount_Head_Penguin-Desert{background-image:url(spritesmith6.png);background-position:-892px -106px;width:105px;height:105px}.Mount_Head_Penguin-Golden{background-image:url(spritesmith6.png);background-position:-998px -848px;width:105px;height:105px}.Mount_Head_Penguin-Red{background-image:url(spritesmith6.png);background-position:0 -968px;width:105px;height:105px}.Mount_Head_Penguin-Shade{background-image:url(spritesmith6.png);background-position:-106px -968px;width:105px;height:105px}.Mount_Head_Penguin-Skeleton{background-image:url(spritesmith6.png);background-position:-212px -968px;width:105px;height:105px}.Mount_Head_Penguin-White{background-image:url(spritesmith6.png);background-position:-318px -968px;width:105px;height:105px}.Mount_Head_Penguin-Zombie{background-image:url(spritesmith6.png);background-position:-424px -968px;width:105px;height:105px}.Mount_Head_Rat-Base{background-image:url(spritesmith6.png);background-position:-530px -968px;width:105px;height:105px}.Mount_Head_Rat-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-636px -968px;width:105px;height:105px}.Mount_Head_Rat-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-742px -968px;width:105px;height:105px}.Mount_Head_Rat-Desert{background-image:url(spritesmith6.png);background-position:-1104px -954px;width:105px;height:105px}.Mount_Head_Rat-Golden{background-image:url(spritesmith6.png);background-position:0 -1074px;width:105px;height:105px}.Mount_Head_Rat-Red{background-image:url(spritesmith6.png);background-position:-106px -1074px;width:105px;height:105px}.Mount_Head_Rat-Shade{background-image:url(spritesmith6.png);background-position:-212px -1074px;width:105px;height:105px}.Mount_Head_Rat-Skeleton{background-image:url(spritesmith6.png);background-position:-318px -1074px;width:105px;height:105px}.Mount_Head_Rat-White{background-image:url(spritesmith6.png);background-position:-424px -1074px;width:105px;height:105px}.Mount_Head_Rat-Zombie{background-image:url(spritesmith6.png);background-position:-530px -1074px;width:105px;height:105px}.Mount_Head_Rock-Base{background-image:url(spritesmith6.png);background-position:-636px -1074px;width:105px;height:105px}.Mount_Head_Rock-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-742px -1074px;width:105px;height:105px}.Mount_Head_Rock-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-848px -1074px;width:105px;height:105px}.Mount_Head_Rock-Desert{background-image:url(spritesmith6.png);background-position:-106px -544px;width:105px;height:105px}.Mount_Head_Rock-Golden{background-image:url(spritesmith6.png);background-position:-212px -544px;width:105px;height:105px}.Mount_Head_Rock-Red{background-image:url(spritesmith6.png);background-position:-318px -544px;width:105px;height:105px}.Mount_Head_Rock-Shade{background-image:url(spritesmith6.png);background-position:-424px -544px;width:105px;height:105px}.Mount_Head_Rock-Skeleton{background-image:url(spritesmith6.png);background-position:-530px -544px;width:105px;height:105px}.Mount_Head_Rock-White{background-image:url(spritesmith6.png);background-position:-680px 0;width:105px;height:105px}.Mount_Head_Rock-Zombie{background-image:url(spritesmith6.png);background-position:-680px -106px;width:105px;height:105px}.Mount_Head_Rooster-Base{background-image:url(spritesmith6.png);background-position:-680px -212px;width:105px;height:105px}.Mount_Head_Rooster-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-680px -318px;width:105px;height:105px}.Mount_Head_Rooster-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-680px -424px;width:105px;height:105px}.Mount_Head_Rooster-Desert{background-image:url(spritesmith6.png);background-position:-680px -530px;width:105px;height:105px}.Mount_Head_Rooster-Golden{background-image:url(spritesmith6.png);background-position:0 -650px;width:105px;height:105px}.Mount_Head_Rooster-Red{background-image:url(spritesmith6.png);background-position:-106px -650px;width:105px;height:105px}.Mount_Head_Rooster-Shade{background-image:url(spritesmith6.png);background-position:-212px -650px;width:105px;height:105px}.Mount_Head_Rooster-Skeleton{background-image:url(spritesmith6.png);background-position:-318px -650px;width:105px;height:105px}.Mount_Head_Rooster-White{background-image:url(spritesmith6.png);background-position:-424px -650px;width:105px;height:105px}.Mount_Head_Rooster-Zombie{background-image:url(spritesmith6.png);background-position:-530px -650px;width:105px;height:105px}.Mount_Head_Seahorse-Base{background-image:url(spritesmith6.png);background-position:-636px -650px;width:105px;height:105px}.Mount_Head_Seahorse-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-786px 0;width:105px;height:105px}.Mount_Head_Seahorse-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-786px -106px;width:105px;height:105px}.Mount_Head_Seahorse-Desert{background-image:url(spritesmith6.png);background-position:-786px -212px;width:105px;height:105px}.Mount_Head_Seahorse-Golden{background-image:url(spritesmith6.png);background-position:-786px -318px;width:105px;height:105px}.Mount_Head_Seahorse-Red{background-image:url(spritesmith6.png);background-position:-786px -424px;width:105px;height:105px}.Mount_Head_Seahorse-Shade{background-image:url(spritesmith6.png);background-position:-786px -530px;width:105px;height:105px}.Mount_Head_Seahorse-Skeleton{background-image:url(spritesmith6.png);background-position:-786px -636px;width:105px;height:105px}.Mount_Head_Seahorse-White{background-image:url(spritesmith6.png);background-position:0 -756px;width:105px;height:105px}.Mount_Head_Seahorse-Zombie{background-image:url(spritesmith6.png);background-position:-106px -756px;width:105px;height:105px}.Mount_Head_Sheep-Base{background-image:url(spritesmith6.png);background-position:-212px -756px;width:105px;height:105px}.Mount_Head_Sheep-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-318px -756px;width:105px;height:105px}.Mount_Head_Sheep-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-424px -756px;width:105px;height:105px}.Mount_Head_Sheep-Desert{background-image:url(spritesmith6.png);background-position:-530px -756px;width:105px;height:105px}.Mount_Head_Sheep-Golden{background-image:url(spritesmith6.png);background-position:-636px -756px;width:105px;height:105px}.Mount_Head_Sheep-Red{background-image:url(spritesmith6.png);background-position:-742px -756px;width:105px;height:105px}.Mount_Head_Sheep-Shade{background-image:url(spritesmith6.png);background-position:-892px 0;width:105px;height:105px}.Mount_Head_Sheep-Skeleton{background-image:url(spritesmith6.png);background-position:0 -544px;width:105px;height:105px}.Mount_Head_Sheep-White{background-image:url(spritesmith6.png);background-position:-892px -212px;width:105px;height:105px}.Mount_Head_Sheep-Zombie{background-image:url(spritesmith6.png);background-position:-892px -318px;width:105px;height:105px}.Mount_Head_Slime-Base{background-image:url(spritesmith6.png);background-position:-892px -424px;width:105px;height:105px}.Mount_Head_Slime-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-892px -530px;width:105px;height:105px}.Mount_Head_Slime-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-892px -636px;width:105px;height:105px}.Mount_Head_Slime-Desert{background-image:url(spritesmith6.png);background-position:-892px -742px;width:105px;height:105px}.Mount_Head_Slime-Golden{background-image:url(spritesmith6.png);background-position:0 -862px;width:105px;height:105px}.Mount_Head_Slime-Red{background-image:url(spritesmith6.png);background-position:-106px -862px;width:105px;height:105px}.Mount_Head_Slime-Shade{background-image:url(spritesmith6.png);background-position:-212px -862px;width:105px;height:105px}.Mount_Head_Slime-Skeleton{background-image:url(spritesmith6.png);background-position:-318px -862px;width:105px;height:105px}.Mount_Head_Slime-White{background-image:url(spritesmith6.png);background-position:-424px -862px;width:105px;height:105px}.Mount_Head_Slime-Zombie{background-image:url(spritesmith6.png);background-position:-530px -862px;width:105px;height:105px}.Mount_Head_Spider-Base{background-image:url(spritesmith6.png);background-position:-636px -862px;width:105px;height:105px}.Mount_Head_Spider-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-742px -862px;width:105px;height:105px}.Mount_Head_Spider-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-848px -862px;width:105px;height:105px}.Mount_Head_Spider-Desert{background-image:url(spritesmith6.png);background-position:-998px 0;width:105px;height:105px}.Mount_Head_Spider-Golden{background-image:url(spritesmith6.png);background-position:-998px -106px;width:105px;height:105px}.Mount_Head_Spider-Red{background-image:url(spritesmith6.png);background-position:-998px -212px;width:105px;height:105px}.Mount_Head_Spider-Shade{background-image:url(spritesmith6.png);background-position:-998px -318px;width:105px;height:105px}.Mount_Head_Spider-Skeleton{background-image:url(spritesmith6.png);background-position:-998px -424px;width:105px;height:105px}.Mount_Head_Spider-White{background-image:url(spritesmith6.png);background-position:-998px -530px;width:105px;height:105px}.Mount_Head_Spider-Zombie{background-image:url(spritesmith6.png);background-position:-998px -636px;width:105px;height:105px}.Mount_Head_TRex-Base{background-image:url(spritesmith6.png);background-position:-408px -136px;width:135px;height:135px}.Mount_Head_TRex-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:0 -136px;width:135px;height:135px}.Mount_Head_TRex-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-136px -136px;width:135px;height:135px}.Mount_Head_TRex-Desert{background-image:url(spritesmith6.png);background-position:-272px 0;width:135px;height:135px}.Mount_Head_TRex-Golden{background-image:url(spritesmith6.png);background-position:-272px -136px;width:135px;height:135px}.Mount_Head_TRex-Red{background-image:url(spritesmith6.png);background-position:0 -272px;width:135px;height:135px}.Mount_Head_TRex-Shade{background-image:url(spritesmith6.png);background-position:-136px -272px;width:135px;height:135px}.Mount_Head_TRex-Skeleton{background-image:url(spritesmith6.png);background-position:-272px -272px;width:135px;height:135px}.Mount_Head_TRex-White{background-image:url(spritesmith6.png);background-position:-408px 0;width:135px;height:135px}.Mount_Head_TRex-Zombie{background-image:url(spritesmith6.png);background-position:0 0;width:135px;height:135px}.Mount_Head_TigerCub-Base{background-image:url(spritesmith6.png);background-position:-848px -968px;width:105px;height:105px}.Mount_Head_TigerCub-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-954px -968px;width:105px;height:105px}.Mount_Head_TigerCub-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1104px 0;width:105px;height:105px}.Mount_Head_TigerCub-Desert{background-image:url(spritesmith6.png);background-position:-1104px -106px;width:105px;height:105px}.Mount_Head_TigerCub-Golden{background-image:url(spritesmith6.png);background-position:-1104px -212px;width:105px;height:105px}.Mount_Head_TigerCub-Red{background-image:url(spritesmith6.png);background-position:-1104px -318px;width:105px;height:105px}.Mount_Head_TigerCub-Shade{background-image:url(spritesmith6.png);background-position:-1104px -424px;width:105px;height:105px}.Mount_Head_TigerCub-Skeleton{background-image:url(spritesmith6.png);background-position:-1104px -530px;width:105px;height:105px}.Mount_Head_TigerCub-White{background-image:url(spritesmith6.png);background-position:-1104px -636px;width:105px;height:105px}.Mount_Head_TigerCub-Zombie{background-image:url(spritesmith6.png);background-position:-1104px -742px;width:105px;height:105px}.Mount_Head_Turkey-Base{background-image:url(spritesmith6.png);background-position:-1104px -848px;width:105px;height:105px}.Mount_Head_Wolf-Base{background-image:url(spritesmith6.png);background-position:-408px -272px;width:135px;height:135px}.Mount_Head_Wolf-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:0 -408px;width:135px;height:135px}.Mount_Head_Wolf-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-136px -408px;width:135px;height:135px}.Mount_Head_Wolf-Desert{background-image:url(spritesmith6.png);background-position:-272px -408px;width:135px;height:135px}.Mount_Head_Wolf-Golden{background-image:url(spritesmith6.png);background-position:-408px -408px;width:135px;height:135px}.Mount_Head_Wolf-Red{background-image:url(spritesmith6.png);background-position:-544px 0;width:135px;height:135px}.Mount_Head_Wolf-Shade{background-image:url(spritesmith6.png);background-position:-544px -136px;width:135px;height:135px}.Mount_Head_Wolf-Skeleton{background-image:url(spritesmith6.png);background-position:-544px -272px;width:135px;height:135px}.Mount_Head_Wolf-White{background-image:url(spritesmith6.png);background-position:-544px -408px;width:135px;height:135px}.Mount_Head_Wolf-Zombie{background-image:url(spritesmith6.png);background-position:-136px 0;width:135px;height:135px}.Pet-BearCub-Base{background-image:url(spritesmith6.png);background-position:-1060px -1074px;width:81px;height:99px}.Pet-BearCub-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1210px 0;width:81px;height:99px}.Pet-BearCub-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1210px -100px;width:81px;height:99px}.Pet-BearCub-Desert{background-image:url(spritesmith6.png);background-position:-1210px -200px;width:81px;height:99px}.Pet-BearCub-Golden{background-image:url(spritesmith6.png);background-position:-1210px -300px;width:81px;height:99px}.Pet-BearCub-Polar{background-image:url(spritesmith6.png);background-position:-1210px -400px;width:81px;height:99px}.Pet-BearCub-Red{background-image:url(spritesmith6.png);background-position:-1210px -500px;width:81px;height:99px}.Pet-BearCub-Shade{background-image:url(spritesmith6.png);background-position:-1210px -600px;width:81px;height:99px}.Pet-BearCub-Skeleton{background-image:url(spritesmith6.png);background-position:-1210px -700px;width:81px;height:99px}.Pet-BearCub-White{background-image:url(spritesmith6.png);background-position:-1210px -800px;width:81px;height:99px}.Pet-BearCub-Zombie{background-image:url(spritesmith6.png);background-position:-1210px -900px;width:81px;height:99px}.Pet-Bunny-Base{background-image:url(spritesmith6.png);background-position:-1210px -1000px;width:81px;height:99px}.Pet-Bunny-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:0 -1180px;width:81px;height:99px}.Pet-Bunny-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-82px -1180px;width:81px;height:99px}.Pet-Bunny-Desert{background-image:url(spritesmith6.png);background-position:-164px -1180px;width:81px;height:99px}.Pet-Bunny-Golden{background-image:url(spritesmith6.png);background-position:-246px -1180px;width:81px;height:99px}.Pet-Bunny-Red{background-image:url(spritesmith6.png);background-position:-328px -1180px;width:81px;height:99px}.Pet-Bunny-Shade{background-image:url(spritesmith6.png);background-position:-410px -1180px;width:81px;height:99px}.Pet-Bunny-Skeleton{background-image:url(spritesmith6.png);background-position:-492px -1180px;width:81px;height:99px}.Pet-Bunny-White{background-image:url(spritesmith6.png);background-position:-574px -1180px;width:81px;height:99px}.Pet-Bunny-Zombie{background-image:url(spritesmith6.png);background-position:-656px -1180px;width:81px;height:99px}.Pet-Cactus-Base{background-image:url(spritesmith6.png);background-position:-738px -1180px;width:81px;height:99px}.Pet-Cactus-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-820px -1180px;width:81px;height:99px}.Pet-Cactus-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-902px -1180px;width:81px;height:99px}.Pet-Cactus-Desert{background-image:url(spritesmith6.png);background-position:-984px -1180px;width:81px;height:99px}.Pet-Cactus-Golden{background-image:url(spritesmith6.png);background-position:-1066px -1180px;width:81px;height:99px}.Pet-Cactus-Red{background-image:url(spritesmith6.png);background-position:-1148px -1180px;width:81px;height:99px}.Pet-Cactus-Shade{background-image:url(spritesmith6.png);background-position:-1292px 0;width:81px;height:99px}.Pet-Cactus-Skeleton{background-image:url(spritesmith6.png);background-position:-1292px -100px;width:81px;height:99px}.Pet-Cactus-White{background-image:url(spritesmith6.png);background-position:-1292px -200px;width:81px;height:99px}.Pet-Cactus-Zombie{background-image:url(spritesmith6.png);background-position:-1292px -300px;width:81px;height:99px}.Pet-Deer-Base{background-image:url(spritesmith6.png);background-position:-1292px -400px;width:81px;height:99px}.Pet-Deer-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1292px -500px;width:81px;height:99px}.Pet-Deer-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1292px -600px;width:81px;height:99px}.Pet-Deer-Desert{background-image:url(spritesmith6.png);background-position:-1292px -700px;width:81px;height:99px}.Pet-Deer-Golden{background-image:url(spritesmith6.png);background-position:-1292px -800px;width:81px;height:99px}.Pet-Deer-Red{background-image:url(spritesmith6.png);background-position:-1292px -900px;width:81px;height:99px}.Pet-Deer-Shade{background-image:url(spritesmith6.png);background-position:-1292px -1000px;width:81px;height:99px}.Pet-Deer-Skeleton{background-image:url(spritesmith6.png);background-position:-1292px -1100px;width:81px;height:99px}.Pet-Deer-White{background-image:url(spritesmith6.png);background-position:-1374px 0;width:81px;height:99px}.Pet-Deer-Zombie{background-image:url(spritesmith6.png);background-position:-1374px -100px;width:81px;height:99px}.Pet-Dragon-Base{background-image:url(spritesmith6.png);background-position:-1374px -200px;width:81px;height:99px}.Pet-Dragon-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1374px -300px;width:81px;height:99px}.Pet-Dragon-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1374px -400px;width:81px;height:99px}.Pet-Dragon-Desert{background-image:url(spritesmith6.png);background-position:-1374px -500px;width:81px;height:99px}.Pet-Dragon-Golden{background-image:url(spritesmith6.png);background-position:-1374px -600px;width:81px;height:99px}.Pet-Dragon-Hydra{background-image:url(spritesmith6.png);background-position:-1374px -700px;width:81px;height:99px}.Pet-Dragon-Red{background-image:url(spritesmith6.png);background-position:-1374px -800px;width:81px;height:99px}.Pet-Dragon-Shade{background-image:url(spritesmith6.png);background-position:-1374px -900px;width:81px;height:99px}.Pet-Dragon-Skeleton{background-image:url(spritesmith6.png);background-position:-1374px -1000px;width:81px;height:99px}.Pet-Dragon-White{background-image:url(spritesmith6.png);background-position:-1374px -1100px;width:81px;height:99px}.Pet-Dragon-Zombie{background-image:url(spritesmith6.png);background-position:0 -1280px;width:81px;height:99px}.Pet-Egg-Base{background-image:url(spritesmith6.png);background-position:-82px -1280px;width:81px;height:99px}.Pet-Egg-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-164px -1280px;width:81px;height:99px}.Pet-Egg-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-246px -1280px;width:81px;height:99px}.Pet-Egg-Desert{background-image:url(spritesmith6.png);background-position:-328px -1280px;width:81px;height:99px}.Pet-Egg-Golden{background-image:url(spritesmith6.png);background-position:-410px -1280px;width:81px;height:99px}.Pet-Egg-Red{background-image:url(spritesmith6.png);background-position:-492px -1280px;width:81px;height:99px}.Pet-Egg-Shade{background-image:url(spritesmith6.png);background-position:-574px -1280px;width:81px;height:99px}.Pet-Egg-Skeleton{background-image:url(spritesmith6.png);background-position:-656px -1280px;width:81px;height:99px}.Pet-Egg-White{background-image:url(spritesmith6.png);background-position:-738px -1280px;width:81px;height:99px}.Pet-Egg-Zombie{background-image:url(spritesmith6.png);background-position:-820px -1280px;width:81px;height:99px}.Pet-FlyingPig-Base{background-image:url(spritesmith6.png);background-position:-902px -1280px;width:81px;height:99px}.Pet-FlyingPig-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-984px -1280px;width:81px;height:99px}.Pet-FlyingPig-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1066px -1280px;width:81px;height:99px}.Pet-FlyingPig-Desert{background-image:url(spritesmith6.png);background-position:-1148px -1280px;width:81px;height:99px}.Pet-FlyingPig-Golden{background-image:url(spritesmith6.png);background-position:-1230px -1280px;width:81px;height:99px}.Pet-FlyingPig-Red{background-image:url(spritesmith6.png);background-position:-1312px -1280px;width:81px;height:99px}.Pet-FlyingPig-Shade{background-image:url(spritesmith6.png);background-position:-1456px 0;width:81px;height:99px}.Pet-FlyingPig-Skeleton{background-image:url(spritesmith6.png);background-position:-1456px -100px;width:81px;height:99px}.Pet-FlyingPig-White{background-image:url(spritesmith6.png);background-position:-1456px -200px;width:81px;height:99px}.Pet-FlyingPig-Zombie{background-image:url(spritesmith6.png);background-position:-1456px -300px;width:81px;height:99px}.Pet-Fox-Base{background-image:url(spritesmith6.png);background-position:-1456px -400px;width:81px;height:99px}.Pet-Fox-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1456px -500px;width:81px;height:99px}.Pet-Fox-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1456px -600px;width:81px;height:99px}.Pet-Fox-Desert{background-image:url(spritesmith6.png);background-position:-1456px -700px;width:81px;height:99px}.Pet-Fox-Golden{background-image:url(spritesmith6.png);background-position:-1456px -800px;width:81px;height:99px}.Pet-Fox-Red{background-image:url(spritesmith6.png);background-position:-1456px -900px;width:81px;height:99px}.Pet-Fox-Shade{background-image:url(spritesmith6.png);background-position:-1456px -1000px;width:81px;height:99px}.Pet-Fox-Skeleton{background-image:url(spritesmith6.png);background-position:-1456px -1100px;width:81px;height:99px}.Pet-Fox-White{background-image:url(spritesmith6.png);background-position:-1456px -1200px;width:81px;height:99px}.Pet-Fox-Zombie{background-image:url(spritesmith6.png);background-position:0 -1380px;width:81px;height:99px}.Pet-Gryphon-Base{background-image:url(spritesmith6.png);background-position:-82px -1380px;width:81px;height:99px}.Pet-Gryphon-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-164px -1380px;width:81px;height:99px}.Pet-Gryphon-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-246px -1380px;width:81px;height:99px}.Pet-Gryphon-Desert{background-image:url(spritesmith6.png);background-position:-328px -1380px;width:81px;height:99px}.Pet-Gryphon-Golden{background-image:url(spritesmith6.png);background-position:-410px -1380px;width:81px;height:99px}.Pet-Gryphon-Red{background-image:url(spritesmith6.png);background-position:-492px -1380px;width:81px;height:99px}.Pet-Gryphon-Shade{background-image:url(spritesmith6.png);background-position:-574px -1380px;width:81px;height:99px}.Pet-Gryphon-Skeleton{background-image:url(spritesmith6.png);background-position:-656px -1380px;width:81px;height:99px}.Pet-Gryphon-White{background-image:url(spritesmith6.png);background-position:-738px -1380px;width:81px;height:99px}.Pet-Gryphon-Zombie{background-image:url(spritesmith6.png);background-position:-820px -1380px;width:81px;height:99px}.Pet-Hedgehog-Base{background-image:url(spritesmith6.png);background-position:-902px -1380px;width:81px;height:99px}.Pet-Hedgehog-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-984px -1380px;width:81px;height:99px}.Pet-Hedgehog-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1066px -1380px;width:81px;height:99px}.Pet-Hedgehog-Desert{background-image:url(spritesmith6.png);background-position:-1148px -1380px;width:81px;height:99px}.Pet-Hedgehog-Golden{background-image:url(spritesmith6.png);background-position:-1230px -1380px;width:81px;height:99px}.Pet-Hedgehog-Red{background-image:url(spritesmith6.png);background-position:-1312px -1380px;width:81px;height:99px}.Pet-Hedgehog-Shade{background-image:url(spritesmith6.png);background-position:-1394px -1380px;width:81px;height:99px}.Pet-Hedgehog-Skeleton{background-image:url(spritesmith6.png);background-position:-1538px 0;width:81px;height:99px}.Pet-Hedgehog-White{background-image:url(spritesmith6.png);background-position:-1538px -100px;width:81px;height:99px}.Pet-Hedgehog-Zombie{background-image:url(spritesmith6.png);background-position:-1538px -200px;width:81px;height:99px}.Pet-JackOLantern-Base{background-image:url(spritesmith6.png);background-position:-1538px -300px;width:81px;height:99px}.Pet-LionCub-Base{background-image:url(spritesmith6.png);background-position:-1538px -400px;width:81px;height:99px}.Pet-LionCub-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1538px -500px;width:81px;height:99px}.Pet-LionCub-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1538px -600px;width:81px;height:99px}.Pet-LionCub-Desert{background-image:url(spritesmith6.png);background-position:-1538px -700px;width:81px;height:99px}.Pet-LionCub-Golden{background-image:url(spritesmith6.png);background-position:-1538px -800px;width:81px;height:99px}.Pet-LionCub-Red{background-image:url(spritesmith6.png);background-position:-1538px -900px;width:81px;height:99px}.Pet-LionCub-Shade{background-image:url(spritesmith6.png);background-position:-1538px -1000px;width:81px;height:99px}.Pet-LionCub-Skeleton{background-image:url(spritesmith6.png);background-position:-1538px -1100px;width:81px;height:99px}.Pet-LionCub-White{background-image:url(spritesmith6.png);background-position:-1538px -1200px;width:81px;height:99px}.Pet-LionCub-Zombie{background-image:url(spritesmith6.png);background-position:-1538px -1300px;width:81px;height:99px}.Pet-Mammoth-Base{background-image:url(spritesmith6.png);background-position:0 -1480px;width:81px;height:99px}.Pet-MantisShrimp-Base{background-image:url(spritesmith6.png);background-position:-82px -1480px;width:81px;height:99px}.Pet-Octopus-Base{background-image:url(spritesmith6.png);background-position:-164px -1480px;width:81px;height:99px}.Pet-Octopus-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-246px -1480px;width:81px;height:99px}.Pet-Octopus-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-328px -1480px;width:81px;height:99px}.Pet-Octopus-Desert{background-image:url(spritesmith6.png);background-position:-410px -1480px;width:81px;height:99px}.Pet-Octopus-Golden{background-image:url(spritesmith6.png);background-position:-492px -1480px;width:81px;height:99px}.Pet-Octopus-Red{background-image:url(spritesmith6.png);background-position:-574px -1480px;width:81px;height:99px}.Pet-Octopus-Shade{background-image:url(spritesmith6.png);background-position:-656px -1480px;width:81px;height:99px}.Pet-Octopus-Skeleton{background-image:url(spritesmith6.png);background-position:-738px -1480px;width:81px;height:99px}.Pet-Octopus-White{background-image:url(spritesmith6.png);background-position:-820px -1480px;width:81px;height:99px}.Pet-Octopus-Zombie{background-image:url(spritesmith6.png);background-position:-902px -1480px;width:81px;height:99px}.Pet-Owl-Base{background-image:url(spritesmith6.png);background-position:-984px -1480px;width:81px;height:99px}.Pet-Owl-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1066px -1480px;width:81px;height:99px}.Pet-Owl-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1148px -1480px;width:81px;height:99px}.Pet-Owl-Desert{background-image:url(spritesmith6.png);background-position:-1230px -1480px;width:81px;height:99px}.Pet-Owl-Golden{background-image:url(spritesmith6.png);background-position:-1312px -1480px;width:81px;height:99px}.Pet-Owl-Red{background-image:url(spritesmith6.png);background-position:-1394px -1480px;width:81px;height:99px}.Pet-Owl-Shade{background-image:url(spritesmith6.png);background-position:-1476px -1480px;width:81px;height:99px}.Pet-Owl-Skeleton{background-image:url(spritesmith6.png);background-position:-1620px 0;width:81px;height:99px}.Pet-Owl-White{background-image:url(spritesmith6.png);background-position:-1620px -100px;width:81px;height:99px}.Pet-Owl-Zombie{background-image:url(spritesmith6.png);background-position:-1620px -200px;width:81px;height:99px}.Pet-PandaCub-Base{background-image:url(spritesmith6.png);background-position:-1620px -300px;width:81px;height:99px}.Pet-PandaCub-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1620px -400px;width:81px;height:99px}.Pet-PandaCub-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1620px -500px;width:81px;height:99px}.Pet-PandaCub-Desert{background-image:url(spritesmith6.png);background-position:-1620px -600px;width:81px;height:99px}.Pet-PandaCub-Golden{background-image:url(spritesmith6.png);background-position:-1620px -700px;width:81px;height:99px}.Pet-PandaCub-Red{background-image:url(spritesmith6.png);background-position:-1620px -800px;width:81px;height:99px}.Pet-PandaCub-Shade{background-image:url(spritesmith6.png);background-position:-1620px -900px;width:81px;height:99px}.Pet-PandaCub-Skeleton{background-image:url(spritesmith6.png);background-position:-1620px -1000px;width:81px;height:99px}.Pet-PandaCub-White{background-image:url(spritesmith6.png);background-position:-1620px -1100px;width:81px;height:99px}.Pet-PandaCub-Zombie{background-image:url(spritesmith6.png);background-position:-1620px -1200px;width:81px;height:99px}.Pet-Parrot-Base{background-image:url(spritesmith6.png);background-position:-1620px -1300px;width:81px;height:99px}.Pet-Parrot-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1620px -1400px;width:81px;height:99px}.Pet-Parrot-CottonCandyPink{background-image:url(spritesmith6.png);background-position:0 -1580px;width:81px;height:99px}.Pet-Parrot-Desert{background-image:url(spritesmith6.png);background-position:-82px -1580px;width:81px;height:99px}.Pet-Parrot-Golden{background-image:url(spritesmith6.png);background-position:-164px -1580px;width:81px;height:99px}.Pet-Parrot-Red{background-image:url(spritesmith6.png);background-position:-246px -1580px;width:81px;height:99px}.Pet-Parrot-Shade{background-image:url(spritesmith6.png);background-position:-328px -1580px;width:81px;height:99px}.Pet-Parrot-Skeleton{background-image:url(spritesmith6.png);background-position:-410px -1580px;width:81px;height:99px}.Pet-Parrot-White{background-image:url(spritesmith6.png);background-position:-492px -1580px;width:81px;height:99px}.Pet-Parrot-Zombie{background-image:url(spritesmith6.png);background-position:-574px -1580px;width:81px;height:99px}.Pet-Penguin-Base{background-image:url(spritesmith6.png);background-position:-656px -1580px;width:81px;height:99px}.Pet-Penguin-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-738px -1580px;width:81px;height:99px}.Pet-Penguin-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-820px -1580px;width:81px;height:99px}.Pet-Penguin-Desert{background-image:url(spritesmith6.png);background-position:-902px -1580px;width:81px;height:99px}.Pet-Penguin-Golden{background-image:url(spritesmith6.png);background-position:-984px -1580px;width:81px;height:99px}.Pet-Penguin-Red{background-image:url(spritesmith6.png);background-position:-1066px -1580px;width:81px;height:99px}.Pet-Penguin-Shade{background-image:url(spritesmith6.png);background-position:-1148px -1580px;width:81px;height:99px}.Pet-Penguin-Skeleton{background-image:url(spritesmith6.png);background-position:-1230px -1580px;width:81px;height:99px}.Pet-Penguin-White{background-image:url(spritesmith6.png);background-position:-1312px -1580px;width:81px;height:99px}.Pet-Penguin-Zombie{background-image:url(spritesmith6.png);background-position:-1394px -1580px;width:81px;height:99px}.Pet-Rat-Base{background-image:url(spritesmith6.png);background-position:-1476px -1580px;width:81px;height:99px}.Pet-Rat-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1558px -1580px;width:81px;height:99px}.Pet-Rat-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1702px 0;width:81px;height:99px}.Pet-Rat-Desert{background-image:url(spritesmith6.png);background-position:-1702px -100px;width:81px;height:99px}.Pet-Rat-Golden{background-image:url(spritesmith6.png);background-position:-1702px -200px;width:81px;height:99px}.Pet-Rat-Red{background-image:url(spritesmith6.png);background-position:-1702px -300px;width:81px;height:99px}.Pet-Rat-Shade{background-image:url(spritesmith6.png);background-position:-1702px -400px;width:81px;height:99px}.Pet-Rat-Skeleton{background-image:url(spritesmith6.png);background-position:-1702px -500px;width:81px;height:99px}.Pet-Rat-White{background-image:url(spritesmith6.png);background-position:-1702px -600px;width:81px;height:99px}.Pet-Rat-Zombie{background-image:url(spritesmith6.png);background-position:-1702px -700px;width:81px;height:99px}.Pet-Rock-Base{background-image:url(spritesmith6.png);background-position:-1702px -800px;width:81px;height:99px}.Pet-Rock-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1702px -900px;width:81px;height:99px}.Pet-Rock-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1702px -1000px;width:81px;height:99px}.Pet-Rock-Desert{background-image:url(spritesmith6.png);background-position:-1702px -1100px;width:81px;height:99px}.Pet-Rock-Golden{background-image:url(spritesmith6.png);background-position:-1702px -1200px;width:81px;height:99px}.Pet-Rock-Red{background-image:url(spritesmith6.png);background-position:-1702px -1300px;width:81px;height:99px}.Pet-Rock-Shade{background-image:url(spritesmith6.png);background-position:-1702px -1400px;width:81px;height:99px}.Pet-Rock-Skeleton{background-image:url(spritesmith6.png);background-position:-1702px -1500px;width:81px;height:99px}.Pet-Rock-White{background-image:url(spritesmith6.png);background-position:0 -1680px;width:81px;height:99px}.Pet-Rock-Zombie{background-image:url(spritesmith6.png);background-position:-82px -1680px;width:81px;height:99px}.Pet-Rooster-Base{background-image:url(spritesmith6.png);background-position:-164px -1680px;width:81px;height:99px}.Pet-Rooster-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-246px -1680px;width:81px;height:99px}.Pet-Rooster-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-328px -1680px;width:81px;height:99px}.Pet-Rooster-Desert{background-image:url(spritesmith6.png);background-position:-410px -1680px;width:81px;height:99px}.Pet-Rooster-Golden{background-image:url(spritesmith6.png);background-position:-492px -1680px;width:81px;height:99px}.Pet-Rooster-Red{background-image:url(spritesmith6.png);background-position:-574px -1680px;width:81px;height:99px}.Pet-Rooster-Shade{background-image:url(spritesmith6.png);background-position:-656px -1680px;width:81px;height:99px}.Pet-Rooster-Skeleton{background-image:url(spritesmith6.png);background-position:-738px -1680px;width:81px;height:99px}.Pet-Rooster-White{background-image:url(spritesmith6.png);background-position:-820px -1680px;width:81px;height:99px}.Pet-Rooster-Zombie{background-image:url(spritesmith6.png);background-position:-902px -1680px;width:81px;height:99px}.Pet-Seahorse-Base{background-image:url(spritesmith6.png);background-position:-984px -1680px;width:81px;height:99px}.Pet-Seahorse-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1066px -1680px;width:81px;height:99px}.Pet-Seahorse-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1148px -1680px;width:81px;height:99px}.Pet-Seahorse-Desert{background-image:url(spritesmith6.png);background-position:-1230px -1680px;width:81px;height:99px}.Pet-Seahorse-Golden{background-image:url(spritesmith6.png);background-position:-1312px -1680px;width:81px;height:99px}.Pet-Seahorse-Red{background-image:url(spritesmith6.png);background-position:-1394px -1680px;width:81px;height:99px}.Pet-Seahorse-Shade{background-image:url(spritesmith6.png);background-position:-1476px -1680px;width:81px;height:99px}.Pet-Seahorse-Skeleton{background-image:url(spritesmith6.png);background-position:-1558px -1680px;width:81px;height:99px}.Pet-Seahorse-White{background-image:url(spritesmith6.png);background-position:-1640px -1680px;width:81px;height:99px}.Pet-Seahorse-Zombie{background-image:url(spritesmith6.png);background-position:-1784px 0;width:81px;height:99px}.Pet-Sheep-Base{background-image:url(spritesmith6.png);background-position:-1784px -100px;width:81px;height:99px}.Pet-Sheep-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1784px -200px;width:81px;height:99px}.Pet-Sheep-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1784px -300px;width:81px;height:99px}.Pet-Sheep-Desert{background-image:url(spritesmith6.png);background-position:-1784px -400px;width:81px;height:99px}.Pet-Sheep-Golden{background-image:url(spritesmith6.png);background-position:-1784px -500px;width:81px;height:99px}.Pet-Sheep-Red{background-image:url(spritesmith6.png);background-position:-1784px -600px;width:81px;height:99px}.Pet-Sheep-Shade{background-image:url(spritesmith6.png);background-position:-1784px -700px;width:81px;height:99px}.Pet-Sheep-Skeleton{background-image:url(spritesmith6.png);background-position:-1784px -800px;width:81px;height:99px}.Pet-Sheep-White{background-image:url(spritesmith6.png);background-position:-1784px -900px;width:81px;height:99px}.Pet-Sheep-Zombie{background-image:url(spritesmith6.png);background-position:-1784px -1000px;width:81px;height:99px}.Pet-Slime-Base{background-image:url(spritesmith6.png);background-position:-1784px -1100px;width:81px;height:99px}.Pet-Slime-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1784px -1200px;width:81px;height:99px}.Pet-Slime-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1784px -1300px;width:81px;height:99px}.Pet-Slime-Desert{background-image:url(spritesmith6.png);background-position:-1784px -1400px;width:81px;height:99px}.Pet-Slime-Golden{background-image:url(spritesmith6.png);background-position:-1784px -1500px;width:81px;height:99px}.Pet-Slime-Red{background-image:url(spritesmith6.png);background-position:-1784px -1600px;width:81px;height:99px}.Pet-Slime-Shade{background-image:url(spritesmith6.png);background-position:-1866px 0;width:81px;height:99px}.Pet-Slime-Skeleton{background-image:url(spritesmith6.png);background-position:-1866px -100px;width:81px;height:99px}.Pet-Slime-White{background-image:url(spritesmith6.png);background-position:-1866px -200px;width:81px;height:99px}.Pet-Slime-Zombie{background-image:url(spritesmith6.png);background-position:-1866px -300px;width:81px;height:99px}.Pet-Spider-Base{background-image:url(spritesmith6.png);background-position:-1866px -400px;width:81px;height:99px}.Pet-Spider-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1866px -500px;width:81px;height:99px}.Pet-Spider-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1866px -600px;width:81px;height:99px}.Pet-Spider-Desert{background-image:url(spritesmith6.png);background-position:-1866px -700px;width:81px;height:99px}.Pet-Spider-Golden{background-image:url(spritesmith6.png);background-position:-1866px -800px;width:81px;height:99px}.Pet-Spider-Red{background-image:url(spritesmith6.png);background-position:-1866px -900px;width:81px;height:99px}.Pet-Spider-Shade{background-image:url(spritesmith6.png);background-position:-1866px -1000px;width:81px;height:99px}.Pet-Spider-Skeleton{background-image:url(spritesmith6.png);background-position:-1866px -1100px;width:81px;height:99px}.Pet-Spider-White{background-image:url(spritesmith6.png);background-position:-1866px -1200px;width:81px;height:99px}.Pet-Spider-Zombie{background-image:url(spritesmith6.png);background-position:-1866px -1300px;width:81px;height:99px}.Pet-TRex-Base{background-image:url(spritesmith6.png);background-position:-1866px -1400px;width:81px;height:99px}.Pet-TRex-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1866px -1500px;width:81px;height:99px}.Pet-TRex-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1866px -1600px;width:81px;height:99px}.Pet-TRex-Desert{background-image:url(spritesmith6.png);background-position:0 -1780px;width:81px;height:99px}.Pet-TRex-Golden{background-image:url(spritesmith6.png);background-position:-82px -1780px;width:81px;height:99px}.Pet-TRex-Red{background-image:url(spritesmith6.png);background-position:-164px -1780px;width:81px;height:99px}.Pet-TRex-Shade{background-image:url(spritesmith6.png);background-position:-246px -1780px;width:81px;height:99px}.Pet-TRex-Skeleton{background-image:url(spritesmith6.png);background-position:-328px -1780px;width:81px;height:99px}.Pet-TRex-White{background-image:url(spritesmith6.png);background-position:-410px -1780px;width:81px;height:99px}.Pet-TRex-Zombie{background-image:url(spritesmith6.png);background-position:-492px -1780px;width:81px;height:99px}.Pet-TigerCub-Base{background-image:url(spritesmith6.png);background-position:-574px -1780px;width:81px;height:99px}.Pet-TigerCub-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-656px -1780px;width:81px;height:99px}.Pet-TigerCub-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-738px -1780px;width:81px;height:99px}.Pet-TigerCub-Desert{background-image:url(spritesmith6.png);background-position:-820px -1780px;width:81px;height:99px}.Pet-TigerCub-Golden{background-image:url(spritesmith6.png);background-position:-902px -1780px;width:81px;height:99px}.Pet-TigerCub-Red{background-image:url(spritesmith6.png);background-position:-984px -1780px;width:81px;height:99px}.Pet-TigerCub-Shade{background-image:url(spritesmith6.png);background-position:-1066px -1780px;width:81px;height:99px}.Pet-TigerCub-Skeleton{background-image:url(spritesmith6.png);background-position:-1148px -1780px;width:81px;height:99px}.Pet-TigerCub-White{background-image:url(spritesmith6.png);background-position:-1230px -1780px;width:81px;height:99px}.Pet-TigerCub-Zombie{background-image:url(spritesmith6.png);background-position:-1312px -1780px;width:81px;height:99px}.Pet-Turkey-Base{background-image:url(spritesmith6.png);background-position:-1394px -1780px;width:81px;height:99px}.Pet-Wolf-Base{background-image:url(spritesmith6.png);background-position:-1476px -1780px;width:81px;height:99px}.Pet-Wolf-CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1558px -1780px;width:81px;height:99px}.Pet-Wolf-CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1640px -1780px;width:81px;height:99px}.Pet-Wolf-Desert{background-image:url(spritesmith6.png);background-position:-1722px -1780px;width:81px;height:99px}.Pet-Wolf-Golden{background-image:url(spritesmith6.png);background-position:-1804px -1780px;width:81px;height:99px}.Pet-Wolf-Red{background-image:url(spritesmith6.png);background-position:-1948px 0;width:81px;height:99px}.Pet-Wolf-Shade{background-image:url(spritesmith6.png);background-position:-1948px -100px;width:81px;height:99px}.Pet-Wolf-Skeleton{background-image:url(spritesmith6.png);background-position:-1948px -200px;width:81px;height:99px}.Pet-Wolf-Veteran{background-image:url(spritesmith6.png);background-position:-1948px -300px;width:81px;height:99px}.Pet-Wolf-White{background-image:url(spritesmith6.png);background-position:-1948px -400px;width:81px;height:99px}.Pet-Wolf-Zombie{background-image:url(spritesmith6.png);background-position:-1948px -500px;width:81px;height:99px}.Pet_HatchingPotion_Base{background-image:url(spritesmith6.png);background-position:-1948px -600px;width:48px;height:51px}.Pet_HatchingPotion_CottonCandyBlue{background-image:url(spritesmith6.png);background-position:-1948px -652px;width:48px;height:51px}.Pet_HatchingPotion_CottonCandyPink{background-image:url(spritesmith6.png);background-position:-1948px -704px;width:48px;height:51px}.Pet_HatchingPotion_Desert{background-image:url(spritesmith6.png);background-position:-1948px -756px;width:48px;height:51px}.Pet_HatchingPotion_Golden{background-image:url(spritesmith6.png);background-position:-1948px -808px;width:48px;height:51px}.Pet_HatchingPotion_Red{background-image:url(spritesmith6.png);background-position:-1948px -860px;width:48px;height:51px}.Pet_HatchingPotion_Shade{background-image:url(spritesmith6.png);background-position:-1948px -912px;width:48px;height:51px}.Pet_HatchingPotion_Skeleton{background-image:url(spritesmith6.png);background-position:-1948px -964px;width:48px;height:51px}.Pet_HatchingPotion_White{background-image:url(spritesmith6.png);background-position:-1948px -1016px;width:48px;height:51px}.Pet_HatchingPotion_Zombie{background-image:url(spritesmith6.png);background-position:-1948px -1068px;width:48px;height:51px}.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(/common/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(/common/img/sprites/backer-only/BackerOnly-Equip-ShadeHelmet.gif) no-repeat}.head_special_1{background:url(/common/img/sprites/backer-only/ContributorOnly-Equip-CrystalHelmet.gif) no-repeat;margin-top:3px}.broad_armor_special_0,.slim_armor_special_0{background:url(/common/img/sprites/backer-only/BackerOnly-Equip-ShadeArmor.gif) no-repeat}.broad_armor_special_1,.slim_armor_special_1{background:url(/common/img/sprites/backer-only/ContributorOnly-Equip-CrystalArmor.gif) no-repeat}.shield_special_0{background:url(/common/img/sprites/backer-only/BackerOnly-Shield-TormentedSkull.gif) no-repeat}.weapon_special_0{background:url(/common/img/sprites/backer-only/BackerOnly-Weapon-DarkSoulsBlade.gif) no-repeat}.Pet-Wolf-Cerberus{width:105px;height:72px;background:url(/common/img/sprites/backer-only/BackerOnly-Pet-CerberusPup.gif) no-repeat}.npc_ian{background:url(/common/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}.multi-achievement{margin:auto;padding-left:.5em;padding-right:.5em}[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 327ecd0922..94035b5bf9 100644
--- a/common/dist/sprites/spritesmith0.css
+++ b/common/dist/sprites/spritesmith0.css
@@ -1,6 +1,6 @@
.achievement-alien {
background-image: url(spritesmith0.png);
- background-position: -1403px -1274px;
+ background-position: -1403px -1301px;
width: 24px;
height: 26px;
}
@@ -12,173 +12,191 @@
}
.achievement-armor {
background-image: url(spritesmith0.png);
- background-position: -1378px -1274px;
+ background-position: -1378px -1301px;
width: 24px;
height: 26px;
}
.achievement-boot {
background-image: url(spritesmith0.png);
- background-position: -1353px -1274px;
+ background-position: -1353px -1301px;
width: 24px;
height: 26px;
}
.achievement-bow {
background-image: url(spritesmith0.png);
- background-position: -1494px -1392px;
+ background-position: -1403px -1274px;
width: 24px;
height: 26px;
}
.achievement-cactus {
background-image: url(spritesmith0.png);
- background-position: -1469px -1392px;
+ background-position: -1378px -1274px;
width: 24px;
height: 26px;
}
.achievement-cake {
background-image: url(spritesmith0.png);
- background-position: -1444px -1392px;
+ background-position: -1353px -1274px;
width: 24px;
height: 26px;
}
.achievement-cave {
background-image: url(spritesmith0.png);
- background-position: -1494px -1365px;
+ background-position: -1494px -1392px;
width: 24px;
height: 26px;
}
.achievement-coffin {
background-image: url(spritesmith0.png);
- background-position: -1469px -1365px;
+ background-position: -1469px -1392px;
width: 24px;
height: 26px;
}
.achievement-comment {
background-image: url(spritesmith0.png);
- background-position: -1444px -1365px;
+ background-position: -1444px -1392px;
width: 24px;
height: 26px;
}
.achievement-costumeContest {
background-image: url(spritesmith0.png);
- background-position: -1585px -1483px;
+ background-position: -1494px -1365px;
width: 24px;
height: 26px;
}
.achievement-dilatory {
background-image: url(spritesmith0.png);
- background-position: -1560px -1483px;
+ background-position: -1469px -1365px;
width: 24px;
height: 26px;
}
.achievement-firefox {
background-image: url(spritesmith0.png);
- background-position: -1535px -1483px;
+ background-position: -1444px -1365px;
width: 24px;
height: 26px;
}
.achievement-habitBirthday {
background-image: url(spritesmith0.png);
- background-position: -1585px -1456px;
+ background-position: -1585px -1483px;
width: 24px;
height: 26px;
}
.achievement-heart {
background-image: url(spritesmith0.png);
- background-position: -1560px -1456px;
- width: 24px;
- height: 26px;
-}
-.achievement-helm {
- background-image: url(spritesmith0.png);
- background-position: -1535px -1456px;
+ background-position: -1560px -1483px;
width: 24px;
height: 26px;
}
.achievement-karaoke {
background-image: url(spritesmith0.png);
- background-position: -1676px -1574px;
+ background-position: -1535px -1483px;
width: 24px;
height: 26px;
}
.achievement-ninja {
background-image: url(spritesmith0.png);
- background-position: -1808px -1729px;
+ background-position: -1585px -1456px;
width: 24px;
height: 26px;
}
.achievement-nye {
background-image: url(spritesmith0.png);
- background-position: -1626px -1574px;
+ background-position: -1560px -1456px;
width: 24px;
height: 26px;
}
.achievement-perfect {
background-image: url(spritesmith0.png);
- background-position: -1676px -1547px;
+ background-position: -1808px -1729px;
width: 24px;
height: 26px;
}
.achievement-rat {
background-image: url(spritesmith0.png);
- background-position: -1651px -1547px;
+ background-position: -1676px -1574px;
width: 24px;
height: 26px;
}
.achievement-shield {
background-image: url(spritesmith0.png);
- background-position: -1626px -1547px;
+ background-position: -1651px -1574px;
width: 24px;
height: 26px;
}
.achievement-shinySeed {
background-image: url(spritesmith0.png);
- background-position: -1767px -1665px;
+ background-position: -1626px -1574px;
width: 24px;
height: 26px;
}
.achievement-snowball {
background-image: url(spritesmith0.png);
- background-position: -1742px -1665px;
+ background-position: -1676px -1547px;
width: 24px;
height: 26px;
}
.achievement-spookDust {
background-image: url(spritesmith0.png);
- background-position: -1717px -1665px;
+ background-position: -1651px -1547px;
width: 24px;
height: 26px;
}
.achievement-stoikalm {
background-image: url(spritesmith0.png);
- background-position: -1767px -1638px;
+ background-position: -1626px -1547px;
width: 24px;
height: 26px;
}
.achievement-sun {
background-image: url(spritesmith0.png);
- background-position: -1742px -1638px;
+ background-position: -1767px -1665px;
width: 24px;
height: 26px;
}
.achievement-sword {
background-image: url(spritesmith0.png);
- background-position: -1717px -1638px;
+ background-position: -1742px -1665px;
width: 24px;
height: 26px;
}
.achievement-thermometer {
background-image: url(spritesmith0.png);
- background-position: -1858px -1756px;
+ background-position: -1717px -1665px;
width: 24px;
height: 26px;
}
.achievement-tree {
background-image: url(spritesmith0.png);
- background-position: -1833px -1756px;
+ background-position: -1767px -1638px;
width: 24px;
height: 26px;
}
.achievement-triadbingo {
+ background-image: url(spritesmith0.png);
+ background-position: -1742px -1638px;
+ width: 24px;
+ height: 26px;
+}
+.achievement-ultimate-healer {
+ background-image: url(spritesmith0.png);
+ background-position: -1717px -1638px;
+ width: 24px;
+ height: 26px;
+}
+.achievement-ultimate-mage {
+ background-image: url(spritesmith0.png);
+ background-position: -1858px -1756px;
+ width: 24px;
+ height: 26px;
+}
+.achievement-ultimate-rogue {
+ background-image: url(spritesmith0.png);
+ background-position: -1833px -1756px;
+ width: 24px;
+ height: 26px;
+}
+.achievement-ultimate-warrior {
background-image: url(spritesmith0.png);
background-position: -1808px -1756px;
width: 24px;
@@ -192,13 +210,13 @@
}
.achievement-wolf {
background-image: url(spritesmith0.png);
- background-position: -1651px -1574px;
+ background-position: -1535px -1456px;
width: 24px;
height: 26px;
}
.background_autumn_forest {
background-image: url(spritesmith0.png);
- background-position: -282px -444px;
+ background-position: -707px 0px;
width: 140px;
height: 147px;
}
@@ -244,147 +262,183 @@
width: 140px;
height: 147px;
}
-.background_dusty_canyons {
+.background_drifting_raft {
background-image: url(spritesmith0.png);
background-position: -141px -296px;
width: 140px;
height: 147px;
}
-.background_fairy_ring {
+.background_dusty_canyons {
background-image: url(spritesmith0.png);
background-position: -282px -296px;
width: 140px;
height: 147px;
}
-.background_floral_meadow {
+.background_fairy_ring {
background-image: url(spritesmith0.png);
background-position: -423px -296px;
width: 140px;
height: 147px;
}
-.background_forest {
+.background_floral_meadow {
background-image: url(spritesmith0.png);
background-position: -566px 0px;
width: 140px;
height: 147px;
}
-.background_frigid_peak {
+.background_forest {
background-image: url(spritesmith0.png);
background-position: -566px -148px;
width: 140px;
height: 147px;
}
-.background_graveyard {
+.background_frigid_peak {
background-image: url(spritesmith0.png);
background-position: -566px -296px;
width: 140px;
height: 147px;
}
-.background_gumdrop_land {
+.background_graveyard {
background-image: url(spritesmith0.png);
background-position: 0px -444px;
width: 140px;
height: 147px;
}
-.background_harvest_feast {
+.background_gumdrop_land {
background-image: url(spritesmith0.png);
background-position: -141px -444px;
width: 140px;
height: 147px;
}
+.background_harvest_feast {
+ background-image: url(spritesmith0.png);
+ background-position: -282px -444px;
+ width: 140px;
+ height: 147px;
+}
.background_harvest_fields {
background-image: url(spritesmith0.png);
- background-position: 0px 0px;
+ background-position: -423px -444px;
width: 141px;
height: 147px;
}
.background_haunted_house {
background-image: url(spritesmith0.png);
- background-position: -423px -444px;
+ background-position: -565px -444px;
width: 140px;
height: 147px;
}
.background_ice_cave {
background-image: url(spritesmith0.png);
- background-position: -564px -444px;
+ background-position: 0px 0px;
width: 141px;
height: 147px;
}
.background_iceberg {
- background-image: url(spritesmith0.png);
- background-position: -707px 0px;
- width: 140px;
- height: 147px;
-}
-.background_open_waters {
- background-image: url(spritesmith0.png);
- background-position: 0px -592px;
- width: 141px;
- height: 147px;
-}
-.background_pumpkin_patch {
background-image: url(spritesmith0.png);
background-position: -707px -148px;
width: 140px;
height: 147px;
}
-.background_rolling_hills {
- background-image: url(spritesmith0.png);
- background-position: -142px -592px;
- width: 141px;
- height: 147px;
-}
-.background_seafarer_ship {
+.background_island_waterfalls {
background-image: url(spritesmith0.png);
background-position: -707px -296px;
width: 140px;
height: 147px;
}
-.background_snowy_pines {
+.background_marble_temple {
+ background-image: url(spritesmith0.png);
+ background-position: 0px -592px;
+ width: 141px;
+ height: 147px;
+}
+.background_mountain_lake {
background-image: url(spritesmith0.png);
background-position: -707px -444px;
width: 140px;
height: 147px;
}
-.background_south_pole {
+.background_open_waters {
+ background-image: url(spritesmith0.png);
+ background-position: -142px -592px;
+ width: 141px;
+ height: 147px;
+}
+.background_pagodas {
background-image: url(spritesmith0.png);
background-position: -284px -592px;
width: 140px;
height: 147px;
}
-.background_spring_rain {
+.background_pumpkin_patch {
background-image: url(spritesmith0.png);
background-position: -425px -592px;
width: 140px;
height: 147px;
}
-.background_stained_glass {
+.background_rolling_hills {
background-image: url(spritesmith0.png);
background-position: -566px -592px;
- width: 140px;
+ width: 141px;
height: 147px;
}
-.background_starry_skies {
- background-image: url(spritesmith0.png);
- background-position: -707px -592px;
- width: 140px;
- height: 147px;
-}
-.background_sunset_meadow {
+.background_seafarer_ship {
background-image: url(spritesmith0.png);
background-position: -848px 0px;
width: 140px;
height: 147px;
}
-.background_thunderstorm {
+.background_shimmery_bubbles {
+ background-image: url(spritesmith0.png);
+ background-position: -848px -148px;
+ width: 140px;
+ height: 147px;
+}
+.background_snowy_pines {
+ background-image: url(spritesmith0.png);
+ background-position: -848px -296px;
+ width: 140px;
+ height: 147px;
+}
+.background_south_pole {
+ background-image: url(spritesmith0.png);
+ background-position: -848px -444px;
+ width: 140px;
+ height: 147px;
+}
+.background_spring_rain {
+ background-image: url(spritesmith0.png);
+ background-position: -848px -592px;
+ width: 140px;
+ height: 147px;
+}
+.background_stained_glass {
background-image: url(spritesmith0.png);
background-position: 0px -740px;
+ width: 140px;
+ height: 147px;
+}
+.background_starry_skies {
+ background-image: url(spritesmith0.png);
+ background-position: -141px -740px;
+ width: 140px;
+ height: 147px;
+}
+.background_sunset_meadow {
+ background-image: url(spritesmith0.png);
+ background-position: -282px -740px;
+ width: 140px;
+ height: 147px;
+}
+.background_thunderstorm {
+ background-image: url(spritesmith0.png);
+ background-position: -423px -740px;
width: 141px;
height: 147px;
}
.background_twinkly_lights {
background-image: url(spritesmith0.png);
- background-position: -142px -740px;
+ background-position: -565px -740px;
width: 141px;
height: 147px;
}
@@ -396,3637 +450,3745 @@
}
.hair_beard_1_TRUred {
background-image: url(spritesmith0.png);
- background-position: 0px -979px;
+ background-position: -1080px -91px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_TRUred {
background-image: url(spritesmith0.png);
- background-position: -25px -994px;
+ background-position: -1105px -106px;
width: 60px;
height: 60px;
}
.hair_beard_1_aurora {
background-image: url(spritesmith0.png);
- background-position: -91px -979px;
+ background-position: -1080px -182px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_aurora {
background-image: url(spritesmith0.png);
- background-position: -116px -994px;
+ background-position: -1105px -197px;
width: 60px;
height: 60px;
}
.hair_beard_1_black {
background-image: url(spritesmith0.png);
- background-position: -182px -979px;
+ background-position: -1080px -273px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_black {
background-image: url(spritesmith0.png);
- background-position: -207px -994px;
+ background-position: -1105px -288px;
width: 60px;
height: 60px;
}
.hair_beard_1_blond {
background-image: url(spritesmith0.png);
- background-position: -273px -979px;
+ background-position: -1080px -364px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_blond {
background-image: url(spritesmith0.png);
- background-position: -298px -994px;
+ background-position: -1105px -379px;
width: 60px;
height: 60px;
}
.hair_beard_1_blue {
background-image: url(spritesmith0.png);
- background-position: -364px -979px;
+ background-position: -1080px -455px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_blue {
background-image: url(spritesmith0.png);
- background-position: -389px -994px;
+ background-position: -1105px -470px;
width: 60px;
height: 60px;
}
.hair_beard_1_brown {
background-image: url(spritesmith0.png);
- background-position: -455px -979px;
+ background-position: -1080px -546px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_brown {
background-image: url(spritesmith0.png);
- background-position: -480px -994px;
+ background-position: -1105px -561px;
width: 60px;
height: 60px;
}
.hair_beard_1_candycane {
background-image: url(spritesmith0.png);
- background-position: -546px -979px;
+ background-position: -1080px -637px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_candycane {
background-image: url(spritesmith0.png);
- background-position: -571px -994px;
+ background-position: -1105px -652px;
width: 60px;
height: 60px;
}
.hair_beard_1_candycorn {
background-image: url(spritesmith0.png);
- background-position: -637px -979px;
+ background-position: -1080px -728px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_candycorn {
background-image: url(spritesmith0.png);
- background-position: -662px -994px;
+ background-position: -1105px -743px;
width: 60px;
height: 60px;
}
.hair_beard_1_festive {
background-image: url(spritesmith0.png);
- background-position: -728px -979px;
+ background-position: -1080px -819px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_festive {
background-image: url(spritesmith0.png);
- background-position: -753px -994px;
+ background-position: -1105px -834px;
width: 60px;
height: 60px;
}
.hair_beard_1_frost {
background-image: url(spritesmith0.png);
- background-position: -819px -979px;
+ background-position: -1080px -910px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_frost {
background-image: url(spritesmith0.png);
- background-position: -844px -994px;
+ background-position: -1105px -925px;
width: 60px;
height: 60px;
}
.hair_beard_1_ghostwhite {
background-image: url(spritesmith0.png);
- background-position: -910px -979px;
+ background-position: 0px -1070px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_ghostwhite {
background-image: url(spritesmith0.png);
- background-position: -935px -994px;
+ background-position: -25px -1085px;
width: 60px;
height: 60px;
}
.hair_beard_1_green {
background-image: url(spritesmith0.png);
- background-position: -1080px 0px;
+ background-position: -91px -1070px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_green {
background-image: url(spritesmith0.png);
- background-position: -1105px -15px;
+ background-position: -116px -1085px;
width: 60px;
height: 60px;
}
.hair_beard_1_halloween {
background-image: url(spritesmith0.png);
- background-position: -1080px -91px;
+ background-position: -182px -1070px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_halloween {
background-image: url(spritesmith0.png);
- background-position: -1105px -106px;
+ background-position: -207px -1085px;
width: 60px;
height: 60px;
}
.hair_beard_1_holly {
background-image: url(spritesmith0.png);
- background-position: -1080px -182px;
+ background-position: -273px -1070px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_holly {
background-image: url(spritesmith0.png);
- background-position: -1105px -197px;
+ background-position: -298px -1085px;
width: 60px;
height: 60px;
}
.hair_beard_1_hollygreen {
background-image: url(spritesmith0.png);
- background-position: -1080px -273px;
+ background-position: -364px -1070px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_hollygreen {
background-image: url(spritesmith0.png);
- background-position: -1105px -288px;
+ background-position: -389px -1085px;
width: 60px;
height: 60px;
}
.hair_beard_1_midnight {
background-image: url(spritesmith0.png);
- background-position: -1080px -364px;
+ background-position: -455px -1070px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_midnight {
background-image: url(spritesmith0.png);
- background-position: -1105px -379px;
+ background-position: -480px -1085px;
width: 60px;
height: 60px;
}
.hair_beard_1_pblue {
background-image: url(spritesmith0.png);
- background-position: -1080px -455px;
+ background-position: -546px -1070px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_pblue {
background-image: url(spritesmith0.png);
- background-position: -1105px -470px;
+ background-position: -571px -1085px;
width: 60px;
height: 60px;
}
.hair_beard_1_peppermint {
background-image: url(spritesmith0.png);
- background-position: -1080px -546px;
+ background-position: -637px -1070px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_peppermint {
background-image: url(spritesmith0.png);
- background-position: -1105px -561px;
+ background-position: -662px -1085px;
width: 60px;
height: 60px;
}
.hair_beard_1_pgreen {
background-image: url(spritesmith0.png);
- background-position: -1080px -637px;
+ background-position: -728px -1070px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_pgreen {
background-image: url(spritesmith0.png);
- background-position: -1105px -652px;
+ background-position: -753px -1085px;
width: 60px;
height: 60px;
}
.hair_beard_1_porange {
background-image: url(spritesmith0.png);
- background-position: -1080px -728px;
+ background-position: -819px -1070px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_porange {
background-image: url(spritesmith0.png);
- background-position: -1105px -743px;
+ background-position: -844px -1085px;
width: 60px;
height: 60px;
}
.hair_beard_1_ppink {
background-image: url(spritesmith0.png);
- background-position: -1080px -819px;
+ background-position: -910px -1070px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_ppink {
background-image: url(spritesmith0.png);
- background-position: -1105px -834px;
+ background-position: -935px -1085px;
width: 60px;
height: 60px;
}
.hair_beard_1_ppurple {
background-image: url(spritesmith0.png);
- background-position: -1080px -910px;
+ background-position: -1001px -1070px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_ppurple {
background-image: url(spritesmith0.png);
- background-position: -1105px -925px;
+ background-position: -1026px -1085px;
width: 60px;
height: 60px;
}
.hair_beard_1_pumpkin {
background-image: url(spritesmith0.png);
- background-position: 0px -1070px;
+ background-position: -1171px 0px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_pumpkin {
background-image: url(spritesmith0.png);
- background-position: -25px -1085px;
+ background-position: -1196px -15px;
width: 60px;
height: 60px;
}
.hair_beard_1_purple {
background-image: url(spritesmith0.png);
- background-position: -91px -1070px;
+ background-position: -1171px -91px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_purple {
background-image: url(spritesmith0.png);
- background-position: -116px -1085px;
+ background-position: -1196px -106px;
width: 60px;
height: 60px;
}
.hair_beard_1_pyellow {
background-image: url(spritesmith0.png);
- background-position: -182px -1070px;
+ background-position: -1171px -182px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_pyellow {
background-image: url(spritesmith0.png);
- background-position: -207px -1085px;
+ background-position: -1196px -197px;
width: 60px;
height: 60px;
}
.hair_beard_1_rainbow {
background-image: url(spritesmith0.png);
- background-position: -273px -1070px;
+ background-position: -1171px -273px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_rainbow {
background-image: url(spritesmith0.png);
- background-position: -298px -1085px;
+ background-position: -1196px -288px;
width: 60px;
height: 60px;
}
.hair_beard_1_red {
background-image: url(spritesmith0.png);
- background-position: -364px -1070px;
+ background-position: -1171px -364px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_red {
background-image: url(spritesmith0.png);
- background-position: -389px -1085px;
+ background-position: -1196px -379px;
width: 60px;
height: 60px;
}
.hair_beard_1_snowy {
background-image: url(spritesmith0.png);
- background-position: -455px -1070px;
+ background-position: -1171px -455px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_snowy {
background-image: url(spritesmith0.png);
- background-position: -480px -1085px;
+ background-position: -1196px -470px;
width: 60px;
height: 60px;
}
.hair_beard_1_white {
background-image: url(spritesmith0.png);
- background-position: -546px -1070px;
+ background-position: -1171px -546px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_white {
background-image: url(spritesmith0.png);
- background-position: -571px -1085px;
+ background-position: -1196px -561px;
width: 60px;
height: 60px;
}
.hair_beard_1_winternight {
background-image: url(spritesmith0.png);
- background-position: -637px -1070px;
+ background-position: -1171px -637px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_winternight {
background-image: url(spritesmith0.png);
- background-position: -662px -1085px;
+ background-position: -1196px -652px;
width: 60px;
height: 60px;
}
.hair_beard_1_winterstar {
background-image: url(spritesmith0.png);
- background-position: -728px -1070px;
+ background-position: -1171px -728px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_winterstar {
background-image: url(spritesmith0.png);
- background-position: -753px -1085px;
+ background-position: -1196px -743px;
width: 60px;
height: 60px;
}
.hair_beard_1_yellow {
background-image: url(spritesmith0.png);
- background-position: -819px -1070px;
+ background-position: -1171px -819px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_yellow {
background-image: url(spritesmith0.png);
- background-position: -844px -1085px;
+ background-position: -1196px -834px;
width: 60px;
height: 60px;
}
.hair_beard_1_zombie {
background-image: url(spritesmith0.png);
- background-position: -910px -1070px;
+ background-position: -1171px -910px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_1_zombie {
background-image: url(spritesmith0.png);
- background-position: -935px -1085px;
+ background-position: -1196px -925px;
width: 60px;
height: 60px;
}
.hair_beard_2_TRUred {
background-image: url(spritesmith0.png);
- background-position: -1001px -1070px;
+ background-position: -1171px -1001px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_TRUred {
background-image: url(spritesmith0.png);
- background-position: -1026px -1085px;
+ background-position: -1196px -1016px;
width: 60px;
height: 60px;
}
.hair_beard_2_aurora {
background-image: url(spritesmith0.png);
- background-position: -1171px 0px;
+ background-position: 0px -1161px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_aurora {
background-image: url(spritesmith0.png);
- background-position: -1196px -15px;
+ background-position: -25px -1176px;
width: 60px;
height: 60px;
}
.hair_beard_2_black {
background-image: url(spritesmith0.png);
- background-position: -1171px -91px;
+ background-position: -91px -1161px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_black {
background-image: url(spritesmith0.png);
- background-position: -1196px -106px;
+ background-position: -116px -1176px;
width: 60px;
height: 60px;
}
.hair_beard_2_blond {
background-image: url(spritesmith0.png);
- background-position: -1171px -182px;
+ background-position: -182px -1161px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_blond {
background-image: url(spritesmith0.png);
- background-position: -1196px -197px;
+ background-position: -207px -1176px;
width: 60px;
height: 60px;
}
.hair_beard_2_blue {
background-image: url(spritesmith0.png);
- background-position: -1171px -273px;
+ background-position: -273px -1161px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_blue {
background-image: url(spritesmith0.png);
- background-position: -1196px -288px;
+ background-position: -298px -1176px;
width: 60px;
height: 60px;
}
.hair_beard_2_brown {
background-image: url(spritesmith0.png);
- background-position: -1171px -364px;
+ background-position: -364px -1161px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_brown {
background-image: url(spritesmith0.png);
- background-position: -1196px -379px;
+ background-position: -389px -1176px;
width: 60px;
height: 60px;
}
.hair_beard_2_candycane {
background-image: url(spritesmith0.png);
- background-position: -1171px -455px;
+ background-position: -455px -1161px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_candycane {
background-image: url(spritesmith0.png);
- background-position: -1196px -470px;
+ background-position: -480px -1176px;
width: 60px;
height: 60px;
}
.hair_beard_2_candycorn {
background-image: url(spritesmith0.png);
- background-position: -1171px -546px;
+ background-position: -546px -1161px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_candycorn {
background-image: url(spritesmith0.png);
- background-position: -1196px -561px;
+ background-position: -571px -1176px;
width: 60px;
height: 60px;
}
.hair_beard_2_festive {
background-image: url(spritesmith0.png);
- background-position: -1171px -637px;
+ background-position: -637px -1161px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_festive {
background-image: url(spritesmith0.png);
- background-position: -1196px -652px;
+ background-position: -662px -1176px;
width: 60px;
height: 60px;
}
.hair_beard_2_frost {
background-image: url(spritesmith0.png);
- background-position: -1171px -728px;
+ background-position: -728px -1161px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_frost {
background-image: url(spritesmith0.png);
- background-position: -1196px -743px;
+ background-position: -753px -1176px;
width: 60px;
height: 60px;
}
.hair_beard_2_ghostwhite {
background-image: url(spritesmith0.png);
- background-position: -1171px -819px;
+ background-position: -819px -1161px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_ghostwhite {
background-image: url(spritesmith0.png);
- background-position: -1196px -834px;
+ background-position: -844px -1176px;
width: 60px;
height: 60px;
}
.hair_beard_2_green {
background-image: url(spritesmith0.png);
- background-position: -1171px -910px;
+ background-position: -910px -1161px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_green {
background-image: url(spritesmith0.png);
- background-position: -1196px -925px;
+ background-position: -935px -1176px;
width: 60px;
height: 60px;
}
.hair_beard_2_halloween {
background-image: url(spritesmith0.png);
- background-position: -1171px -1001px;
+ background-position: -1001px -1161px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_halloween {
background-image: url(spritesmith0.png);
- background-position: -1196px -1016px;
+ background-position: -1026px -1176px;
width: 60px;
height: 60px;
}
.hair_beard_2_holly {
background-image: url(spritesmith0.png);
- background-position: 0px -1161px;
+ background-position: -1092px -1161px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_holly {
background-image: url(spritesmith0.png);
- background-position: -25px -1176px;
+ background-position: -1117px -1176px;
width: 60px;
height: 60px;
}
.hair_beard_2_hollygreen {
background-image: url(spritesmith0.png);
- background-position: -91px -1161px;
+ background-position: -1262px 0px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_hollygreen {
background-image: url(spritesmith0.png);
- background-position: -116px -1176px;
+ background-position: -1287px -15px;
width: 60px;
height: 60px;
}
.hair_beard_2_midnight {
background-image: url(spritesmith0.png);
- background-position: -182px -1161px;
+ background-position: -1262px -91px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_midnight {
background-image: url(spritesmith0.png);
- background-position: -207px -1176px;
+ background-position: -1287px -106px;
width: 60px;
height: 60px;
}
.hair_beard_2_pblue {
background-image: url(spritesmith0.png);
- background-position: -273px -1161px;
+ background-position: -1262px -182px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_pblue {
background-image: url(spritesmith0.png);
- background-position: -298px -1176px;
+ background-position: -1287px -197px;
width: 60px;
height: 60px;
}
.hair_beard_2_peppermint {
background-image: url(spritesmith0.png);
- background-position: -364px -1161px;
+ background-position: -1262px -273px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_peppermint {
background-image: url(spritesmith0.png);
- background-position: -389px -1176px;
+ background-position: -1287px -288px;
width: 60px;
height: 60px;
}
.hair_beard_2_pgreen {
background-image: url(spritesmith0.png);
- background-position: -455px -1161px;
+ background-position: -1262px -364px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_pgreen {
background-image: url(spritesmith0.png);
- background-position: -480px -1176px;
+ background-position: -1287px -379px;
width: 60px;
height: 60px;
}
.hair_beard_2_porange {
background-image: url(spritesmith0.png);
- background-position: -546px -1161px;
+ background-position: -1262px -455px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_porange {
background-image: url(spritesmith0.png);
- background-position: -571px -1176px;
+ background-position: -1287px -470px;
width: 60px;
height: 60px;
}
.hair_beard_2_ppink {
background-image: url(spritesmith0.png);
- background-position: -637px -1161px;
+ background-position: -1262px -546px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_ppink {
background-image: url(spritesmith0.png);
- background-position: -662px -1176px;
+ background-position: -1287px -561px;
width: 60px;
height: 60px;
}
.hair_beard_2_ppurple {
background-image: url(spritesmith0.png);
- background-position: -728px -1161px;
+ background-position: -1262px -637px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_ppurple {
background-image: url(spritesmith0.png);
- background-position: -753px -1176px;
+ background-position: -1287px -652px;
width: 60px;
height: 60px;
}
.hair_beard_2_pumpkin {
background-image: url(spritesmith0.png);
- background-position: -819px -1161px;
+ background-position: -1262px -728px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_pumpkin {
background-image: url(spritesmith0.png);
- background-position: -844px -1176px;
+ background-position: -1287px -743px;
width: 60px;
height: 60px;
}
.hair_beard_2_purple {
background-image: url(spritesmith0.png);
- background-position: -910px -1161px;
+ background-position: -1262px -819px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_purple {
background-image: url(spritesmith0.png);
- background-position: -935px -1176px;
+ background-position: -1287px -834px;
width: 60px;
height: 60px;
}
.hair_beard_2_pyellow {
background-image: url(spritesmith0.png);
- background-position: -1001px -1161px;
+ background-position: -1262px -910px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_pyellow {
background-image: url(spritesmith0.png);
- background-position: -1026px -1176px;
+ background-position: -1287px -925px;
width: 60px;
height: 60px;
}
.hair_beard_2_rainbow {
background-image: url(spritesmith0.png);
- background-position: -1092px -1161px;
+ background-position: -1262px -1001px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_rainbow {
background-image: url(spritesmith0.png);
- background-position: -1117px -1176px;
+ background-position: -1287px -1016px;
width: 60px;
height: 60px;
}
.hair_beard_2_red {
background-image: url(spritesmith0.png);
- background-position: -1262px 0px;
+ background-position: -1262px -1092px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_red {
background-image: url(spritesmith0.png);
- background-position: -1287px -15px;
+ background-position: -1287px -1107px;
width: 60px;
height: 60px;
}
.hair_beard_2_snowy {
background-image: url(spritesmith0.png);
- background-position: -1262px -91px;
+ background-position: 0px -1252px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_snowy {
background-image: url(spritesmith0.png);
- background-position: -1287px -106px;
+ background-position: -25px -1267px;
width: 60px;
height: 60px;
}
.hair_beard_2_white {
background-image: url(spritesmith0.png);
- background-position: -1262px -182px;
+ background-position: -91px -1252px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_white {
background-image: url(spritesmith0.png);
- background-position: -1287px -197px;
+ background-position: -116px -1267px;
width: 60px;
height: 60px;
}
.hair_beard_2_winternight {
background-image: url(spritesmith0.png);
- background-position: -1262px -273px;
+ background-position: -182px -1252px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_winternight {
background-image: url(spritesmith0.png);
- background-position: -1287px -288px;
+ background-position: -207px -1267px;
width: 60px;
height: 60px;
}
.hair_beard_2_winterstar {
background-image: url(spritesmith0.png);
- background-position: -1262px -364px;
+ background-position: -273px -1252px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_winterstar {
background-image: url(spritesmith0.png);
- background-position: -1287px -379px;
+ background-position: -298px -1267px;
width: 60px;
height: 60px;
}
.hair_beard_2_yellow {
background-image: url(spritesmith0.png);
- background-position: -1262px -455px;
+ background-position: -364px -1252px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_yellow {
background-image: url(spritesmith0.png);
- background-position: -1287px -470px;
+ background-position: -389px -1267px;
width: 60px;
height: 60px;
}
.hair_beard_2_zombie {
background-image: url(spritesmith0.png);
- background-position: -1262px -546px;
+ background-position: -455px -1252px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_2_zombie {
background-image: url(spritesmith0.png);
- background-position: -1287px -561px;
+ background-position: -480px -1267px;
width: 60px;
height: 60px;
}
.hair_beard_3_TRUred {
background-image: url(spritesmith0.png);
- background-position: -1262px -637px;
+ background-position: -546px -1252px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_TRUred {
background-image: url(spritesmith0.png);
- background-position: -1287px -652px;
+ background-position: -571px -1267px;
width: 60px;
height: 60px;
}
.hair_beard_3_aurora {
background-image: url(spritesmith0.png);
- background-position: -1262px -728px;
+ background-position: -637px -1252px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_aurora {
background-image: url(spritesmith0.png);
- background-position: -1287px -743px;
+ background-position: -662px -1267px;
width: 60px;
height: 60px;
}
.hair_beard_3_black {
background-image: url(spritesmith0.png);
- background-position: -1262px -819px;
+ background-position: -728px -1252px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_black {
background-image: url(spritesmith0.png);
- background-position: -1287px -834px;
+ background-position: -753px -1267px;
width: 60px;
height: 60px;
}
.hair_beard_3_blond {
background-image: url(spritesmith0.png);
- background-position: -1262px -910px;
+ background-position: -819px -1252px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_blond {
background-image: url(spritesmith0.png);
- background-position: -1287px -925px;
+ background-position: -844px -1267px;
width: 60px;
height: 60px;
}
.hair_beard_3_blue {
background-image: url(spritesmith0.png);
- background-position: -1262px -1001px;
+ background-position: -910px -1252px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_blue {
background-image: url(spritesmith0.png);
- background-position: -1287px -1016px;
+ background-position: -935px -1267px;
width: 60px;
height: 60px;
}
.hair_beard_3_brown {
background-image: url(spritesmith0.png);
- background-position: -1262px -1092px;
+ background-position: -1001px -1252px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_brown {
background-image: url(spritesmith0.png);
- background-position: -1287px -1107px;
+ background-position: -1026px -1267px;
width: 60px;
height: 60px;
}
.hair_beard_3_candycane {
background-image: url(spritesmith0.png);
- background-position: 0px -1252px;
+ background-position: -1092px -1252px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_candycane {
background-image: url(spritesmith0.png);
- background-position: -25px -1267px;
+ background-position: -1117px -1267px;
width: 60px;
height: 60px;
}
.hair_beard_3_candycorn {
background-image: url(spritesmith0.png);
- background-position: -91px -1252px;
+ background-position: -1183px -1252px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_candycorn {
background-image: url(spritesmith0.png);
- background-position: -116px -1267px;
+ background-position: -1208px -1267px;
width: 60px;
height: 60px;
}
.hair_beard_3_festive {
background-image: url(spritesmith0.png);
- background-position: -182px -1252px;
+ background-position: -1353px 0px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_festive {
background-image: url(spritesmith0.png);
- background-position: -207px -1267px;
+ background-position: -1378px -15px;
width: 60px;
height: 60px;
}
.hair_beard_3_frost {
background-image: url(spritesmith0.png);
- background-position: -273px -1252px;
+ background-position: -1353px -91px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_frost {
background-image: url(spritesmith0.png);
- background-position: -298px -1267px;
+ background-position: -1378px -106px;
width: 60px;
height: 60px;
}
.hair_beard_3_ghostwhite {
background-image: url(spritesmith0.png);
- background-position: -364px -1252px;
+ background-position: -1353px -182px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_ghostwhite {
background-image: url(spritesmith0.png);
- background-position: -389px -1267px;
+ background-position: -1378px -197px;
width: 60px;
height: 60px;
}
.hair_beard_3_green {
background-image: url(spritesmith0.png);
- background-position: -455px -1252px;
+ background-position: -1353px -273px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_green {
background-image: url(spritesmith0.png);
- background-position: -480px -1267px;
+ background-position: -1378px -288px;
width: 60px;
height: 60px;
}
.hair_beard_3_halloween {
background-image: url(spritesmith0.png);
- background-position: -546px -1252px;
+ background-position: -1353px -364px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_halloween {
background-image: url(spritesmith0.png);
- background-position: -571px -1267px;
+ background-position: -1378px -379px;
width: 60px;
height: 60px;
}
.hair_beard_3_holly {
background-image: url(spritesmith0.png);
- background-position: -637px -1252px;
+ background-position: -1353px -455px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_holly {
background-image: url(spritesmith0.png);
- background-position: -662px -1267px;
+ background-position: -1378px -470px;
width: 60px;
height: 60px;
}
.hair_beard_3_hollygreen {
background-image: url(spritesmith0.png);
- background-position: -728px -1252px;
+ background-position: -1353px -546px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_hollygreen {
background-image: url(spritesmith0.png);
- background-position: -753px -1267px;
+ background-position: -1378px -561px;
width: 60px;
height: 60px;
}
.hair_beard_3_midnight {
background-image: url(spritesmith0.png);
- background-position: -819px -1252px;
+ background-position: -1353px -637px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_midnight {
background-image: url(spritesmith0.png);
- background-position: -844px -1267px;
+ background-position: -1378px -652px;
width: 60px;
height: 60px;
}
.hair_beard_3_pblue {
background-image: url(spritesmith0.png);
- background-position: -910px -1252px;
+ background-position: -1353px -728px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_pblue {
background-image: url(spritesmith0.png);
- background-position: -935px -1267px;
+ background-position: -1378px -743px;
width: 60px;
height: 60px;
}
.hair_beard_3_peppermint {
background-image: url(spritesmith0.png);
- background-position: -1001px -1252px;
+ background-position: -1353px -819px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_peppermint {
background-image: url(spritesmith0.png);
- background-position: -1026px -1267px;
+ background-position: -1378px -834px;
width: 60px;
height: 60px;
}
.hair_beard_3_pgreen {
background-image: url(spritesmith0.png);
- background-position: -1092px -1252px;
+ background-position: -1353px -910px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_pgreen {
background-image: url(spritesmith0.png);
- background-position: -1117px -1267px;
+ background-position: -1378px -925px;
width: 60px;
height: 60px;
}
.hair_beard_3_porange {
background-image: url(spritesmith0.png);
- background-position: -1183px -1252px;
+ background-position: -1353px -1001px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_porange {
background-image: url(spritesmith0.png);
- background-position: -1208px -1267px;
+ background-position: -1378px -1016px;
width: 60px;
height: 60px;
}
.hair_beard_3_ppink {
background-image: url(spritesmith0.png);
- background-position: -1353px 0px;
+ background-position: -1353px -1092px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_ppink {
background-image: url(spritesmith0.png);
- background-position: -1378px -15px;
+ background-position: -1378px -1107px;
width: 60px;
height: 60px;
}
.hair_beard_3_ppurple {
background-image: url(spritesmith0.png);
- background-position: -1353px -91px;
+ background-position: -1353px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_ppurple {
background-image: url(spritesmith0.png);
- background-position: -1378px -106px;
+ background-position: -1378px -1198px;
width: 60px;
height: 60px;
}
.hair_beard_3_pumpkin {
background-image: url(spritesmith0.png);
- background-position: -1353px -182px;
+ background-position: 0px -1343px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_pumpkin {
background-image: url(spritesmith0.png);
- background-position: -1378px -197px;
+ background-position: -25px -1358px;
width: 60px;
height: 60px;
}
.hair_beard_3_purple {
background-image: url(spritesmith0.png);
- background-position: -1353px -273px;
+ background-position: -91px -1343px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_purple {
background-image: url(spritesmith0.png);
- background-position: -1378px -288px;
+ background-position: -116px -1358px;
width: 60px;
height: 60px;
}
.hair_beard_3_pyellow {
background-image: url(spritesmith0.png);
- background-position: -1353px -364px;
+ background-position: -182px -1343px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_pyellow {
background-image: url(spritesmith0.png);
- background-position: -1378px -379px;
+ background-position: -207px -1358px;
width: 60px;
height: 60px;
}
.hair_beard_3_rainbow {
background-image: url(spritesmith0.png);
- background-position: -1353px -455px;
+ background-position: -273px -1343px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_rainbow {
background-image: url(spritesmith0.png);
- background-position: -1378px -470px;
+ background-position: -298px -1358px;
width: 60px;
height: 60px;
}
.hair_beard_3_red {
background-image: url(spritesmith0.png);
- background-position: -1353px -546px;
+ background-position: -364px -1343px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_red {
background-image: url(spritesmith0.png);
- background-position: -1378px -561px;
+ background-position: -389px -1358px;
width: 60px;
height: 60px;
}
.hair_beard_3_snowy {
background-image: url(spritesmith0.png);
- background-position: -1353px -637px;
+ background-position: -455px -1343px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_snowy {
background-image: url(spritesmith0.png);
- background-position: -1378px -652px;
+ background-position: -480px -1358px;
width: 60px;
height: 60px;
}
.hair_beard_3_white {
background-image: url(spritesmith0.png);
- background-position: -1353px -728px;
+ background-position: -546px -1343px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_white {
background-image: url(spritesmith0.png);
- background-position: -1378px -743px;
+ background-position: -571px -1358px;
width: 60px;
height: 60px;
}
.hair_beard_3_winternight {
background-image: url(spritesmith0.png);
- background-position: -1353px -819px;
+ background-position: -637px -1343px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_winternight {
background-image: url(spritesmith0.png);
- background-position: -1378px -834px;
+ background-position: -662px -1358px;
width: 60px;
height: 60px;
}
.hair_beard_3_winterstar {
background-image: url(spritesmith0.png);
- background-position: -1353px -910px;
+ background-position: -728px -1343px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_winterstar {
background-image: url(spritesmith0.png);
- background-position: -1378px -925px;
+ background-position: -753px -1358px;
width: 60px;
height: 60px;
}
.hair_beard_3_yellow {
background-image: url(spritesmith0.png);
- background-position: -1353px -1001px;
+ background-position: -819px -1343px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_yellow {
background-image: url(spritesmith0.png);
- background-position: -1378px -1016px;
+ background-position: -844px -1358px;
width: 60px;
height: 60px;
}
.hair_beard_3_zombie {
background-image: url(spritesmith0.png);
- background-position: -1353px -1092px;
+ background-position: -910px -1343px;
width: 90px;
height: 90px;
}
.customize-option.hair_beard_3_zombie {
background-image: url(spritesmith0.png);
- background-position: -1378px -1107px;
+ background-position: -935px -1358px;
width: 60px;
height: 60px;
}
.hair_mustache_1_TRUred {
background-image: url(spritesmith0.png);
- background-position: -1353px -1183px;
+ background-position: -1001px -1343px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_TRUred {
background-image: url(spritesmith0.png);
- background-position: -1378px -1198px;
+ background-position: -1026px -1358px;
width: 60px;
height: 60px;
}
.hair_mustache_1_aurora {
background-image: url(spritesmith0.png);
- background-position: 0px -1343px;
+ background-position: -1092px -1343px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_aurora {
background-image: url(spritesmith0.png);
- background-position: -25px -1358px;
+ background-position: -1117px -1358px;
width: 60px;
height: 60px;
}
.hair_mustache_1_black {
background-image: url(spritesmith0.png);
- background-position: -91px -1343px;
+ background-position: -1183px -1343px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_black {
background-image: url(spritesmith0.png);
- background-position: -116px -1358px;
+ background-position: -1208px -1358px;
width: 60px;
height: 60px;
}
.hair_mustache_1_blond {
background-image: url(spritesmith0.png);
- background-position: -182px -1343px;
+ background-position: -1274px -1343px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_blond {
background-image: url(spritesmith0.png);
- background-position: -207px -1358px;
+ background-position: -1299px -1358px;
width: 60px;
height: 60px;
}
.hair_mustache_1_blue {
background-image: url(spritesmith0.png);
- background-position: -273px -1343px;
+ background-position: -1444px 0px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_blue {
background-image: url(spritesmith0.png);
- background-position: -298px -1358px;
+ background-position: -1469px -15px;
width: 60px;
height: 60px;
}
.hair_mustache_1_brown {
background-image: url(spritesmith0.png);
- background-position: -364px -1343px;
+ background-position: -1444px -91px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_brown {
background-image: url(spritesmith0.png);
- background-position: -389px -1358px;
+ background-position: -1469px -106px;
width: 60px;
height: 60px;
}
.hair_mustache_1_candycane {
background-image: url(spritesmith0.png);
- background-position: -455px -1343px;
+ background-position: -1444px -182px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_candycane {
background-image: url(spritesmith0.png);
- background-position: -480px -1358px;
+ background-position: -1469px -197px;
width: 60px;
height: 60px;
}
.hair_mustache_1_candycorn {
background-image: url(spritesmith0.png);
- background-position: -546px -1343px;
+ background-position: -1444px -273px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_candycorn {
background-image: url(spritesmith0.png);
- background-position: -571px -1358px;
+ background-position: -1469px -288px;
width: 60px;
height: 60px;
}
.hair_mustache_1_festive {
background-image: url(spritesmith0.png);
- background-position: -637px -1343px;
+ background-position: -1444px -364px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_festive {
background-image: url(spritesmith0.png);
- background-position: -662px -1358px;
+ background-position: -1469px -379px;
width: 60px;
height: 60px;
}
.hair_mustache_1_frost {
background-image: url(spritesmith0.png);
- background-position: -728px -1343px;
+ background-position: -1444px -455px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_frost {
background-image: url(spritesmith0.png);
- background-position: -753px -1358px;
+ background-position: -1469px -470px;
width: 60px;
height: 60px;
}
.hair_mustache_1_ghostwhite {
background-image: url(spritesmith0.png);
- background-position: -819px -1343px;
+ background-position: -1444px -546px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_ghostwhite {
background-image: url(spritesmith0.png);
- background-position: -844px -1358px;
+ background-position: -1469px -561px;
width: 60px;
height: 60px;
}
.hair_mustache_1_green {
background-image: url(spritesmith0.png);
- background-position: -910px -1343px;
+ background-position: -1444px -637px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_green {
background-image: url(spritesmith0.png);
- background-position: -935px -1358px;
+ background-position: -1469px -652px;
width: 60px;
height: 60px;
}
.hair_mustache_1_halloween {
background-image: url(spritesmith0.png);
- background-position: -1001px -1343px;
+ background-position: -1444px -728px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_halloween {
background-image: url(spritesmith0.png);
- background-position: -1026px -1358px;
+ background-position: -1469px -743px;
width: 60px;
height: 60px;
}
.hair_mustache_1_holly {
background-image: url(spritesmith0.png);
- background-position: -1092px -1343px;
+ background-position: -1444px -819px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_holly {
background-image: url(spritesmith0.png);
- background-position: -1117px -1358px;
+ background-position: -1469px -834px;
width: 60px;
height: 60px;
}
.hair_mustache_1_hollygreen {
background-image: url(spritesmith0.png);
- background-position: -1183px -1343px;
+ background-position: -1444px -910px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_hollygreen {
background-image: url(spritesmith0.png);
- background-position: -1208px -1358px;
+ background-position: -1469px -925px;
width: 60px;
height: 60px;
}
.hair_mustache_1_midnight {
background-image: url(spritesmith0.png);
- background-position: -1274px -1343px;
+ background-position: -1444px -1001px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_midnight {
background-image: url(spritesmith0.png);
- background-position: -1299px -1358px;
+ background-position: -1469px -1016px;
width: 60px;
height: 60px;
}
.hair_mustache_1_pblue {
background-image: url(spritesmith0.png);
- background-position: -1444px 0px;
+ background-position: -1444px -1092px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_pblue {
background-image: url(spritesmith0.png);
- background-position: -1469px -15px;
+ background-position: -1469px -1107px;
width: 60px;
height: 60px;
}
.hair_mustache_1_peppermint {
background-image: url(spritesmith0.png);
- background-position: -1444px -91px;
+ background-position: -1444px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_peppermint {
background-image: url(spritesmith0.png);
- background-position: -1469px -106px;
+ background-position: -1469px -1198px;
width: 60px;
height: 60px;
}
.hair_mustache_1_pgreen {
background-image: url(spritesmith0.png);
- background-position: -1444px -182px;
+ background-position: -1444px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_pgreen {
background-image: url(spritesmith0.png);
- background-position: -1469px -197px;
+ background-position: -1469px -1289px;
width: 60px;
height: 60px;
}
.hair_mustache_1_porange {
background-image: url(spritesmith0.png);
- background-position: -848px -148px;
+ background-position: -708px -592px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_porange {
background-image: url(spritesmith0.png);
- background-position: -873px -163px;
+ background-position: -733px -607px;
width: 60px;
height: 60px;
}
.hair_mustache_1_ppink {
background-image: url(spritesmith0.png);
- background-position: -1444px -364px;
+ background-position: -91px -1434px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_ppink {
background-image: url(spritesmith0.png);
- background-position: -1469px -379px;
+ background-position: -116px -1449px;
width: 60px;
height: 60px;
}
.hair_mustache_1_ppurple {
background-image: url(spritesmith0.png);
- background-position: -1444px -455px;
+ background-position: -182px -1434px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_ppurple {
background-image: url(spritesmith0.png);
- background-position: -1469px -470px;
+ background-position: -207px -1449px;
width: 60px;
height: 60px;
}
.hair_mustache_1_pumpkin {
background-image: url(spritesmith0.png);
- background-position: -1444px -546px;
+ background-position: -273px -1434px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_pumpkin {
background-image: url(spritesmith0.png);
- background-position: -1469px -561px;
+ background-position: -298px -1449px;
width: 60px;
height: 60px;
}
.hair_mustache_1_purple {
background-image: url(spritesmith0.png);
- background-position: -1444px -637px;
+ background-position: -364px -1434px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_purple {
background-image: url(spritesmith0.png);
- background-position: -1469px -652px;
+ background-position: -389px -1449px;
width: 60px;
height: 60px;
}
.hair_mustache_1_pyellow {
background-image: url(spritesmith0.png);
- background-position: -1444px -728px;
+ background-position: -455px -1434px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_pyellow {
background-image: url(spritesmith0.png);
- background-position: -1469px -743px;
+ background-position: -480px -1449px;
width: 60px;
height: 60px;
}
.hair_mustache_1_rainbow {
background-image: url(spritesmith0.png);
- background-position: -1444px -819px;
+ background-position: -546px -1434px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_rainbow {
background-image: url(spritesmith0.png);
- background-position: -1469px -834px;
+ background-position: -571px -1449px;
width: 60px;
height: 60px;
}
.hair_mustache_1_red {
background-image: url(spritesmith0.png);
- background-position: -1444px -910px;
+ background-position: -637px -1434px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_red {
background-image: url(spritesmith0.png);
- background-position: -1469px -925px;
+ background-position: -662px -1449px;
width: 60px;
height: 60px;
}
.hair_mustache_1_snowy {
background-image: url(spritesmith0.png);
- background-position: -1444px -1001px;
+ background-position: -728px -1434px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_snowy {
background-image: url(spritesmith0.png);
- background-position: -1469px -1016px;
+ background-position: -753px -1449px;
width: 60px;
height: 60px;
}
.hair_mustache_1_white {
background-image: url(spritesmith0.png);
- background-position: -1444px -1092px;
+ background-position: -819px -1434px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_white {
background-image: url(spritesmith0.png);
- background-position: -1469px -1107px;
+ background-position: -844px -1449px;
width: 60px;
height: 60px;
}
.hair_mustache_1_winternight {
background-image: url(spritesmith0.png);
- background-position: -1444px -1183px;
+ background-position: -910px -1434px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_winternight {
background-image: url(spritesmith0.png);
- background-position: -1469px -1198px;
+ background-position: -935px -1449px;
width: 60px;
height: 60px;
}
.hair_mustache_1_winterstar {
background-image: url(spritesmith0.png);
- background-position: -1444px -1274px;
+ background-position: -1001px -1434px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_winterstar {
background-image: url(spritesmith0.png);
- background-position: -1469px -1289px;
+ background-position: -1026px -1449px;
width: 60px;
height: 60px;
}
.hair_mustache_1_yellow {
background-image: url(spritesmith0.png);
- background-position: 0px -1434px;
+ background-position: -1092px -1434px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_yellow {
background-image: url(spritesmith0.png);
- background-position: -25px -1449px;
+ background-position: -1117px -1449px;
width: 60px;
height: 60px;
}
.hair_mustache_1_zombie {
background-image: url(spritesmith0.png);
- background-position: -91px -1434px;
+ background-position: -1183px -1434px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_1_zombie {
background-image: url(spritesmith0.png);
- background-position: -116px -1449px;
+ background-position: -1208px -1449px;
width: 60px;
height: 60px;
}
.hair_mustache_2_TRUred {
background-image: url(spritesmith0.png);
- background-position: -182px -1434px;
+ background-position: -1274px -1434px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_TRUred {
background-image: url(spritesmith0.png);
- background-position: -207px -1449px;
+ background-position: -1299px -1449px;
width: 60px;
height: 60px;
}
.hair_mustache_2_aurora {
background-image: url(spritesmith0.png);
- background-position: -273px -1434px;
+ background-position: -1365px -1434px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_aurora {
background-image: url(spritesmith0.png);
- background-position: -298px -1449px;
+ background-position: -1390px -1449px;
width: 60px;
height: 60px;
}
.hair_mustache_2_black {
background-image: url(spritesmith0.png);
- background-position: -364px -1434px;
+ background-position: -1535px 0px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_black {
background-image: url(spritesmith0.png);
- background-position: -389px -1449px;
+ background-position: -1560px -15px;
width: 60px;
height: 60px;
}
.hair_mustache_2_blond {
background-image: url(spritesmith0.png);
- background-position: -455px -1434px;
+ background-position: -1535px -91px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_blond {
background-image: url(spritesmith0.png);
- background-position: -480px -1449px;
+ background-position: -1560px -106px;
width: 60px;
height: 60px;
}
.hair_mustache_2_blue {
background-image: url(spritesmith0.png);
- background-position: -546px -1434px;
+ background-position: -1535px -182px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_blue {
background-image: url(spritesmith0.png);
- background-position: -571px -1449px;
+ background-position: -1560px -197px;
width: 60px;
height: 60px;
}
.hair_mustache_2_brown {
background-image: url(spritesmith0.png);
- background-position: -637px -1434px;
+ background-position: -1535px -273px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_brown {
background-image: url(spritesmith0.png);
- background-position: -662px -1449px;
+ background-position: -1560px -288px;
width: 60px;
height: 60px;
}
.hair_mustache_2_candycane {
background-image: url(spritesmith0.png);
- background-position: -728px -1434px;
+ background-position: -1535px -364px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_candycane {
background-image: url(spritesmith0.png);
- background-position: -753px -1449px;
+ background-position: -1560px -379px;
width: 60px;
height: 60px;
}
.hair_mustache_2_candycorn {
background-image: url(spritesmith0.png);
- background-position: -819px -1434px;
+ background-position: -1535px -455px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_candycorn {
background-image: url(spritesmith0.png);
- background-position: -844px -1449px;
+ background-position: -1560px -470px;
width: 60px;
height: 60px;
}
.hair_mustache_2_festive {
background-image: url(spritesmith0.png);
- background-position: -910px -1434px;
+ background-position: -1535px -546px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_festive {
background-image: url(spritesmith0.png);
- background-position: -935px -1449px;
+ background-position: -1560px -561px;
width: 60px;
height: 60px;
}
.hair_mustache_2_frost {
background-image: url(spritesmith0.png);
- background-position: -1001px -1434px;
+ background-position: -1535px -637px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_frost {
background-image: url(spritesmith0.png);
- background-position: -1026px -1449px;
+ background-position: -1560px -652px;
width: 60px;
height: 60px;
}
.hair_mustache_2_ghostwhite {
background-image: url(spritesmith0.png);
- background-position: -1092px -1434px;
+ background-position: -1535px -728px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_ghostwhite {
background-image: url(spritesmith0.png);
- background-position: -1117px -1449px;
+ background-position: -1560px -743px;
width: 60px;
height: 60px;
}
.hair_mustache_2_green {
background-image: url(spritesmith0.png);
- background-position: -1183px -1434px;
+ background-position: -1535px -819px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_green {
background-image: url(spritesmith0.png);
- background-position: -1208px -1449px;
+ background-position: -1560px -834px;
width: 60px;
height: 60px;
}
.hair_mustache_2_halloween {
background-image: url(spritesmith0.png);
- background-position: -1274px -1434px;
+ background-position: -1535px -910px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_halloween {
background-image: url(spritesmith0.png);
- background-position: -1299px -1449px;
+ background-position: -1560px -925px;
width: 60px;
height: 60px;
}
.hair_mustache_2_holly {
background-image: url(spritesmith0.png);
- background-position: -1365px -1434px;
+ background-position: -1535px -1001px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_holly {
background-image: url(spritesmith0.png);
- background-position: -1390px -1449px;
+ background-position: -1560px -1016px;
width: 60px;
height: 60px;
}
.hair_mustache_2_hollygreen {
background-image: url(spritesmith0.png);
- background-position: -1535px 0px;
+ background-position: -1535px -1092px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_hollygreen {
background-image: url(spritesmith0.png);
- background-position: -1560px -15px;
+ background-position: -1560px -1107px;
width: 60px;
height: 60px;
}
.hair_mustache_2_midnight {
background-image: url(spritesmith0.png);
- background-position: -1535px -91px;
+ background-position: -1535px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_midnight {
background-image: url(spritesmith0.png);
- background-position: -1560px -106px;
+ background-position: -1560px -1198px;
width: 60px;
height: 60px;
}
.hair_mustache_2_pblue {
background-image: url(spritesmith0.png);
- background-position: -1535px -182px;
+ background-position: -1535px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_pblue {
background-image: url(spritesmith0.png);
- background-position: -1560px -197px;
+ background-position: -1560px -1289px;
width: 60px;
height: 60px;
}
.hair_mustache_2_peppermint {
background-image: url(spritesmith0.png);
- background-position: -1535px -273px;
+ background-position: -1535px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_peppermint {
background-image: url(spritesmith0.png);
- background-position: -1560px -288px;
+ background-position: -1560px -1380px;
width: 60px;
height: 60px;
}
.hair_mustache_2_pgreen {
background-image: url(spritesmith0.png);
- background-position: -1535px -364px;
+ background-position: 0px -1525px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_pgreen {
background-image: url(spritesmith0.png);
- background-position: -1560px -379px;
+ background-position: -25px -1540px;
width: 60px;
height: 60px;
}
.hair_mustache_2_porange {
background-image: url(spritesmith0.png);
- background-position: -1535px -455px;
+ background-position: -91px -1525px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_porange {
background-image: url(spritesmith0.png);
- background-position: -1560px -470px;
+ background-position: -116px -1540px;
width: 60px;
height: 60px;
}
.hair_mustache_2_ppink {
background-image: url(spritesmith0.png);
- background-position: -1535px -546px;
+ background-position: -182px -1525px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_ppink {
background-image: url(spritesmith0.png);
- background-position: -1560px -561px;
+ background-position: -207px -1540px;
width: 60px;
height: 60px;
}
.hair_mustache_2_ppurple {
background-image: url(spritesmith0.png);
- background-position: -1535px -637px;
+ background-position: -273px -1525px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_ppurple {
background-image: url(spritesmith0.png);
- background-position: -1560px -652px;
+ background-position: -298px -1540px;
width: 60px;
height: 60px;
}
.hair_mustache_2_pumpkin {
background-image: url(spritesmith0.png);
- background-position: -1535px -728px;
+ background-position: -364px -1525px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_pumpkin {
background-image: url(spritesmith0.png);
- background-position: -1560px -743px;
+ background-position: -389px -1540px;
width: 60px;
height: 60px;
}
.hair_mustache_2_purple {
background-image: url(spritesmith0.png);
- background-position: -1535px -819px;
+ background-position: -455px -1525px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_purple {
background-image: url(spritesmith0.png);
- background-position: -1560px -834px;
+ background-position: -480px -1540px;
width: 60px;
height: 60px;
}
.hair_mustache_2_pyellow {
background-image: url(spritesmith0.png);
- background-position: -1535px -910px;
+ background-position: -546px -1525px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_pyellow {
background-image: url(spritesmith0.png);
- background-position: -1560px -925px;
+ background-position: -571px -1540px;
width: 60px;
height: 60px;
}
.hair_mustache_2_rainbow {
background-image: url(spritesmith0.png);
- background-position: -1535px -1001px;
+ background-position: -637px -1525px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_rainbow {
background-image: url(spritesmith0.png);
- background-position: -1560px -1016px;
+ background-position: -662px -1540px;
width: 60px;
height: 60px;
}
.hair_mustache_2_red {
background-image: url(spritesmith0.png);
- background-position: -1535px -1092px;
+ background-position: -728px -1525px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_red {
background-image: url(spritesmith0.png);
- background-position: -1560px -1107px;
+ background-position: -753px -1540px;
width: 60px;
height: 60px;
}
.hair_mustache_2_snowy {
background-image: url(spritesmith0.png);
- background-position: -1535px -1183px;
+ background-position: -819px -1525px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_snowy {
background-image: url(spritesmith0.png);
- background-position: -1560px -1198px;
+ background-position: -844px -1540px;
width: 60px;
height: 60px;
}
.hair_mustache_2_white {
background-image: url(spritesmith0.png);
- background-position: -1535px -1274px;
+ background-position: -910px -1525px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_white {
background-image: url(spritesmith0.png);
- background-position: -1560px -1289px;
+ background-position: -935px -1540px;
width: 60px;
height: 60px;
}
.hair_mustache_2_winternight {
background-image: url(spritesmith0.png);
- background-position: -1535px -1365px;
+ background-position: -1001px -1525px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_winternight {
background-image: url(spritesmith0.png);
- background-position: -1560px -1380px;
+ background-position: -1026px -1540px;
width: 60px;
height: 60px;
}
.hair_mustache_2_winterstar {
background-image: url(spritesmith0.png);
- background-position: 0px -1525px;
+ background-position: -1092px -1525px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_winterstar {
background-image: url(spritesmith0.png);
- background-position: -25px -1540px;
+ background-position: -1117px -1540px;
width: 60px;
height: 60px;
}
.hair_mustache_2_yellow {
background-image: url(spritesmith0.png);
- background-position: -91px -1525px;
+ background-position: -1183px -1525px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_yellow {
background-image: url(spritesmith0.png);
- background-position: -116px -1540px;
+ background-position: -1208px -1540px;
width: 60px;
height: 60px;
}
.hair_mustache_2_zombie {
background-image: url(spritesmith0.png);
- background-position: -182px -1525px;
+ background-position: -1274px -1525px;
width: 90px;
height: 90px;
}
.customize-option.hair_mustache_2_zombie {
background-image: url(spritesmith0.png);
- background-position: -207px -1540px;
+ background-position: -1299px -1540px;
width: 60px;
height: 60px;
}
.hair_flower_1 {
background-image: url(spritesmith0.png);
- background-position: -273px -1525px;
+ background-position: -1365px -1525px;
width: 90px;
height: 90px;
}
.customize-option.hair_flower_1 {
background-image: url(spritesmith0.png);
- background-position: -298px -1540px;
+ background-position: -1390px -1540px;
width: 60px;
height: 60px;
}
.hair_flower_2 {
background-image: url(spritesmith0.png);
- background-position: -364px -1525px;
+ background-position: -1456px -1525px;
width: 90px;
height: 90px;
}
.customize-option.hair_flower_2 {
background-image: url(spritesmith0.png);
- background-position: -389px -1540px;
+ background-position: -1481px -1540px;
width: 60px;
height: 60px;
}
.hair_flower_3 {
background-image: url(spritesmith0.png);
- background-position: -455px -1525px;
+ background-position: -1626px 0px;
width: 90px;
height: 90px;
}
.customize-option.hair_flower_3 {
background-image: url(spritesmith0.png);
- background-position: -480px -1540px;
+ background-position: -1651px -15px;
width: 60px;
height: 60px;
}
.hair_flower_4 {
background-image: url(spritesmith0.png);
- background-position: -546px -1525px;
+ background-position: -1626px -91px;
width: 90px;
height: 90px;
}
.customize-option.hair_flower_4 {
background-image: url(spritesmith0.png);
- background-position: -571px -1540px;
+ background-position: -1651px -106px;
width: 60px;
height: 60px;
}
.hair_flower_5 {
background-image: url(spritesmith0.png);
- background-position: -637px -1525px;
+ background-position: -1626px -182px;
width: 90px;
height: 90px;
}
.customize-option.hair_flower_5 {
background-image: url(spritesmith0.png);
- background-position: -662px -1540px;
+ background-position: -1651px -197px;
width: 60px;
height: 60px;
}
.hair_flower_6 {
background-image: url(spritesmith0.png);
- background-position: -728px -1525px;
+ background-position: -1626px -273px;
width: 90px;
height: 90px;
}
.customize-option.hair_flower_6 {
background-image: url(spritesmith0.png);
- background-position: -753px -1540px;
+ background-position: -1651px -288px;
width: 60px;
height: 60px;
}
.hair_bangs_1_TRUred {
background-image: url(spritesmith0.png);
- background-position: -819px -1525px;
+ background-position: -1626px -364px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_TRUred {
background-image: url(spritesmith0.png);
- background-position: -844px -1540px;
+ background-position: -1651px -379px;
width: 60px;
height: 60px;
}
.hair_bangs_1_aurora {
background-image: url(spritesmith0.png);
- background-position: -910px -1525px;
+ background-position: -1626px -455px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_aurora {
background-image: url(spritesmith0.png);
- background-position: -935px -1540px;
+ background-position: -1651px -470px;
width: 60px;
height: 60px;
}
.hair_bangs_1_black {
background-image: url(spritesmith0.png);
- background-position: -1001px -1525px;
+ background-position: -1626px -546px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_black {
background-image: url(spritesmith0.png);
- background-position: -1026px -1540px;
+ background-position: -1651px -561px;
width: 60px;
height: 60px;
}
.hair_bangs_1_blond {
background-image: url(spritesmith0.png);
- background-position: -1092px -1525px;
+ background-position: -1626px -637px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_blond {
background-image: url(spritesmith0.png);
- background-position: -1117px -1540px;
+ background-position: -1651px -652px;
width: 60px;
height: 60px;
}
.hair_bangs_1_blue {
background-image: url(spritesmith0.png);
- background-position: -1183px -1525px;
+ background-position: -1626px -728px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_blue {
background-image: url(spritesmith0.png);
- background-position: -1208px -1540px;
+ background-position: -1651px -743px;
width: 60px;
height: 60px;
}
.hair_bangs_1_brown {
background-image: url(spritesmith0.png);
- background-position: -1274px -1525px;
+ background-position: -1626px -819px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_brown {
background-image: url(spritesmith0.png);
- background-position: -1299px -1540px;
+ background-position: -1651px -834px;
width: 60px;
height: 60px;
}
.hair_bangs_1_candycane {
background-image: url(spritesmith0.png);
- background-position: -1365px -1525px;
+ background-position: -1626px -910px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_candycane {
background-image: url(spritesmith0.png);
- background-position: -1390px -1540px;
+ background-position: -1651px -925px;
width: 60px;
height: 60px;
}
.hair_bangs_1_candycorn {
background-image: url(spritesmith0.png);
- background-position: -1456px -1525px;
+ background-position: -1626px -1001px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_candycorn {
background-image: url(spritesmith0.png);
- background-position: -1481px -1540px;
+ background-position: -1651px -1016px;
width: 60px;
height: 60px;
}
.hair_bangs_1_festive {
background-image: url(spritesmith0.png);
- background-position: -1626px 0px;
+ background-position: -1626px -1092px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_festive {
background-image: url(spritesmith0.png);
- background-position: -1651px -15px;
+ background-position: -1651px -1107px;
width: 60px;
height: 60px;
}
.hair_bangs_1_frost {
background-image: url(spritesmith0.png);
- background-position: -1626px -91px;
+ background-position: -1626px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_frost {
background-image: url(spritesmith0.png);
- background-position: -1651px -106px;
+ background-position: -1651px -1198px;
width: 60px;
height: 60px;
}
.hair_bangs_1_ghostwhite {
background-image: url(spritesmith0.png);
- background-position: -1626px -182px;
+ background-position: -1626px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_ghostwhite {
background-image: url(spritesmith0.png);
- background-position: -1651px -197px;
+ background-position: -1651px -1289px;
width: 60px;
height: 60px;
}
.hair_bangs_1_green {
background-image: url(spritesmith0.png);
- background-position: -1626px -273px;
+ background-position: -1626px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_green {
background-image: url(spritesmith0.png);
- background-position: -1651px -288px;
+ background-position: -1651px -1380px;
width: 60px;
height: 60px;
}
.hair_bangs_1_halloween {
background-image: url(spritesmith0.png);
- background-position: -1626px -364px;
+ background-position: -1626px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_halloween {
background-image: url(spritesmith0.png);
- background-position: -1651px -379px;
+ background-position: -1651px -1471px;
width: 60px;
height: 60px;
}
.hair_bangs_1_holly {
background-image: url(spritesmith0.png);
- background-position: -1626px -455px;
+ background-position: 0px -1616px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_holly {
background-image: url(spritesmith0.png);
- background-position: -1651px -470px;
+ background-position: -25px -1631px;
width: 60px;
height: 60px;
}
.hair_bangs_1_hollygreen {
background-image: url(spritesmith0.png);
- background-position: -1626px -546px;
+ background-position: -91px -1616px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_hollygreen {
background-image: url(spritesmith0.png);
- background-position: -1651px -561px;
+ background-position: -116px -1631px;
width: 60px;
height: 60px;
}
.hair_bangs_1_midnight {
background-image: url(spritesmith0.png);
- background-position: -1626px -637px;
+ background-position: -182px -1616px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_midnight {
background-image: url(spritesmith0.png);
- background-position: -1651px -652px;
+ background-position: -207px -1631px;
width: 60px;
height: 60px;
}
.hair_bangs_1_pblue {
background-image: url(spritesmith0.png);
- background-position: -1626px -728px;
+ background-position: -273px -1616px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_pblue {
background-image: url(spritesmith0.png);
- background-position: -1651px -743px;
+ background-position: -298px -1631px;
width: 60px;
height: 60px;
}
.hair_bangs_1_pblue2 {
background-image: url(spritesmith0.png);
- background-position: -1626px -819px;
+ background-position: -364px -1616px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_pblue2 {
background-image: url(spritesmith0.png);
- background-position: -1651px -834px;
+ background-position: -389px -1631px;
width: 60px;
height: 60px;
}
.hair_bangs_1_peppermint {
background-image: url(spritesmith0.png);
- background-position: -1626px -910px;
+ background-position: -455px -1616px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_peppermint {
background-image: url(spritesmith0.png);
- background-position: -1651px -925px;
+ background-position: -480px -1631px;
width: 60px;
height: 60px;
}
.hair_bangs_1_pgreen {
background-image: url(spritesmith0.png);
- background-position: -1626px -1001px;
+ background-position: -546px -1616px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_pgreen {
background-image: url(spritesmith0.png);
- background-position: -1651px -1016px;
+ background-position: -571px -1631px;
width: 60px;
height: 60px;
}
.hair_bangs_1_pgreen2 {
background-image: url(spritesmith0.png);
- background-position: -1626px -1092px;
+ background-position: -637px -1616px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_pgreen2 {
background-image: url(spritesmith0.png);
- background-position: -1651px -1107px;
+ background-position: -662px -1631px;
width: 60px;
height: 60px;
}
.hair_bangs_1_porange {
background-image: url(spritesmith0.png);
- background-position: -1626px -1183px;
+ background-position: -728px -1616px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_porange {
background-image: url(spritesmith0.png);
- background-position: -1651px -1198px;
+ background-position: -753px -1631px;
width: 60px;
height: 60px;
}
.hair_bangs_1_porange2 {
background-image: url(spritesmith0.png);
- background-position: -1626px -1274px;
+ background-position: -819px -1616px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_porange2 {
background-image: url(spritesmith0.png);
- background-position: -1651px -1289px;
+ background-position: -844px -1631px;
width: 60px;
height: 60px;
}
.hair_bangs_1_ppink {
background-image: url(spritesmith0.png);
- background-position: -1626px -1365px;
+ background-position: -910px -1616px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_ppink {
background-image: url(spritesmith0.png);
- background-position: -1651px -1380px;
+ background-position: -935px -1631px;
width: 60px;
height: 60px;
}
.hair_bangs_1_ppink2 {
background-image: url(spritesmith0.png);
- background-position: -1626px -1456px;
+ background-position: -1001px -1616px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_ppink2 {
background-image: url(spritesmith0.png);
- background-position: -1651px -1471px;
+ background-position: -1026px -1631px;
width: 60px;
height: 60px;
}
.hair_bangs_1_ppurple {
background-image: url(spritesmith0.png);
- background-position: 0px -1616px;
+ background-position: -1092px -1616px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_ppurple {
background-image: url(spritesmith0.png);
- background-position: -25px -1631px;
+ background-position: -1117px -1631px;
width: 60px;
height: 60px;
}
.hair_bangs_1_ppurple2 {
background-image: url(spritesmith0.png);
- background-position: -91px -1616px;
+ background-position: -1183px -1616px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_ppurple2 {
background-image: url(spritesmith0.png);
- background-position: -116px -1631px;
+ background-position: -1208px -1631px;
width: 60px;
height: 60px;
}
.hair_bangs_1_pumpkin {
background-image: url(spritesmith0.png);
- background-position: -182px -1616px;
+ background-position: -1274px -1616px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_pumpkin {
background-image: url(spritesmith0.png);
- background-position: -207px -1631px;
+ background-position: -1299px -1631px;
width: 60px;
height: 60px;
}
.hair_bangs_1_purple {
background-image: url(spritesmith0.png);
- background-position: -273px -1616px;
+ background-position: -1365px -1616px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_purple {
background-image: url(spritesmith0.png);
- background-position: -298px -1631px;
+ background-position: -1390px -1631px;
width: 60px;
height: 60px;
}
.hair_bangs_1_pyellow {
background-image: url(spritesmith0.png);
- background-position: -364px -1616px;
+ background-position: -1456px -1616px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_pyellow {
background-image: url(spritesmith0.png);
- background-position: -389px -1631px;
+ background-position: -1481px -1631px;
width: 60px;
height: 60px;
}
.hair_bangs_1_pyellow2 {
background-image: url(spritesmith0.png);
- background-position: -455px -1616px;
+ background-position: -1547px -1616px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_pyellow2 {
background-image: url(spritesmith0.png);
- background-position: -480px -1631px;
+ background-position: -1572px -1631px;
width: 60px;
height: 60px;
}
.hair_bangs_1_rainbow {
background-image: url(spritesmith0.png);
- background-position: -546px -1616px;
+ background-position: -1717px 0px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_rainbow {
background-image: url(spritesmith0.png);
- background-position: -571px -1631px;
+ background-position: -1742px -15px;
width: 60px;
height: 60px;
}
.hair_bangs_1_red {
background-image: url(spritesmith0.png);
- background-position: -637px -1616px;
+ background-position: -1717px -91px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_red {
background-image: url(spritesmith0.png);
- background-position: -662px -1631px;
+ background-position: -1742px -106px;
width: 60px;
height: 60px;
}
.hair_bangs_1_snowy {
background-image: url(spritesmith0.png);
- background-position: -728px -1616px;
+ background-position: -1717px -182px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_snowy {
background-image: url(spritesmith0.png);
- background-position: -753px -1631px;
+ background-position: -1742px -197px;
width: 60px;
height: 60px;
}
.hair_bangs_1_white {
background-image: url(spritesmith0.png);
- background-position: -819px -1616px;
+ background-position: -1717px -273px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_white {
background-image: url(spritesmith0.png);
- background-position: -844px -1631px;
+ background-position: -1742px -288px;
width: 60px;
height: 60px;
}
.hair_bangs_1_winternight {
background-image: url(spritesmith0.png);
- background-position: -910px -1616px;
+ background-position: -1717px -364px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_winternight {
background-image: url(spritesmith0.png);
- background-position: -935px -1631px;
+ background-position: -1742px -379px;
width: 60px;
height: 60px;
}
.hair_bangs_1_winterstar {
background-image: url(spritesmith0.png);
- background-position: -1001px -1616px;
+ background-position: -1717px -455px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_winterstar {
background-image: url(spritesmith0.png);
- background-position: -1026px -1631px;
+ background-position: -1742px -470px;
width: 60px;
height: 60px;
}
.hair_bangs_1_yellow {
background-image: url(spritesmith0.png);
- background-position: -1092px -1616px;
+ background-position: -1717px -546px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_yellow {
background-image: url(spritesmith0.png);
- background-position: -1117px -1631px;
+ background-position: -1742px -561px;
width: 60px;
height: 60px;
}
.hair_bangs_1_zombie {
background-image: url(spritesmith0.png);
- background-position: -1183px -1616px;
+ background-position: -1717px -637px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_1_zombie {
background-image: url(spritesmith0.png);
- background-position: -1208px -1631px;
+ background-position: -1742px -652px;
width: 60px;
height: 60px;
}
.hair_bangs_2_TRUred {
background-image: url(spritesmith0.png);
- background-position: -1274px -1616px;
+ background-position: -1717px -728px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_TRUred {
background-image: url(spritesmith0.png);
- background-position: -1299px -1631px;
+ background-position: -1742px -743px;
width: 60px;
height: 60px;
}
.hair_bangs_2_aurora {
background-image: url(spritesmith0.png);
- background-position: -1365px -1616px;
+ background-position: -1717px -819px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_aurora {
background-image: url(spritesmith0.png);
- background-position: -1390px -1631px;
+ background-position: -1742px -834px;
width: 60px;
height: 60px;
}
.hair_bangs_2_black {
background-image: url(spritesmith0.png);
- background-position: -1456px -1616px;
+ background-position: -1717px -910px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_black {
background-image: url(spritesmith0.png);
- background-position: -1481px -1631px;
+ background-position: -1742px -925px;
width: 60px;
height: 60px;
}
.hair_bangs_2_blond {
background-image: url(spritesmith0.png);
- background-position: -1547px -1616px;
+ background-position: -1717px -1001px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_blond {
background-image: url(spritesmith0.png);
- background-position: -1572px -1631px;
+ background-position: -1742px -1016px;
width: 60px;
height: 60px;
}
.hair_bangs_2_blue {
background-image: url(spritesmith0.png);
- background-position: -1717px 0px;
+ background-position: -1717px -1092px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_blue {
background-image: url(spritesmith0.png);
- background-position: -1742px -15px;
+ background-position: -1742px -1107px;
width: 60px;
height: 60px;
}
.hair_bangs_2_brown {
background-image: url(spritesmith0.png);
- background-position: -1717px -91px;
+ background-position: -1717px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_brown {
background-image: url(spritesmith0.png);
- background-position: -1742px -106px;
+ background-position: -1742px -1198px;
width: 60px;
height: 60px;
}
.hair_bangs_2_candycane {
background-image: url(spritesmith0.png);
- background-position: -1717px -182px;
+ background-position: -1717px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_candycane {
background-image: url(spritesmith0.png);
- background-position: -1742px -197px;
+ background-position: -1742px -1289px;
width: 60px;
height: 60px;
}
.hair_bangs_2_candycorn {
background-image: url(spritesmith0.png);
- background-position: -1717px -273px;
+ background-position: -1717px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_candycorn {
background-image: url(spritesmith0.png);
- background-position: -1742px -288px;
+ background-position: -1742px -1380px;
width: 60px;
height: 60px;
}
.hair_bangs_2_festive {
background-image: url(spritesmith0.png);
- background-position: -1717px -364px;
+ background-position: -1717px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_festive {
background-image: url(spritesmith0.png);
- background-position: -1742px -379px;
+ background-position: -1742px -1471px;
width: 60px;
height: 60px;
}
.hair_bangs_2_frost {
background-image: url(spritesmith0.png);
- background-position: -1717px -455px;
+ background-position: -1717px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_frost {
background-image: url(spritesmith0.png);
- background-position: -1742px -470px;
+ background-position: -1742px -1562px;
width: 60px;
height: 60px;
}
.hair_bangs_2_ghostwhite {
background-image: url(spritesmith0.png);
- background-position: -1717px -546px;
+ background-position: 0px -1707px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_ghostwhite {
background-image: url(spritesmith0.png);
- background-position: -1742px -561px;
+ background-position: -25px -1722px;
width: 60px;
height: 60px;
}
.hair_bangs_2_green {
background-image: url(spritesmith0.png);
- background-position: -1717px -637px;
+ background-position: -91px -1707px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_green {
background-image: url(spritesmith0.png);
- background-position: -1742px -652px;
+ background-position: -116px -1722px;
width: 60px;
height: 60px;
}
.hair_bangs_2_halloween {
background-image: url(spritesmith0.png);
- background-position: -1717px -728px;
+ background-position: -182px -1707px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_halloween {
background-image: url(spritesmith0.png);
- background-position: -1742px -743px;
+ background-position: -207px -1722px;
width: 60px;
height: 60px;
}
.hair_bangs_2_holly {
background-image: url(spritesmith0.png);
- background-position: -1717px -819px;
+ background-position: -273px -1707px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_holly {
background-image: url(spritesmith0.png);
- background-position: -1742px -834px;
+ background-position: -298px -1722px;
width: 60px;
height: 60px;
}
.hair_bangs_2_hollygreen {
background-image: url(spritesmith0.png);
- background-position: -1717px -910px;
+ background-position: -364px -1707px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_hollygreen {
background-image: url(spritesmith0.png);
- background-position: -1742px -925px;
+ background-position: -389px -1722px;
width: 60px;
height: 60px;
}
.hair_bangs_2_midnight {
background-image: url(spritesmith0.png);
- background-position: -1717px -1001px;
+ background-position: -455px -1707px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_midnight {
background-image: url(spritesmith0.png);
- background-position: -1742px -1016px;
+ background-position: -480px -1722px;
width: 60px;
height: 60px;
}
.hair_bangs_2_pblue {
background-image: url(spritesmith0.png);
- background-position: -1717px -1092px;
+ background-position: -546px -1707px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_pblue {
background-image: url(spritesmith0.png);
- background-position: -1742px -1107px;
+ background-position: -571px -1722px;
width: 60px;
height: 60px;
}
.hair_bangs_2_pblue2 {
background-image: url(spritesmith0.png);
- background-position: -1717px -1183px;
+ background-position: -637px -1707px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_pblue2 {
background-image: url(spritesmith0.png);
- background-position: -1742px -1198px;
+ background-position: -662px -1722px;
width: 60px;
height: 60px;
}
.hair_bangs_2_peppermint {
background-image: url(spritesmith0.png);
- background-position: -1717px -1274px;
+ background-position: -728px -1707px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_peppermint {
background-image: url(spritesmith0.png);
- background-position: -1742px -1289px;
+ background-position: -753px -1722px;
width: 60px;
height: 60px;
}
.hair_bangs_2_pgreen {
background-image: url(spritesmith0.png);
- background-position: -1717px -1365px;
+ background-position: -819px -1707px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_pgreen {
background-image: url(spritesmith0.png);
- background-position: -1742px -1380px;
+ background-position: -844px -1722px;
width: 60px;
height: 60px;
}
.hair_bangs_2_pgreen2 {
background-image: url(spritesmith0.png);
- background-position: -1717px -1456px;
+ background-position: -910px -1707px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_pgreen2 {
background-image: url(spritesmith0.png);
- background-position: -1742px -1471px;
+ background-position: -935px -1722px;
width: 60px;
height: 60px;
}
.hair_bangs_2_porange {
background-image: url(spritesmith0.png);
- background-position: -1717px -1547px;
+ background-position: -1001px -1707px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_porange {
background-image: url(spritesmith0.png);
- background-position: -1742px -1562px;
+ background-position: -1026px -1722px;
width: 60px;
height: 60px;
}
.hair_bangs_2_porange2 {
background-image: url(spritesmith0.png);
- background-position: 0px -1707px;
+ background-position: -1092px -1707px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_porange2 {
background-image: url(spritesmith0.png);
- background-position: -25px -1722px;
+ background-position: -1117px -1722px;
width: 60px;
height: 60px;
}
.hair_bangs_2_ppink {
background-image: url(spritesmith0.png);
- background-position: -91px -1707px;
+ background-position: -1183px -1707px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_ppink {
background-image: url(spritesmith0.png);
- background-position: -116px -1722px;
+ background-position: -1208px -1722px;
width: 60px;
height: 60px;
}
.hair_bangs_2_ppink2 {
background-image: url(spritesmith0.png);
- background-position: -182px -1707px;
+ background-position: -1274px -1707px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_ppink2 {
background-image: url(spritesmith0.png);
- background-position: -207px -1722px;
+ background-position: -1299px -1722px;
width: 60px;
height: 60px;
}
.hair_bangs_2_ppurple {
background-image: url(spritesmith0.png);
- background-position: -273px -1707px;
+ background-position: -1365px -1707px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_ppurple {
background-image: url(spritesmith0.png);
- background-position: -298px -1722px;
+ background-position: -1390px -1722px;
width: 60px;
height: 60px;
}
.hair_bangs_2_ppurple2 {
background-image: url(spritesmith0.png);
- background-position: -364px -1707px;
+ background-position: -1456px -1707px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_ppurple2 {
background-image: url(spritesmith0.png);
- background-position: -389px -1722px;
+ background-position: -1481px -1722px;
width: 60px;
height: 60px;
}
.hair_bangs_2_pumpkin {
background-image: url(spritesmith0.png);
- background-position: -455px -1707px;
+ background-position: -1547px -1707px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_pumpkin {
background-image: url(spritesmith0.png);
- background-position: -480px -1722px;
+ background-position: -1572px -1722px;
width: 60px;
height: 60px;
}
.hair_bangs_2_purple {
background-image: url(spritesmith0.png);
- background-position: -546px -1707px;
+ background-position: -1638px -1707px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_purple {
background-image: url(spritesmith0.png);
- background-position: -571px -1722px;
+ background-position: -1663px -1722px;
width: 60px;
height: 60px;
}
.hair_bangs_2_pyellow {
background-image: url(spritesmith0.png);
- background-position: -637px -1707px;
+ background-position: -1808px 0px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_pyellow {
background-image: url(spritesmith0.png);
- background-position: -662px -1722px;
+ background-position: -1833px -15px;
width: 60px;
height: 60px;
}
.hair_bangs_2_pyellow2 {
background-image: url(spritesmith0.png);
- background-position: -728px -1707px;
+ background-position: -1808px -91px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_pyellow2 {
background-image: url(spritesmith0.png);
- background-position: -753px -1722px;
+ background-position: -1833px -106px;
width: 60px;
height: 60px;
}
.hair_bangs_2_rainbow {
background-image: url(spritesmith0.png);
- background-position: -819px -1707px;
+ background-position: -1808px -182px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_rainbow {
background-image: url(spritesmith0.png);
- background-position: -844px -1722px;
+ background-position: -1833px -197px;
width: 60px;
height: 60px;
}
.hair_bangs_2_red {
background-image: url(spritesmith0.png);
- background-position: -910px -1707px;
+ background-position: -1808px -273px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_red {
background-image: url(spritesmith0.png);
- background-position: -935px -1722px;
+ background-position: -1833px -288px;
width: 60px;
height: 60px;
}
.hair_bangs_2_snowy {
background-image: url(spritesmith0.png);
- background-position: -1001px -1707px;
+ background-position: -1808px -364px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_snowy {
background-image: url(spritesmith0.png);
- background-position: -1026px -1722px;
+ background-position: -1833px -379px;
width: 60px;
height: 60px;
}
.hair_bangs_2_white {
background-image: url(spritesmith0.png);
- background-position: -1092px -1707px;
+ background-position: -1808px -455px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_white {
background-image: url(spritesmith0.png);
- background-position: -1117px -1722px;
+ background-position: -1833px -470px;
width: 60px;
height: 60px;
}
.hair_bangs_2_winternight {
background-image: url(spritesmith0.png);
- background-position: -1183px -1707px;
+ background-position: -1808px -546px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_winternight {
background-image: url(spritesmith0.png);
- background-position: -1208px -1722px;
+ background-position: -1833px -561px;
width: 60px;
height: 60px;
}
.hair_bangs_2_winterstar {
background-image: url(spritesmith0.png);
- background-position: -1274px -1707px;
+ background-position: -1808px -637px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_winterstar {
background-image: url(spritesmith0.png);
- background-position: -1299px -1722px;
+ background-position: -1833px -652px;
width: 60px;
height: 60px;
}
.hair_bangs_2_yellow {
background-image: url(spritesmith0.png);
- background-position: -1365px -1707px;
+ background-position: -1808px -728px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_yellow {
background-image: url(spritesmith0.png);
- background-position: -1390px -1722px;
+ background-position: -1833px -743px;
width: 60px;
height: 60px;
}
.hair_bangs_2_zombie {
background-image: url(spritesmith0.png);
- background-position: -1456px -1707px;
+ background-position: -1808px -819px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_2_zombie {
background-image: url(spritesmith0.png);
- background-position: -1481px -1722px;
+ background-position: -1833px -834px;
width: 60px;
height: 60px;
}
.hair_bangs_3_TRUred {
background-image: url(spritesmith0.png);
- background-position: -1547px -1707px;
+ background-position: -1808px -910px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_TRUred {
background-image: url(spritesmith0.png);
- background-position: -1572px -1722px;
+ background-position: -1833px -925px;
width: 60px;
height: 60px;
}
.hair_bangs_3_aurora {
background-image: url(spritesmith0.png);
- background-position: -1638px -1707px;
+ background-position: -1808px -1001px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_aurora {
background-image: url(spritesmith0.png);
- background-position: -1663px -1722px;
+ background-position: -1833px -1016px;
width: 60px;
height: 60px;
}
.hair_bangs_3_black {
background-image: url(spritesmith0.png);
- background-position: -1808px 0px;
+ background-position: -1808px -1092px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_black {
background-image: url(spritesmith0.png);
- background-position: -1833px -15px;
+ background-position: -1833px -1107px;
width: 60px;
height: 60px;
}
.hair_bangs_3_blond {
background-image: url(spritesmith0.png);
- background-position: -1808px -91px;
+ background-position: -1808px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_blond {
background-image: url(spritesmith0.png);
- background-position: -1833px -106px;
+ background-position: -1833px -1198px;
width: 60px;
height: 60px;
}
.hair_bangs_3_blue {
background-image: url(spritesmith0.png);
- background-position: -1808px -182px;
+ background-position: -1808px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_blue {
background-image: url(spritesmith0.png);
- background-position: -1833px -197px;
+ background-position: -1833px -1289px;
width: 60px;
height: 60px;
}
.hair_bangs_3_brown {
background-image: url(spritesmith0.png);
- background-position: -1808px -273px;
+ background-position: -1808px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_brown {
background-image: url(spritesmith0.png);
- background-position: -1833px -288px;
+ background-position: -1833px -1380px;
width: 60px;
height: 60px;
}
.hair_bangs_3_candycane {
background-image: url(spritesmith0.png);
- background-position: -1808px -364px;
+ background-position: -1808px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_candycane {
background-image: url(spritesmith0.png);
- background-position: -1833px -379px;
+ background-position: -1833px -1471px;
width: 60px;
height: 60px;
}
.hair_bangs_3_candycorn {
background-image: url(spritesmith0.png);
- background-position: -1808px -455px;
+ background-position: -1808px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_candycorn {
background-image: url(spritesmith0.png);
- background-position: -1833px -470px;
+ background-position: -1833px -1562px;
width: 60px;
height: 60px;
}
.hair_bangs_3_festive {
background-image: url(spritesmith0.png);
- background-position: -1808px -546px;
+ background-position: -1808px -1638px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_festive {
background-image: url(spritesmith0.png);
- background-position: -1833px -561px;
+ background-position: -1833px -1653px;
width: 60px;
height: 60px;
}
.hair_bangs_3_frost {
background-image: url(spritesmith0.png);
- background-position: -1808px -637px;
+ background-position: 0px -1798px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_frost {
background-image: url(spritesmith0.png);
- background-position: -1833px -652px;
+ background-position: -25px -1813px;
width: 60px;
height: 60px;
}
.hair_bangs_3_ghostwhite {
background-image: url(spritesmith0.png);
- background-position: -1808px -728px;
+ background-position: -91px -1798px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_ghostwhite {
background-image: url(spritesmith0.png);
- background-position: -1833px -743px;
+ background-position: -116px -1813px;
width: 60px;
height: 60px;
}
.hair_bangs_3_green {
background-image: url(spritesmith0.png);
- background-position: -1808px -819px;
+ background-position: -182px -1798px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_green {
background-image: url(spritesmith0.png);
- background-position: -1833px -834px;
+ background-position: -207px -1813px;
width: 60px;
height: 60px;
}
.hair_bangs_3_halloween {
background-image: url(spritesmith0.png);
- background-position: -1808px -910px;
+ background-position: -273px -1798px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_halloween {
background-image: url(spritesmith0.png);
- background-position: -1833px -925px;
+ background-position: -298px -1813px;
width: 60px;
height: 60px;
}
.hair_bangs_3_holly {
background-image: url(spritesmith0.png);
- background-position: -1808px -1001px;
+ background-position: -364px -1798px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_holly {
background-image: url(spritesmith0.png);
- background-position: -1833px -1016px;
+ background-position: -389px -1813px;
width: 60px;
height: 60px;
}
.hair_bangs_3_hollygreen {
background-image: url(spritesmith0.png);
- background-position: -1808px -1092px;
+ background-position: -455px -1798px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_hollygreen {
background-image: url(spritesmith0.png);
- background-position: -1833px -1107px;
+ background-position: -480px -1813px;
width: 60px;
height: 60px;
}
.hair_bangs_3_midnight {
background-image: url(spritesmith0.png);
- background-position: -1808px -1183px;
+ background-position: -546px -1798px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_midnight {
background-image: url(spritesmith0.png);
- background-position: -1833px -1198px;
+ background-position: -571px -1813px;
width: 60px;
height: 60px;
}
.hair_bangs_3_pblue {
background-image: url(spritesmith0.png);
- background-position: -1808px -1274px;
+ background-position: -637px -1798px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_pblue {
background-image: url(spritesmith0.png);
- background-position: -1833px -1289px;
+ background-position: -662px -1813px;
width: 60px;
height: 60px;
}
.hair_bangs_3_pblue2 {
background-image: url(spritesmith0.png);
- background-position: -1808px -1365px;
+ background-position: -728px -1798px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_pblue2 {
background-image: url(spritesmith0.png);
- background-position: -1833px -1380px;
+ background-position: -753px -1813px;
width: 60px;
height: 60px;
}
.hair_bangs_3_peppermint {
background-image: url(spritesmith0.png);
- background-position: -1808px -1456px;
+ background-position: -819px -1798px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_peppermint {
background-image: url(spritesmith0.png);
- background-position: -1833px -1471px;
+ background-position: -844px -1813px;
width: 60px;
height: 60px;
}
.hair_bangs_3_pgreen {
background-image: url(spritesmith0.png);
- background-position: -1808px -1547px;
+ background-position: -910px -1798px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_pgreen {
background-image: url(spritesmith0.png);
- background-position: -1833px -1562px;
+ background-position: -935px -1813px;
width: 60px;
height: 60px;
}
.hair_bangs_3_pgreen2 {
background-image: url(spritesmith0.png);
- background-position: -1808px -1638px;
+ background-position: -1001px -1798px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_pgreen2 {
background-image: url(spritesmith0.png);
- background-position: -1833px -1653px;
+ background-position: -1026px -1813px;
width: 60px;
height: 60px;
}
.hair_bangs_3_porange {
background-image: url(spritesmith0.png);
- background-position: -1444px -273px;
+ background-position: -1092px -1798px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_porange {
background-image: url(spritesmith0.png);
- background-position: -1469px -288px;
+ background-position: -1117px -1813px;
width: 60px;
height: 60px;
}
.hair_bangs_3_porange2 {
background-image: url(spritesmith0.png);
- background-position: -989px -728px;
+ background-position: -1183px -1798px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_porange2 {
background-image: url(spritesmith0.png);
- background-position: -1014px -743px;
+ background-position: -1208px -1813px;
width: 60px;
height: 60px;
}
.hair_bangs_3_ppink {
background-image: url(spritesmith0.png);
- background-position: -989px -637px;
+ background-position: -1274px -1798px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_ppink {
background-image: url(spritesmith0.png);
- background-position: -1014px -652px;
+ background-position: -1299px -1813px;
width: 60px;
height: 60px;
}
.hair_bangs_3_ppink2 {
background-image: url(spritesmith0.png);
- background-position: -989px -546px;
+ background-position: -1365px -1798px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_ppink2 {
background-image: url(spritesmith0.png);
- background-position: -1014px -561px;
+ background-position: -1390px -1813px;
width: 60px;
height: 60px;
}
.hair_bangs_3_ppurple {
background-image: url(spritesmith0.png);
- background-position: -989px -455px;
+ background-position: -1456px -1798px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_ppurple {
background-image: url(spritesmith0.png);
- background-position: -1014px -470px;
+ background-position: -1481px -1813px;
width: 60px;
height: 60px;
}
.hair_bangs_3_ppurple2 {
background-image: url(spritesmith0.png);
- background-position: -989px -364px;
+ background-position: -1547px -1798px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_ppurple2 {
background-image: url(spritesmith0.png);
- background-position: -1014px -379px;
+ background-position: -1572px -1813px;
width: 60px;
height: 60px;
}
.hair_bangs_3_pumpkin {
background-image: url(spritesmith0.png);
- background-position: -989px -273px;
+ background-position: 0px -1434px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_pumpkin {
background-image: url(spritesmith0.png);
- background-position: -1014px -288px;
+ background-position: -25px -1449px;
width: 60px;
height: 60px;
}
.hair_bangs_3_purple {
background-image: url(spritesmith0.png);
- background-position: -989px -182px;
+ background-position: -637px -979px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_purple {
background-image: url(spritesmith0.png);
- background-position: -1014px -197px;
+ background-position: -662px -994px;
width: 60px;
height: 60px;
}
.hair_bangs_3_pyellow {
background-image: url(spritesmith0.png);
- background-position: -989px -91px;
+ background-position: -546px -979px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_pyellow {
background-image: url(spritesmith0.png);
- background-position: -1014px -106px;
+ background-position: -571px -994px;
width: 60px;
height: 60px;
}
.hair_bangs_3_pyellow2 {
background-image: url(spritesmith0.png);
- background-position: -989px 0px;
+ background-position: -455px -979px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_pyellow2 {
background-image: url(spritesmith0.png);
- background-position: -1014px -15px;
+ background-position: -480px -994px;
width: 60px;
height: 60px;
}
.hair_bangs_3_rainbow {
background-image: url(spritesmith0.png);
- background-position: -819px -888px;
+ background-position: -364px -979px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_rainbow {
background-image: url(spritesmith0.png);
- background-position: -844px -903px;
+ background-position: -389px -994px;
width: 60px;
height: 60px;
}
.hair_bangs_3_red {
background-image: url(spritesmith0.png);
- background-position: -728px -888px;
+ background-position: -273px -979px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_red {
background-image: url(spritesmith0.png);
- background-position: -753px -903px;
+ background-position: -298px -994px;
width: 60px;
height: 60px;
}
.hair_bangs_3_snowy {
background-image: url(spritesmith0.png);
- background-position: -637px -888px;
+ background-position: -182px -979px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_snowy {
background-image: url(spritesmith0.png);
- background-position: -662px -903px;
+ background-position: -207px -994px;
width: 60px;
height: 60px;
}
.hair_bangs_3_white {
background-image: url(spritesmith0.png);
- background-position: -546px -888px;
+ background-position: -91px -979px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_white {
background-image: url(spritesmith0.png);
- background-position: -571px -903px;
+ background-position: -116px -994px;
width: 60px;
height: 60px;
}
.hair_bangs_3_winternight {
background-image: url(spritesmith0.png);
- background-position: -455px -888px;
+ background-position: 0px -979px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_winternight {
background-image: url(spritesmith0.png);
- background-position: -480px -903px;
+ background-position: -25px -994px;
width: 60px;
height: 60px;
}
.hair_bangs_3_winterstar {
background-image: url(spritesmith0.png);
- background-position: -364px -888px;
+ background-position: -989px -819px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_winterstar {
background-image: url(spritesmith0.png);
- background-position: -389px -903px;
+ background-position: -1014px -834px;
width: 60px;
height: 60px;
}
.hair_bangs_3_yellow {
background-image: url(spritesmith0.png);
- background-position: -273px -888px;
+ background-position: -989px -728px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_yellow {
background-image: url(spritesmith0.png);
- background-position: -298px -903px;
+ background-position: -1014px -743px;
width: 60px;
height: 60px;
}
.hair_bangs_3_zombie {
background-image: url(spritesmith0.png);
- background-position: -182px -888px;
+ background-position: -989px -637px;
width: 90px;
height: 90px;
}
.customize-option.hair_bangs_3_zombie {
background-image: url(spritesmith0.png);
- background-position: -207px -903px;
+ background-position: -1014px -652px;
width: 60px;
height: 60px;
}
.hair_base_10_TRUred {
background-image: url(spritesmith0.png);
- background-position: -91px -888px;
+ background-position: -989px -546px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_10_TRUred {
background-image: url(spritesmith0.png);
- background-position: -116px -903px;
+ background-position: -1014px -561px;
width: 60px;
height: 60px;
}
.hair_base_10_aurora {
background-image: url(spritesmith0.png);
- background-position: 0px -888px;
+ background-position: -989px -455px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_10_aurora {
background-image: url(spritesmith0.png);
- background-position: -25px -903px;
+ background-position: -1014px -470px;
width: 60px;
height: 60px;
}
.hair_base_10_black {
background-image: url(spritesmith0.png);
- background-position: -830px -740px;
+ background-position: -989px -364px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_10_black {
background-image: url(spritesmith0.png);
- background-position: -855px -755px;
+ background-position: -1014px -379px;
width: 60px;
height: 60px;
}
.hair_base_10_blond {
background-image: url(spritesmith0.png);
- background-position: -739px -740px;
+ background-position: -989px -273px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_10_blond {
background-image: url(spritesmith0.png);
- background-position: -764px -755px;
+ background-position: -1014px -288px;
width: 60px;
height: 60px;
}
.hair_base_10_blue {
background-image: url(spritesmith0.png);
- background-position: -648px -740px;
+ background-position: -989px -182px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_10_blue {
background-image: url(spritesmith0.png);
- background-position: -673px -755px;
+ background-position: -1014px -197px;
width: 60px;
height: 60px;
}
.hair_base_10_brown {
background-image: url(spritesmith0.png);
- background-position: -557px -740px;
+ background-position: -989px -91px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_10_brown {
background-image: url(spritesmith0.png);
- background-position: -582px -755px;
+ background-position: -1014px -106px;
width: 60px;
height: 60px;
}
.hair_base_10_candycane {
background-image: url(spritesmith0.png);
- background-position: -466px -740px;
+ background-position: -989px 0px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_10_candycane {
background-image: url(spritesmith0.png);
- background-position: -491px -755px;
+ background-position: -1014px -15px;
width: 60px;
height: 60px;
}
.hair_base_10_candycorn {
background-image: url(spritesmith0.png);
- background-position: -375px -740px;
+ background-position: -819px -888px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_10_candycorn {
background-image: url(spritesmith0.png);
- background-position: -400px -755px;
+ background-position: -844px -903px;
width: 60px;
height: 60px;
}
.hair_base_10_festive {
background-image: url(spritesmith0.png);
- background-position: -284px -740px;
+ background-position: -728px -888px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_10_festive {
background-image: url(spritesmith0.png);
- background-position: -309px -755px;
+ background-position: -753px -903px;
width: 60px;
height: 60px;
}
.hair_base_10_frost {
background-image: url(spritesmith0.png);
- background-position: -848px -603px;
+ background-position: -637px -888px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_10_frost {
background-image: url(spritesmith0.png);
- background-position: -873px -618px;
+ background-position: -662px -903px;
width: 60px;
height: 60px;
}
.hair_base_10_ghostwhite {
background-image: url(spritesmith0.png);
- background-position: -848px -512px;
+ background-position: -546px -888px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_10_ghostwhite {
background-image: url(spritesmith0.png);
- background-position: -873px -527px;
+ background-position: -571px -903px;
width: 60px;
height: 60px;
}
.hair_base_10_green {
background-image: url(spritesmith0.png);
- background-position: -848px -421px;
+ background-position: -455px -888px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_10_green {
background-image: url(spritesmith0.png);
- background-position: -873px -436px;
+ background-position: -480px -903px;
width: 60px;
height: 60px;
}
.hair_base_10_halloween {
background-image: url(spritesmith0.png);
- background-position: -848px -330px;
+ background-position: -364px -888px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_10_halloween {
background-image: url(spritesmith0.png);
- background-position: -873px -345px;
+ background-position: -389px -903px;
width: 60px;
height: 60px;
}
.hair_base_10_holly {
background-image: url(spritesmith0.png);
- background-position: -848px -239px;
+ background-position: -273px -888px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_10_holly {
background-image: url(spritesmith0.png);
- background-position: -873px -254px;
+ background-position: -298px -903px;
width: 60px;
height: 60px;
}
.hair_base_10_hollygreen {
background-image: url(spritesmith0.png);
- background-position: -989px -819px;
+ background-position: -182px -888px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_10_hollygreen {
background-image: url(spritesmith0.png);
- background-position: -1014px -834px;
+ background-position: -207px -903px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_midnight {
+ background-image: url(spritesmith0.png);
+ background-position: -91px -888px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_midnight {
+ background-image: url(spritesmith0.png);
+ background-position: -116px -903px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_pblue {
+ background-image: url(spritesmith0.png);
+ background-position: 0px -888px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_pblue {
+ background-image: url(spritesmith0.png);
+ background-position: -25px -903px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_pblue2 {
+ background-image: url(spritesmith0.png);
+ background-position: -889px -740px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_pblue2 {
+ background-image: url(spritesmith0.png);
+ background-position: -914px -755px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_peppermint {
+ background-image: url(spritesmith0.png);
+ background-position: -798px -740px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_peppermint {
+ background-image: url(spritesmith0.png);
+ background-position: -823px -755px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_pgreen {
+ background-image: url(spritesmith0.png);
+ background-position: -707px -740px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_pgreen {
+ background-image: url(spritesmith0.png);
+ background-position: -732px -755px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_pgreen2 {
+ background-image: url(spritesmith0.png);
+ background-position: -1080px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_pgreen2 {
+ background-image: url(spritesmith0.png);
+ background-position: -1105px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_porange {
+ background-image: url(spritesmith0.png);
+ background-position: -910px -979px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_porange {
+ background-image: url(spritesmith0.png);
+ background-position: -935px -994px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_porange2 {
+ background-image: url(spritesmith0.png);
+ background-position: -819px -979px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_porange2 {
+ background-image: url(spritesmith0.png);
+ background-position: -844px -994px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_ppink {
+ background-image: url(spritesmith0.png);
+ background-position: -728px -979px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_ppink {
+ background-image: url(spritesmith0.png);
+ background-position: -753px -994px;
width: 60px;
height: 60px;
}
diff --git a/common/dist/sprites/spritesmith0.png b/common/dist/sprites/spritesmith0.png
index 9d9f7db8e7..1454213bb6 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 a81e027dff..84f0985241 100644
--- a/common/dist/sprites/spritesmith1.css
+++ b/common/dist/sprites/spritesmith1.css
@@ -1,4428 +1,4644 @@
-.hair_base_10_midnight {
+.hair_base_10_ppink2 {
background-image: url(spritesmith1.png);
background-position: -91px 0px;
width: 90px;
height: 90px;
}
-.customize-option.hair_base_10_midnight {
+.customize-option.hair_base_10_ppink2 {
background-image: url(spritesmith1.png);
background-position: -116px -15px;
width: 60px;
height: 60px;
}
-.hair_base_10_pblue {
- background-image: url(spritesmith1.png);
- background-position: -182px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_pblue {
- background-image: url(spritesmith1.png);
- background-position: -207px -1198px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_pblue2 {
- background-image: url(spritesmith1.png);
- background-position: 0px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_pblue2 {
- background-image: url(spritesmith1.png);
- background-position: -25px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_peppermint {
- background-image: url(spritesmith1.png);
- background-position: -91px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_peppermint {
- background-image: url(spritesmith1.png);
- background-position: -116px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_pgreen {
- background-image: url(spritesmith1.png);
- background-position: -182px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_pgreen {
- background-image: url(spritesmith1.png);
- background-position: -207px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_pgreen2 {
- background-image: url(spritesmith1.png);
- background-position: -182px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_pgreen2 {
- background-image: url(spritesmith1.png);
- background-position: -207px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_porange {
- background-image: url(spritesmith1.png);
- background-position: 0px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_porange {
- background-image: url(spritesmith1.png);
- background-position: -25px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_porange2 {
- background-image: url(spritesmith1.png);
- background-position: -91px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_porange2 {
- background-image: url(spritesmith1.png);
- background-position: -116px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_ppink {
- background-image: url(spritesmith1.png);
- background-position: -182px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_ppink {
- background-image: url(spritesmith1.png);
- background-position: -207px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_ppink2 {
- background-image: url(spritesmith1.png);
- background-position: -273px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_ppink2 {
- background-image: url(spritesmith1.png);
- background-position: -298px -15px;
- width: 60px;
- height: 60px;
-}
.hair_base_10_ppurple {
- background-image: url(spritesmith1.png);
- background-position: -273px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_ppurple {
- background-image: url(spritesmith1.png);
- background-position: -298px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_ppurple2 {
- background-image: url(spritesmith1.png);
- background-position: -273px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_ppurple2 {
- background-image: url(spritesmith1.png);
- background-position: -298px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_pumpkin {
- background-image: url(spritesmith1.png);
- background-position: 0px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_pumpkin {
- background-image: url(spritesmith1.png);
- background-position: -25px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_purple {
- background-image: url(spritesmith1.png);
- background-position: -91px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_purple {
- background-image: url(spritesmith1.png);
- background-position: -116px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_pyellow {
- background-image: url(spritesmith1.png);
- background-position: -182px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_pyellow {
- background-image: url(spritesmith1.png);
- background-position: -207px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_pyellow2 {
- background-image: url(spritesmith1.png);
- background-position: -273px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_pyellow2 {
- background-image: url(spritesmith1.png);
- background-position: -298px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_rainbow {
- background-image: url(spritesmith1.png);
- background-position: -364px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_rainbow {
- background-image: url(spritesmith1.png);
- background-position: -389px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_red {
- background-image: url(spritesmith1.png);
- background-position: -364px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_red {
- background-image: url(spritesmith1.png);
- background-position: -389px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_snowy {
- background-image: url(spritesmith1.png);
- background-position: -364px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_snowy {
- background-image: url(spritesmith1.png);
- background-position: -389px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_white {
- background-image: url(spritesmith1.png);
- background-position: -364px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_white {
- background-image: url(spritesmith1.png);
- background-position: -389px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_winternight {
- background-image: url(spritesmith1.png);
- background-position: 0px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_winternight {
- background-image: url(spritesmith1.png);
- background-position: -25px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_winterstar {
- background-image: url(spritesmith1.png);
- background-position: -91px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_winterstar {
- background-image: url(spritesmith1.png);
- background-position: -116px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_yellow {
- background-image: url(spritesmith1.png);
- background-position: -182px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_yellow {
- background-image: url(spritesmith1.png);
- background-position: -207px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_10_zombie {
- background-image: url(spritesmith1.png);
- background-position: -273px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_10_zombie {
- background-image: url(spritesmith1.png);
- background-position: -298px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_TRUred {
- background-image: url(spritesmith1.png);
- background-position: -364px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_TRUred {
- background-image: url(spritesmith1.png);
- background-position: -389px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_aurora {
- background-image: url(spritesmith1.png);
- background-position: -455px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_aurora {
- background-image: url(spritesmith1.png);
- background-position: -480px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_black {
- background-image: url(spritesmith1.png);
- background-position: -455px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_black {
- background-image: url(spritesmith1.png);
- background-position: -480px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_blond {
- background-image: url(spritesmith1.png);
- background-position: -455px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_blond {
- background-image: url(spritesmith1.png);
- background-position: -480px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_blue {
- background-image: url(spritesmith1.png);
- background-position: -455px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_blue {
- background-image: url(spritesmith1.png);
- background-position: -480px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_brown {
- background-image: url(spritesmith1.png);
- background-position: -455px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_brown {
- background-image: url(spritesmith1.png);
- background-position: -480px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_candycane {
- background-image: url(spritesmith1.png);
- background-position: 0px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_candycane {
- background-image: url(spritesmith1.png);
- background-position: -25px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_candycorn {
- background-image: url(spritesmith1.png);
- background-position: -91px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_candycorn {
- background-image: url(spritesmith1.png);
- background-position: -116px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_festive {
- background-image: url(spritesmith1.png);
- background-position: -182px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_festive {
- background-image: url(spritesmith1.png);
- background-position: -207px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_frost {
- background-image: url(spritesmith1.png);
- background-position: -273px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_frost {
- background-image: url(spritesmith1.png);
- background-position: -298px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_ghostwhite {
- background-image: url(spritesmith1.png);
- background-position: -364px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_ghostwhite {
- background-image: url(spritesmith1.png);
- background-position: -389px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_green {
- background-image: url(spritesmith1.png);
- background-position: -455px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_green {
- background-image: url(spritesmith1.png);
- background-position: -480px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_halloween {
- background-image: url(spritesmith1.png);
- background-position: -546px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_halloween {
- background-image: url(spritesmith1.png);
- background-position: -571px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_holly {
- background-image: url(spritesmith1.png);
- background-position: -546px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_holly {
- background-image: url(spritesmith1.png);
- background-position: -571px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_hollygreen {
- background-image: url(spritesmith1.png);
- background-position: -546px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_hollygreen {
- background-image: url(spritesmith1.png);
- background-position: -571px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_midnight {
- background-image: url(spritesmith1.png);
- background-position: -546px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_midnight {
- background-image: url(spritesmith1.png);
- background-position: -571px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_pblue {
- background-image: url(spritesmith1.png);
- background-position: -546px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_pblue {
- background-image: url(spritesmith1.png);
- background-position: -571px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_pblue2 {
- background-image: url(spritesmith1.png);
- background-position: -546px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_pblue2 {
- background-image: url(spritesmith1.png);
- background-position: -571px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_peppermint {
- background-image: url(spritesmith1.png);
- background-position: 0px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_peppermint {
- background-image: url(spritesmith1.png);
- background-position: -25px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_pgreen {
- background-image: url(spritesmith1.png);
- background-position: -91px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_pgreen {
- background-image: url(spritesmith1.png);
- background-position: -116px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_pgreen2 {
- background-image: url(spritesmith1.png);
- background-position: -182px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_pgreen2 {
- background-image: url(spritesmith1.png);
- background-position: -207px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_porange {
- background-image: url(spritesmith1.png);
- background-position: -273px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_porange {
- background-image: url(spritesmith1.png);
- background-position: -298px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_porange2 {
- background-image: url(spritesmith1.png);
- background-position: -364px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_porange2 {
- background-image: url(spritesmith1.png);
- background-position: -389px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_ppink {
- background-image: url(spritesmith1.png);
- background-position: -455px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_ppink {
- background-image: url(spritesmith1.png);
- background-position: -480px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_ppink2 {
- background-image: url(spritesmith1.png);
- background-position: -546px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_ppink2 {
- background-image: url(spritesmith1.png);
- background-position: -571px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_ppurple {
- background-image: url(spritesmith1.png);
- background-position: -637px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_ppurple {
- background-image: url(spritesmith1.png);
- background-position: -662px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_ppurple2 {
- background-image: url(spritesmith1.png);
- background-position: -637px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_ppurple2 {
- background-image: url(spritesmith1.png);
- background-position: -662px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_pumpkin {
- background-image: url(spritesmith1.png);
- background-position: -637px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_pumpkin {
- background-image: url(spritesmith1.png);
- background-position: -662px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_purple {
- background-image: url(spritesmith1.png);
- background-position: -637px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_purple {
- background-image: url(spritesmith1.png);
- background-position: -662px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_pyellow {
- background-image: url(spritesmith1.png);
- background-position: -637px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_pyellow {
- background-image: url(spritesmith1.png);
- background-position: -662px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_pyellow2 {
- background-image: url(spritesmith1.png);
- background-position: -637px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_pyellow2 {
- background-image: url(spritesmith1.png);
- background-position: -662px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_rainbow {
- background-image: url(spritesmith1.png);
- background-position: -637px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_rainbow {
- background-image: url(spritesmith1.png);
- background-position: -662px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_red {
- background-image: url(spritesmith1.png);
- background-position: 0px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_red {
- background-image: url(spritesmith1.png);
- background-position: -25px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_snowy {
- background-image: url(spritesmith1.png);
- background-position: -91px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_snowy {
- background-image: url(spritesmith1.png);
- background-position: -116px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_white {
- background-image: url(spritesmith1.png);
- background-position: -182px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_white {
- background-image: url(spritesmith1.png);
- background-position: -207px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_winternight {
- background-image: url(spritesmith1.png);
- background-position: -273px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_winternight {
- background-image: url(spritesmith1.png);
- background-position: -298px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_winterstar {
- background-image: url(spritesmith1.png);
- background-position: -364px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_winterstar {
- background-image: url(spritesmith1.png);
- background-position: -389px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_yellow {
- background-image: url(spritesmith1.png);
- background-position: -455px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_yellow {
- background-image: url(spritesmith1.png);
- background-position: -480px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_11_zombie {
- background-image: url(spritesmith1.png);
- background-position: -546px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_11_zombie {
- background-image: url(spritesmith1.png);
- background-position: -571px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_TRUred {
- background-image: url(spritesmith1.png);
- background-position: -637px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_TRUred {
- background-image: url(spritesmith1.png);
- background-position: -662px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_aurora {
- background-image: url(spritesmith1.png);
- background-position: -728px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_aurora {
- background-image: url(spritesmith1.png);
- background-position: -753px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_black {
- background-image: url(spritesmith1.png);
- background-position: -728px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_black {
- background-image: url(spritesmith1.png);
- background-position: -753px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_blond {
- background-image: url(spritesmith1.png);
- background-position: -728px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_blond {
- background-image: url(spritesmith1.png);
- background-position: -753px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_blue {
- background-image: url(spritesmith1.png);
- background-position: -728px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_blue {
- background-image: url(spritesmith1.png);
- background-position: -753px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_brown {
- background-image: url(spritesmith1.png);
- background-position: -728px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_brown {
- background-image: url(spritesmith1.png);
- background-position: -753px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_candycane {
- background-image: url(spritesmith1.png);
- background-position: -728px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_candycane {
- background-image: url(spritesmith1.png);
- background-position: -753px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_candycorn {
- background-image: url(spritesmith1.png);
- background-position: -728px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_candycorn {
- background-image: url(spritesmith1.png);
- background-position: -753px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_festive {
- background-image: url(spritesmith1.png);
- background-position: -728px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_festive {
- background-image: url(spritesmith1.png);
- background-position: -753px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_frost {
- background-image: url(spritesmith1.png);
- background-position: 0px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_frost {
- background-image: url(spritesmith1.png);
- background-position: -25px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_ghostwhite {
- background-image: url(spritesmith1.png);
- background-position: -91px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_ghostwhite {
- background-image: url(spritesmith1.png);
- background-position: -116px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_green {
- background-image: url(spritesmith1.png);
- background-position: -182px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_green {
- background-image: url(spritesmith1.png);
- background-position: -207px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_halloween {
- background-image: url(spritesmith1.png);
- background-position: -273px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_halloween {
- background-image: url(spritesmith1.png);
- background-position: -298px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_holly {
- background-image: url(spritesmith1.png);
- background-position: -364px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_holly {
- background-image: url(spritesmith1.png);
- background-position: -389px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_hollygreen {
- background-image: url(spritesmith1.png);
- background-position: -455px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_hollygreen {
- background-image: url(spritesmith1.png);
- background-position: -480px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_midnight {
- background-image: url(spritesmith1.png);
- background-position: -546px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_midnight {
- background-image: url(spritesmith1.png);
- background-position: -571px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_pblue {
- background-image: url(spritesmith1.png);
- background-position: -637px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_pblue {
- background-image: url(spritesmith1.png);
- background-position: -662px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_pblue2 {
- background-image: url(spritesmith1.png);
- background-position: -728px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_pblue2 {
- background-image: url(spritesmith1.png);
- background-position: -753px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_peppermint {
- background-image: url(spritesmith1.png);
- background-position: -819px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_peppermint {
- background-image: url(spritesmith1.png);
- background-position: -844px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_pgreen {
- background-image: url(spritesmith1.png);
- background-position: -819px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_pgreen {
- background-image: url(spritesmith1.png);
- background-position: -844px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_pgreen2 {
- background-image: url(spritesmith1.png);
- background-position: -819px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_pgreen2 {
- background-image: url(spritesmith1.png);
- background-position: -844px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_porange {
- background-image: url(spritesmith1.png);
- background-position: -819px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_porange {
- background-image: url(spritesmith1.png);
- background-position: -844px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_porange2 {
- background-image: url(spritesmith1.png);
- background-position: -819px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_porange2 {
- background-image: url(spritesmith1.png);
- background-position: -844px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_ppink {
- background-image: url(spritesmith1.png);
- background-position: -819px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_ppink {
- background-image: url(spritesmith1.png);
- background-position: -844px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_ppink2 {
- background-image: url(spritesmith1.png);
- background-position: -819px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_ppink2 {
- background-image: url(spritesmith1.png);
- background-position: -844px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_ppurple {
- background-image: url(spritesmith1.png);
- background-position: -819px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_ppurple {
- background-image: url(spritesmith1.png);
- background-position: -844px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_ppurple2 {
- background-image: url(spritesmith1.png);
- background-position: -819px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_ppurple2 {
- background-image: url(spritesmith1.png);
- background-position: -844px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_pumpkin {
- background-image: url(spritesmith1.png);
- background-position: 0px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_pumpkin {
- background-image: url(spritesmith1.png);
- background-position: -25px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_purple {
- background-image: url(spritesmith1.png);
- background-position: -91px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_purple {
- background-image: url(spritesmith1.png);
- background-position: -116px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_pyellow {
- background-image: url(spritesmith1.png);
- background-position: -182px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_pyellow {
- background-image: url(spritesmith1.png);
- background-position: -207px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_pyellow2 {
- background-image: url(spritesmith1.png);
- background-position: -273px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_pyellow2 {
- background-image: url(spritesmith1.png);
- background-position: -298px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_rainbow {
- background-image: url(spritesmith1.png);
- background-position: -364px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_rainbow {
- background-image: url(spritesmith1.png);
- background-position: -389px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_red {
- background-image: url(spritesmith1.png);
- background-position: -455px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_red {
- background-image: url(spritesmith1.png);
- background-position: -480px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_snowy {
- background-image: url(spritesmith1.png);
- background-position: -546px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_snowy {
- background-image: url(spritesmith1.png);
- background-position: -571px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_white {
- background-image: url(spritesmith1.png);
- background-position: -637px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_white {
- background-image: url(spritesmith1.png);
- background-position: -662px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_winternight {
- background-image: url(spritesmith1.png);
- background-position: -728px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_winternight {
- background-image: url(spritesmith1.png);
- background-position: -753px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_winterstar {
- background-image: url(spritesmith1.png);
- background-position: -819px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_winterstar {
- background-image: url(spritesmith1.png);
- background-position: -844px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_yellow {
- background-image: url(spritesmith1.png);
- background-position: -910px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_yellow {
- background-image: url(spritesmith1.png);
- background-position: -935px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_12_zombie {
- background-image: url(spritesmith1.png);
- background-position: -910px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_12_zombie {
- background-image: url(spritesmith1.png);
- background-position: -935px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_TRUred {
- background-image: url(spritesmith1.png);
- background-position: -910px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_TRUred {
- background-image: url(spritesmith1.png);
- background-position: -935px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_aurora {
- background-image: url(spritesmith1.png);
- background-position: -910px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_aurora {
- background-image: url(spritesmith1.png);
- background-position: -935px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_black {
- background-image: url(spritesmith1.png);
- background-position: -910px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_black {
- background-image: url(spritesmith1.png);
- background-position: -935px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_blond {
- background-image: url(spritesmith1.png);
- background-position: -910px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_blond {
- background-image: url(spritesmith1.png);
- background-position: -935px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_blue {
- background-image: url(spritesmith1.png);
- background-position: -910px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_blue {
- background-image: url(spritesmith1.png);
- background-position: -935px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_brown {
- background-image: url(spritesmith1.png);
- background-position: -910px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_brown {
- background-image: url(spritesmith1.png);
- background-position: -935px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_candycane {
- background-image: url(spritesmith1.png);
- background-position: -910px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_candycane {
- background-image: url(spritesmith1.png);
- background-position: -935px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_candycorn {
- background-image: url(spritesmith1.png);
- background-position: -910px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_candycorn {
- background-image: url(spritesmith1.png);
- background-position: -935px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_festive {
- background-image: url(spritesmith1.png);
- background-position: 0px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_festive {
- background-image: url(spritesmith1.png);
- background-position: -25px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_frost {
- background-image: url(spritesmith1.png);
- background-position: -91px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_frost {
- background-image: url(spritesmith1.png);
- background-position: -116px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_ghostwhite {
- background-image: url(spritesmith1.png);
- background-position: -182px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_ghostwhite {
- background-image: url(spritesmith1.png);
- background-position: -207px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_green {
- background-image: url(spritesmith1.png);
- background-position: -273px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_green {
- background-image: url(spritesmith1.png);
- background-position: -298px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_halloween {
- background-image: url(spritesmith1.png);
- background-position: -364px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_halloween {
- background-image: url(spritesmith1.png);
- background-position: -389px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_holly {
- background-image: url(spritesmith1.png);
- background-position: -455px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_holly {
- background-image: url(spritesmith1.png);
- background-position: -480px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_hollygreen {
- background-image: url(spritesmith1.png);
- background-position: -546px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_hollygreen {
- background-image: url(spritesmith1.png);
- background-position: -571px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_midnight {
- background-image: url(spritesmith1.png);
- background-position: -637px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_midnight {
- background-image: url(spritesmith1.png);
- background-position: -662px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_pblue {
- background-image: url(spritesmith1.png);
- background-position: -728px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_pblue {
- background-image: url(spritesmith1.png);
- background-position: -753px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_pblue2 {
- background-image: url(spritesmith1.png);
- background-position: -819px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_pblue2 {
- background-image: url(spritesmith1.png);
- background-position: -844px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_peppermint {
- background-image: url(spritesmith1.png);
- background-position: -910px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_peppermint {
- background-image: url(spritesmith1.png);
- background-position: -935px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_pgreen {
- background-image: url(spritesmith1.png);
- background-position: -1001px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_pgreen {
- background-image: url(spritesmith1.png);
- background-position: -1026px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_pgreen2 {
- background-image: url(spritesmith1.png);
- background-position: -1001px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_pgreen2 {
- background-image: url(spritesmith1.png);
- background-position: -1026px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_porange {
- background-image: url(spritesmith1.png);
- background-position: -1001px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_porange {
- background-image: url(spritesmith1.png);
- background-position: -1026px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_porange2 {
- background-image: url(spritesmith1.png);
- background-position: -1001px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_porange2 {
- background-image: url(spritesmith1.png);
- background-position: -1026px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_ppink {
- background-image: url(spritesmith1.png);
- background-position: -1001px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_ppink {
- background-image: url(spritesmith1.png);
- background-position: -1026px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_ppink2 {
- background-image: url(spritesmith1.png);
- background-position: -1001px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_ppink2 {
- background-image: url(spritesmith1.png);
- background-position: -1026px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_ppurple {
- background-image: url(spritesmith1.png);
- background-position: -1001px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_ppurple {
- background-image: url(spritesmith1.png);
- background-position: -1026px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_ppurple2 {
- background-image: url(spritesmith1.png);
- background-position: -1001px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_ppurple2 {
- background-image: url(spritesmith1.png);
- background-position: -1026px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_pumpkin {
- background-image: url(spritesmith1.png);
- background-position: -1001px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_pumpkin {
- background-image: url(spritesmith1.png);
- background-position: -1026px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_purple {
- background-image: url(spritesmith1.png);
- background-position: -1001px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_purple {
- background-image: url(spritesmith1.png);
- background-position: -1026px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_pyellow {
- background-image: url(spritesmith1.png);
- background-position: -1001px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_pyellow {
- background-image: url(spritesmith1.png);
- background-position: -1026px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_pyellow2 {
- background-image: url(spritesmith1.png);
- background-position: 0px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_pyellow2 {
- background-image: url(spritesmith1.png);
- background-position: -25px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_rainbow {
- background-image: url(spritesmith1.png);
- background-position: -91px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_rainbow {
- background-image: url(spritesmith1.png);
- background-position: -116px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_red {
- background-image: url(spritesmith1.png);
- background-position: -182px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_red {
- background-image: url(spritesmith1.png);
- background-position: -207px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_snowy {
- background-image: url(spritesmith1.png);
- background-position: -273px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_snowy {
- background-image: url(spritesmith1.png);
- background-position: -298px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_white {
- background-image: url(spritesmith1.png);
- background-position: -364px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_white {
- background-image: url(spritesmith1.png);
- background-position: -389px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_winternight {
- background-image: url(spritesmith1.png);
- background-position: -455px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_winternight {
- background-image: url(spritesmith1.png);
- background-position: -480px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_winterstar {
- background-image: url(spritesmith1.png);
- background-position: -546px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_winterstar {
- background-image: url(spritesmith1.png);
- background-position: -571px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_yellow {
- background-image: url(spritesmith1.png);
- background-position: -637px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_yellow {
- background-image: url(spritesmith1.png);
- background-position: -662px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_13_zombie {
- background-image: url(spritesmith1.png);
- background-position: -728px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_13_zombie {
- background-image: url(spritesmith1.png);
- background-position: -753px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_TRUred {
- background-image: url(spritesmith1.png);
- background-position: -819px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_TRUred {
- background-image: url(spritesmith1.png);
- background-position: -844px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_aurora {
- background-image: url(spritesmith1.png);
- background-position: -910px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_aurora {
- background-image: url(spritesmith1.png);
- background-position: -935px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_black {
- background-image: url(spritesmith1.png);
- background-position: -1001px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_black {
- background-image: url(spritesmith1.png);
- background-position: -1026px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_blond {
- background-image: url(spritesmith1.png);
- background-position: -1092px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_blond {
- background-image: url(spritesmith1.png);
- background-position: -1117px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_blue {
- background-image: url(spritesmith1.png);
- background-position: -1092px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_blue {
- background-image: url(spritesmith1.png);
- background-position: -1117px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_brown {
- background-image: url(spritesmith1.png);
- background-position: -1092px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_brown {
- background-image: url(spritesmith1.png);
- background-position: -1117px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_candycane {
- background-image: url(spritesmith1.png);
- background-position: -1092px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_candycane {
- background-image: url(spritesmith1.png);
- background-position: -1117px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_candycorn {
- background-image: url(spritesmith1.png);
- background-position: -1092px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_candycorn {
- background-image: url(spritesmith1.png);
- background-position: -1117px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_festive {
- background-image: url(spritesmith1.png);
- background-position: -1092px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_festive {
- background-image: url(spritesmith1.png);
- background-position: -1117px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_frost {
- background-image: url(spritesmith1.png);
- background-position: -1092px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_frost {
- background-image: url(spritesmith1.png);
- background-position: -1117px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_ghostwhite {
- background-image: url(spritesmith1.png);
- background-position: -1092px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_ghostwhite {
- background-image: url(spritesmith1.png);
- background-position: -1117px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_green {
- background-image: url(spritesmith1.png);
- background-position: -1092px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_green {
- background-image: url(spritesmith1.png);
- background-position: -1117px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_halloween {
- background-image: url(spritesmith1.png);
- background-position: -1092px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_halloween {
- background-image: url(spritesmith1.png);
- background-position: -1117px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_holly {
- background-image: url(spritesmith1.png);
- background-position: -1092px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_holly {
- background-image: url(spritesmith1.png);
- background-position: -1117px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_hollygreen {
- background-image: url(spritesmith1.png);
- background-position: -1092px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_hollygreen {
- background-image: url(spritesmith1.png);
- background-position: -1117px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_midnight {
- background-image: url(spritesmith1.png);
- background-position: 0px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_midnight {
- background-image: url(spritesmith1.png);
- background-position: -25px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_pblue {
- background-image: url(spritesmith1.png);
- background-position: -91px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_pblue {
- background-image: url(spritesmith1.png);
- background-position: -116px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_pblue2 {
- background-image: url(spritesmith1.png);
- background-position: -182px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_pblue2 {
- background-image: url(spritesmith1.png);
- background-position: -207px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_peppermint {
- background-image: url(spritesmith1.png);
- background-position: -273px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_peppermint {
- background-image: url(spritesmith1.png);
- background-position: -298px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_pgreen {
- background-image: url(spritesmith1.png);
- background-position: -364px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_pgreen {
- background-image: url(spritesmith1.png);
- background-position: -389px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_pgreen2 {
- background-image: url(spritesmith1.png);
- background-position: -455px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_pgreen2 {
- background-image: url(spritesmith1.png);
- background-position: -480px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_porange {
- background-image: url(spritesmith1.png);
- background-position: -546px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_porange {
- background-image: url(spritesmith1.png);
- background-position: -571px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_porange2 {
- background-image: url(spritesmith1.png);
- background-position: -637px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_porange2 {
- background-image: url(spritesmith1.png);
- background-position: -662px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_ppink {
- background-image: url(spritesmith1.png);
- background-position: -728px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_ppink {
- background-image: url(spritesmith1.png);
- background-position: -753px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_ppink2 {
- background-image: url(spritesmith1.png);
- background-position: -819px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_ppink2 {
- background-image: url(spritesmith1.png);
- background-position: -844px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_ppurple {
- background-image: url(spritesmith1.png);
- background-position: -910px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_ppurple {
- background-image: url(spritesmith1.png);
- background-position: -935px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_ppurple2 {
- background-image: url(spritesmith1.png);
- background-position: -1001px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_ppurple2 {
- background-image: url(spritesmith1.png);
- background-position: -1026px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_pumpkin {
- background-image: url(spritesmith1.png);
- background-position: -1092px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_pumpkin {
- background-image: url(spritesmith1.png);
- background-position: -1117px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_purple {
- background-image: url(spritesmith1.png);
- background-position: -1183px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_purple {
- background-image: url(spritesmith1.png);
- background-position: -1208px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_pyellow {
- background-image: url(spritesmith1.png);
- background-position: -1183px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_pyellow {
- background-image: url(spritesmith1.png);
- background-position: -1208px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_pyellow2 {
- background-image: url(spritesmith1.png);
- background-position: -1183px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_pyellow2 {
- background-image: url(spritesmith1.png);
- background-position: -1208px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_rainbow {
- background-image: url(spritesmith1.png);
- background-position: -1183px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_rainbow {
- background-image: url(spritesmith1.png);
- background-position: -1208px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_red {
- background-image: url(spritesmith1.png);
- background-position: -1183px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_red {
- background-image: url(spritesmith1.png);
- background-position: -1208px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_snowy {
- background-image: url(spritesmith1.png);
- background-position: -1183px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_snowy {
- background-image: url(spritesmith1.png);
- background-position: -1208px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_white {
- background-image: url(spritesmith1.png);
- background-position: -1183px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_white {
- background-image: url(spritesmith1.png);
- background-position: -1208px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_winternight {
- background-image: url(spritesmith1.png);
- background-position: -1183px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_winternight {
- background-image: url(spritesmith1.png);
- background-position: -1208px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_winterstar {
- background-image: url(spritesmith1.png);
- background-position: -1183px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_winterstar {
- background-image: url(spritesmith1.png);
- background-position: -1208px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_yellow {
- background-image: url(spritesmith1.png);
- background-position: -1183px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_yellow {
- background-image: url(spritesmith1.png);
- background-position: -1208px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_14_zombie {
- background-image: url(spritesmith1.png);
- background-position: -1183px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_14_zombie {
- background-image: url(spritesmith1.png);
- background-position: -1208px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_1_TRUred {
- background-image: url(spritesmith1.png);
- background-position: -1183px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_1_TRUred {
- background-image: url(spritesmith1.png);
- background-position: -1208px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_1_aurora {
- background-image: url(spritesmith1.png);
- background-position: -1183px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_1_aurora {
- background-image: url(spritesmith1.png);
- background-position: -1208px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_base_1_black {
- background-image: url(spritesmith1.png);
- background-position: 0px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_1_black {
- background-image: url(spritesmith1.png);
- background-position: -25px -1198px;
- width: 60px;
- height: 60px;
-}
-.hair_base_1_blond {
- background-image: url(spritesmith1.png);
- background-position: -91px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_1_blond {
- background-image: url(spritesmith1.png);
- background-position: -116px -1198px;
- width: 60px;
- height: 60px;
-}
-.hair_base_1_blue {
- background-image: url(spritesmith1.png);
- background-position: 0px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_1_blue {
- background-image: url(spritesmith1.png);
- background-position: -25px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_1_brown {
- background-image: url(spritesmith1.png);
- background-position: -273px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_1_brown {
- background-image: url(spritesmith1.png);
- background-position: -298px -1198px;
- width: 60px;
- height: 60px;
-}
-.hair_base_1_candycane {
- background-image: url(spritesmith1.png);
- background-position: -364px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_1_candycane {
- background-image: url(spritesmith1.png);
- background-position: -389px -1198px;
- width: 60px;
- height: 60px;
-}
-.hair_base_1_candycorn {
- background-image: url(spritesmith1.png);
- background-position: -455px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_1_candycorn {
- background-image: url(spritesmith1.png);
- background-position: -480px -1198px;
- width: 60px;
- height: 60px;
-}
-.hair_base_1_festive {
- background-image: url(spritesmith1.png);
- background-position: -546px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_1_festive {
- background-image: url(spritesmith1.png);
- background-position: -571px -1198px;
- width: 60px;
- height: 60px;
-}
-.hair_base_1_frost {
- background-image: url(spritesmith1.png);
- background-position: -637px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_1_frost {
- background-image: url(spritesmith1.png);
- background-position: -662px -1198px;
- width: 60px;
- height: 60px;
-}
-.hair_base_1_ghostwhite {
- background-image: url(spritesmith1.png);
- background-position: -728px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_1_ghostwhite {
- background-image: url(spritesmith1.png);
- background-position: -753px -1198px;
- width: 60px;
- height: 60px;
-}
-.hair_base_1_green {
- background-image: url(spritesmith1.png);
- background-position: -819px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_1_green {
- background-image: url(spritesmith1.png);
- background-position: -844px -1198px;
- width: 60px;
- height: 60px;
-}
-.hair_base_1_halloween {
- background-image: url(spritesmith1.png);
- background-position: -910px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_1_halloween {
- background-image: url(spritesmith1.png);
- background-position: -935px -1198px;
- width: 60px;
- height: 60px;
-}
-.hair_base_1_holly {
background-image: url(spritesmith1.png);
background-position: -1001px -1183px;
width: 90px;
height: 90px;
}
-.customize-option.hair_base_1_holly {
+.customize-option.hair_base_10_ppurple {
background-image: url(spritesmith1.png);
background-position: -1026px -1198px;
width: 60px;
height: 60px;
}
+.hair_base_10_ppurple2 {
+ background-image: url(spritesmith1.png);
+ background-position: 0px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_ppurple2 {
+ background-image: url(spritesmith1.png);
+ background-position: -25px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_pumpkin {
+ background-image: url(spritesmith1.png);
+ background-position: -91px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_pumpkin {
+ background-image: url(spritesmith1.png);
+ background-position: -116px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_purple {
+ background-image: url(spritesmith1.png);
+ background-position: -182px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_purple {
+ background-image: url(spritesmith1.png);
+ background-position: -207px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_pyellow {
+ background-image: url(spritesmith1.png);
+ background-position: -182px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_pyellow {
+ background-image: url(spritesmith1.png);
+ background-position: -207px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_pyellow2 {
+ background-image: url(spritesmith1.png);
+ background-position: 0px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_pyellow2 {
+ background-image: url(spritesmith1.png);
+ background-position: -25px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_rainbow {
+ background-image: url(spritesmith1.png);
+ background-position: -91px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_rainbow {
+ background-image: url(spritesmith1.png);
+ background-position: -116px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_red {
+ background-image: url(spritesmith1.png);
+ background-position: -182px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_red {
+ background-image: url(spritesmith1.png);
+ background-position: -207px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_snowy {
+ background-image: url(spritesmith1.png);
+ background-position: -273px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_snowy {
+ background-image: url(spritesmith1.png);
+ background-position: -298px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_white {
+ background-image: url(spritesmith1.png);
+ background-position: -273px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_white {
+ background-image: url(spritesmith1.png);
+ background-position: -298px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_winternight {
+ background-image: url(spritesmith1.png);
+ background-position: -273px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_winternight {
+ background-image: url(spritesmith1.png);
+ background-position: -298px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_winterstar {
+ background-image: url(spritesmith1.png);
+ background-position: 0px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_winterstar {
+ background-image: url(spritesmith1.png);
+ background-position: -25px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_yellow {
+ background-image: url(spritesmith1.png);
+ background-position: -91px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_yellow {
+ background-image: url(spritesmith1.png);
+ background-position: -116px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_10_zombie {
+ background-image: url(spritesmith1.png);
+ background-position: -182px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_10_zombie {
+ background-image: url(spritesmith1.png);
+ background-position: -207px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_TRUred {
+ background-image: url(spritesmith1.png);
+ background-position: -273px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_TRUred {
+ background-image: url(spritesmith1.png);
+ background-position: -298px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_aurora {
+ background-image: url(spritesmith1.png);
+ background-position: -364px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_aurora {
+ background-image: url(spritesmith1.png);
+ background-position: -389px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_black {
+ background-image: url(spritesmith1.png);
+ background-position: -364px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_black {
+ background-image: url(spritesmith1.png);
+ background-position: -389px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_blond {
+ background-image: url(spritesmith1.png);
+ background-position: -364px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_blond {
+ background-image: url(spritesmith1.png);
+ background-position: -389px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_blue {
+ background-image: url(spritesmith1.png);
+ background-position: -364px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_blue {
+ background-image: url(spritesmith1.png);
+ background-position: -389px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_brown {
+ background-image: url(spritesmith1.png);
+ background-position: 0px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_brown {
+ background-image: url(spritesmith1.png);
+ background-position: -25px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_candycane {
+ background-image: url(spritesmith1.png);
+ background-position: -91px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_candycane {
+ background-image: url(spritesmith1.png);
+ background-position: -116px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_candycorn {
+ background-image: url(spritesmith1.png);
+ background-position: -182px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_candycorn {
+ background-image: url(spritesmith1.png);
+ background-position: -207px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_festive {
+ background-image: url(spritesmith1.png);
+ background-position: -273px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_festive {
+ background-image: url(spritesmith1.png);
+ background-position: -298px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_frost {
+ background-image: url(spritesmith1.png);
+ background-position: -364px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_frost {
+ background-image: url(spritesmith1.png);
+ background-position: -389px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_ghostwhite {
+ background-image: url(spritesmith1.png);
+ background-position: -455px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_ghostwhite {
+ background-image: url(spritesmith1.png);
+ background-position: -480px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_green {
+ background-image: url(spritesmith1.png);
+ background-position: -455px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_green {
+ background-image: url(spritesmith1.png);
+ background-position: -480px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_halloween {
+ background-image: url(spritesmith1.png);
+ background-position: -455px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_halloween {
+ background-image: url(spritesmith1.png);
+ background-position: -480px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_holly {
+ background-image: url(spritesmith1.png);
+ background-position: -455px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_holly {
+ background-image: url(spritesmith1.png);
+ background-position: -480px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_hollygreen {
+ background-image: url(spritesmith1.png);
+ background-position: -455px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_hollygreen {
+ background-image: url(spritesmith1.png);
+ background-position: -480px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_midnight {
+ background-image: url(spritesmith1.png);
+ background-position: 0px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_midnight {
+ background-image: url(spritesmith1.png);
+ background-position: -25px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_pblue {
+ background-image: url(spritesmith1.png);
+ background-position: -91px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_pblue {
+ background-image: url(spritesmith1.png);
+ background-position: -116px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_pblue2 {
+ background-image: url(spritesmith1.png);
+ background-position: -182px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_pblue2 {
+ background-image: url(spritesmith1.png);
+ background-position: -207px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_peppermint {
+ background-image: url(spritesmith1.png);
+ background-position: -273px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_peppermint {
+ background-image: url(spritesmith1.png);
+ background-position: -298px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_pgreen {
+ background-image: url(spritesmith1.png);
+ background-position: -364px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_pgreen {
+ background-image: url(spritesmith1.png);
+ background-position: -389px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_pgreen2 {
+ background-image: url(spritesmith1.png);
+ background-position: -455px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_pgreen2 {
+ background-image: url(spritesmith1.png);
+ background-position: -480px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_porange {
+ background-image: url(spritesmith1.png);
+ background-position: -546px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_porange {
+ background-image: url(spritesmith1.png);
+ background-position: -571px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_porange2 {
+ background-image: url(spritesmith1.png);
+ background-position: -546px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_porange2 {
+ background-image: url(spritesmith1.png);
+ background-position: -571px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_ppink {
+ background-image: url(spritesmith1.png);
+ background-position: -546px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_ppink {
+ background-image: url(spritesmith1.png);
+ background-position: -571px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_ppink2 {
+ background-image: url(spritesmith1.png);
+ background-position: -546px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_ppink2 {
+ background-image: url(spritesmith1.png);
+ background-position: -571px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_ppurple {
+ background-image: url(spritesmith1.png);
+ background-position: -546px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_ppurple {
+ background-image: url(spritesmith1.png);
+ background-position: -571px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_ppurple2 {
+ background-image: url(spritesmith1.png);
+ background-position: -546px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_ppurple2 {
+ background-image: url(spritesmith1.png);
+ background-position: -571px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_pumpkin {
+ background-image: url(spritesmith1.png);
+ background-position: 0px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_pumpkin {
+ background-image: url(spritesmith1.png);
+ background-position: -25px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_purple {
+ background-image: url(spritesmith1.png);
+ background-position: -91px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_purple {
+ background-image: url(spritesmith1.png);
+ background-position: -116px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_pyellow {
+ background-image: url(spritesmith1.png);
+ background-position: -182px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_pyellow {
+ background-image: url(spritesmith1.png);
+ background-position: -207px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_pyellow2 {
+ background-image: url(spritesmith1.png);
+ background-position: -273px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_pyellow2 {
+ background-image: url(spritesmith1.png);
+ background-position: -298px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_rainbow {
+ background-image: url(spritesmith1.png);
+ background-position: -364px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_rainbow {
+ background-image: url(spritesmith1.png);
+ background-position: -389px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_red {
+ background-image: url(spritesmith1.png);
+ background-position: -455px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_red {
+ background-image: url(spritesmith1.png);
+ background-position: -480px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_snowy {
+ background-image: url(spritesmith1.png);
+ background-position: -546px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_snowy {
+ background-image: url(spritesmith1.png);
+ background-position: -571px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_white {
+ background-image: url(spritesmith1.png);
+ background-position: -637px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_white {
+ background-image: url(spritesmith1.png);
+ background-position: -662px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_winternight {
+ background-image: url(spritesmith1.png);
+ background-position: -637px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_winternight {
+ background-image: url(spritesmith1.png);
+ background-position: -662px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_winterstar {
+ background-image: url(spritesmith1.png);
+ background-position: -637px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_winterstar {
+ background-image: url(spritesmith1.png);
+ background-position: -662px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_yellow {
+ background-image: url(spritesmith1.png);
+ background-position: -637px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_yellow {
+ background-image: url(spritesmith1.png);
+ background-position: -662px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_11_zombie {
+ background-image: url(spritesmith1.png);
+ background-position: -637px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_11_zombie {
+ background-image: url(spritesmith1.png);
+ background-position: -662px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_TRUred {
+ background-image: url(spritesmith1.png);
+ background-position: -637px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_TRUred {
+ background-image: url(spritesmith1.png);
+ background-position: -662px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_aurora {
+ background-image: url(spritesmith1.png);
+ background-position: -637px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_aurora {
+ background-image: url(spritesmith1.png);
+ background-position: -662px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_black {
+ background-image: url(spritesmith1.png);
+ background-position: 0px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_black {
+ background-image: url(spritesmith1.png);
+ background-position: -25px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_blond {
+ background-image: url(spritesmith1.png);
+ background-position: -91px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_blond {
+ background-image: url(spritesmith1.png);
+ background-position: -116px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_blue {
+ background-image: url(spritesmith1.png);
+ background-position: -182px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_blue {
+ background-image: url(spritesmith1.png);
+ background-position: -207px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_brown {
+ background-image: url(spritesmith1.png);
+ background-position: -273px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_brown {
+ background-image: url(spritesmith1.png);
+ background-position: -298px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_candycane {
+ background-image: url(spritesmith1.png);
+ background-position: -364px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_candycane {
+ background-image: url(spritesmith1.png);
+ background-position: -389px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_candycorn {
+ background-image: url(spritesmith1.png);
+ background-position: -455px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_candycorn {
+ background-image: url(spritesmith1.png);
+ background-position: -480px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_festive {
+ background-image: url(spritesmith1.png);
+ background-position: -546px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_festive {
+ background-image: url(spritesmith1.png);
+ background-position: -571px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_frost {
+ background-image: url(spritesmith1.png);
+ background-position: -637px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_frost {
+ background-image: url(spritesmith1.png);
+ background-position: -662px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_ghostwhite {
+ background-image: url(spritesmith1.png);
+ background-position: -728px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_ghostwhite {
+ background-image: url(spritesmith1.png);
+ background-position: -753px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_green {
+ background-image: url(spritesmith1.png);
+ background-position: -728px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_green {
+ background-image: url(spritesmith1.png);
+ background-position: -753px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_halloween {
+ background-image: url(spritesmith1.png);
+ background-position: -728px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_halloween {
+ background-image: url(spritesmith1.png);
+ background-position: -753px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_holly {
+ background-image: url(spritesmith1.png);
+ background-position: -728px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_holly {
+ background-image: url(spritesmith1.png);
+ background-position: -753px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_hollygreen {
+ background-image: url(spritesmith1.png);
+ background-position: -728px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_hollygreen {
+ background-image: url(spritesmith1.png);
+ background-position: -753px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_midnight {
+ background-image: url(spritesmith1.png);
+ background-position: -728px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_midnight {
+ background-image: url(spritesmith1.png);
+ background-position: -753px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_pblue {
+ background-image: url(spritesmith1.png);
+ background-position: -728px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_pblue {
+ background-image: url(spritesmith1.png);
+ background-position: -753px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_pblue2 {
+ background-image: url(spritesmith1.png);
+ background-position: -728px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_pblue2 {
+ background-image: url(spritesmith1.png);
+ background-position: -753px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_peppermint {
+ background-image: url(spritesmith1.png);
+ background-position: 0px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_peppermint {
+ background-image: url(spritesmith1.png);
+ background-position: -25px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_pgreen {
+ background-image: url(spritesmith1.png);
+ background-position: -91px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_pgreen {
+ background-image: url(spritesmith1.png);
+ background-position: -116px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_pgreen2 {
+ background-image: url(spritesmith1.png);
+ background-position: -182px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_pgreen2 {
+ background-image: url(spritesmith1.png);
+ background-position: -207px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_porange {
+ background-image: url(spritesmith1.png);
+ background-position: -273px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_porange {
+ background-image: url(spritesmith1.png);
+ background-position: -298px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_porange2 {
+ background-image: url(spritesmith1.png);
+ background-position: -364px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_porange2 {
+ background-image: url(spritesmith1.png);
+ background-position: -389px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_ppink {
+ background-image: url(spritesmith1.png);
+ background-position: -455px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_ppink {
+ background-image: url(spritesmith1.png);
+ background-position: -480px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_ppink2 {
+ background-image: url(spritesmith1.png);
+ background-position: -546px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_ppink2 {
+ background-image: url(spritesmith1.png);
+ background-position: -571px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_ppurple {
+ background-image: url(spritesmith1.png);
+ background-position: -637px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_ppurple {
+ background-image: url(spritesmith1.png);
+ background-position: -662px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_ppurple2 {
+ background-image: url(spritesmith1.png);
+ background-position: -728px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_ppurple2 {
+ background-image: url(spritesmith1.png);
+ background-position: -753px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_pumpkin {
+ background-image: url(spritesmith1.png);
+ background-position: -819px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_pumpkin {
+ background-image: url(spritesmith1.png);
+ background-position: -844px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_purple {
+ background-image: url(spritesmith1.png);
+ background-position: -819px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_purple {
+ background-image: url(spritesmith1.png);
+ background-position: -844px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_pyellow {
+ background-image: url(spritesmith1.png);
+ background-position: -819px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_pyellow {
+ background-image: url(spritesmith1.png);
+ background-position: -844px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_pyellow2 {
+ background-image: url(spritesmith1.png);
+ background-position: -819px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_pyellow2 {
+ background-image: url(spritesmith1.png);
+ background-position: -844px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_rainbow {
+ background-image: url(spritesmith1.png);
+ background-position: -819px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_rainbow {
+ background-image: url(spritesmith1.png);
+ background-position: -844px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_red {
+ background-image: url(spritesmith1.png);
+ background-position: -819px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_red {
+ background-image: url(spritesmith1.png);
+ background-position: -844px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_snowy {
+ background-image: url(spritesmith1.png);
+ background-position: -819px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_snowy {
+ background-image: url(spritesmith1.png);
+ background-position: -844px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_white {
+ background-image: url(spritesmith1.png);
+ background-position: -819px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_white {
+ background-image: url(spritesmith1.png);
+ background-position: -844px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_winternight {
+ background-image: url(spritesmith1.png);
+ background-position: -819px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_winternight {
+ background-image: url(spritesmith1.png);
+ background-position: -844px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_winterstar {
+ background-image: url(spritesmith1.png);
+ background-position: 0px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_winterstar {
+ background-image: url(spritesmith1.png);
+ background-position: -25px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_yellow {
+ background-image: url(spritesmith1.png);
+ background-position: -91px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_yellow {
+ background-image: url(spritesmith1.png);
+ background-position: -116px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_12_zombie {
+ background-image: url(spritesmith1.png);
+ background-position: -182px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_12_zombie {
+ background-image: url(spritesmith1.png);
+ background-position: -207px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_TRUred {
+ background-image: url(spritesmith1.png);
+ background-position: -273px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_TRUred {
+ background-image: url(spritesmith1.png);
+ background-position: -298px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_aurora {
+ background-image: url(spritesmith1.png);
+ background-position: -364px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_aurora {
+ background-image: url(spritesmith1.png);
+ background-position: -389px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_black {
+ background-image: url(spritesmith1.png);
+ background-position: -455px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_black {
+ background-image: url(spritesmith1.png);
+ background-position: -480px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_blond {
+ background-image: url(spritesmith1.png);
+ background-position: -546px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_blond {
+ background-image: url(spritesmith1.png);
+ background-position: -571px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_blue {
+ background-image: url(spritesmith1.png);
+ background-position: -637px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_blue {
+ background-image: url(spritesmith1.png);
+ background-position: -662px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_brown {
+ background-image: url(spritesmith1.png);
+ background-position: -728px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_brown {
+ background-image: url(spritesmith1.png);
+ background-position: -753px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_candycane {
+ background-image: url(spritesmith1.png);
+ background-position: -819px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_candycane {
+ background-image: url(spritesmith1.png);
+ background-position: -844px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_candycorn {
+ background-image: url(spritesmith1.png);
+ background-position: -910px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_candycorn {
+ background-image: url(spritesmith1.png);
+ background-position: -935px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_festive {
+ background-image: url(spritesmith1.png);
+ background-position: -910px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_festive {
+ background-image: url(spritesmith1.png);
+ background-position: -935px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_frost {
+ background-image: url(spritesmith1.png);
+ background-position: -910px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_frost {
+ background-image: url(spritesmith1.png);
+ background-position: -935px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_ghostwhite {
+ background-image: url(spritesmith1.png);
+ background-position: -910px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_ghostwhite {
+ background-image: url(spritesmith1.png);
+ background-position: -935px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_green {
+ background-image: url(spritesmith1.png);
+ background-position: -910px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_green {
+ background-image: url(spritesmith1.png);
+ background-position: -935px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_halloween {
+ background-image: url(spritesmith1.png);
+ background-position: -910px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_halloween {
+ background-image: url(spritesmith1.png);
+ background-position: -935px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_holly {
+ background-image: url(spritesmith1.png);
+ background-position: -910px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_holly {
+ background-image: url(spritesmith1.png);
+ background-position: -935px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_hollygreen {
+ background-image: url(spritesmith1.png);
+ background-position: -910px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_hollygreen {
+ background-image: url(spritesmith1.png);
+ background-position: -935px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_midnight {
+ background-image: url(spritesmith1.png);
+ background-position: -910px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_midnight {
+ background-image: url(spritesmith1.png);
+ background-position: -935px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_pblue {
+ background-image: url(spritesmith1.png);
+ background-position: -910px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_pblue {
+ background-image: url(spritesmith1.png);
+ background-position: -935px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_pblue2 {
+ background-image: url(spritesmith1.png);
+ background-position: 0px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_pblue2 {
+ background-image: url(spritesmith1.png);
+ background-position: -25px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_peppermint {
+ background-image: url(spritesmith1.png);
+ background-position: -91px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_peppermint {
+ background-image: url(spritesmith1.png);
+ background-position: -116px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_pgreen {
+ background-image: url(spritesmith1.png);
+ background-position: -182px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_pgreen {
+ background-image: url(spritesmith1.png);
+ background-position: -207px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_pgreen2 {
+ background-image: url(spritesmith1.png);
+ background-position: -273px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_pgreen2 {
+ background-image: url(spritesmith1.png);
+ background-position: -298px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_porange {
+ background-image: url(spritesmith1.png);
+ background-position: -364px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_porange {
+ background-image: url(spritesmith1.png);
+ background-position: -389px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_porange2 {
+ background-image: url(spritesmith1.png);
+ background-position: -455px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_porange2 {
+ background-image: url(spritesmith1.png);
+ background-position: -480px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_ppink {
+ background-image: url(spritesmith1.png);
+ background-position: -546px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_ppink {
+ background-image: url(spritesmith1.png);
+ background-position: -571px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_ppink2 {
+ background-image: url(spritesmith1.png);
+ background-position: -637px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_ppink2 {
+ background-image: url(spritesmith1.png);
+ background-position: -662px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_ppurple {
+ background-image: url(spritesmith1.png);
+ background-position: -728px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_ppurple {
+ background-image: url(spritesmith1.png);
+ background-position: -753px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_ppurple2 {
+ background-image: url(spritesmith1.png);
+ background-position: -819px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_ppurple2 {
+ background-image: url(spritesmith1.png);
+ background-position: -844px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_pumpkin {
+ background-image: url(spritesmith1.png);
+ background-position: -910px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_pumpkin {
+ background-image: url(spritesmith1.png);
+ background-position: -935px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_purple {
+ background-image: url(spritesmith1.png);
+ background-position: -1001px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_purple {
+ background-image: url(spritesmith1.png);
+ background-position: -1026px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_pyellow {
+ background-image: url(spritesmith1.png);
+ background-position: -1001px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_pyellow {
+ background-image: url(spritesmith1.png);
+ background-position: -1026px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_pyellow2 {
+ background-image: url(spritesmith1.png);
+ background-position: -1001px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_pyellow2 {
+ background-image: url(spritesmith1.png);
+ background-position: -1026px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_rainbow {
+ background-image: url(spritesmith1.png);
+ background-position: -1001px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_rainbow {
+ background-image: url(spritesmith1.png);
+ background-position: -1026px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_red {
+ background-image: url(spritesmith1.png);
+ background-position: -1001px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_red {
+ background-image: url(spritesmith1.png);
+ background-position: -1026px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_snowy {
+ background-image: url(spritesmith1.png);
+ background-position: -1001px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_snowy {
+ background-image: url(spritesmith1.png);
+ background-position: -1026px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_white {
+ background-image: url(spritesmith1.png);
+ background-position: -1001px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_white {
+ background-image: url(spritesmith1.png);
+ background-position: -1026px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_winternight {
+ background-image: url(spritesmith1.png);
+ background-position: -1001px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_winternight {
+ background-image: url(spritesmith1.png);
+ background-position: -1026px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_winterstar {
+ background-image: url(spritesmith1.png);
+ background-position: -1001px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_winterstar {
+ background-image: url(spritesmith1.png);
+ background-position: -1026px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_yellow {
+ background-image: url(spritesmith1.png);
+ background-position: -1001px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_yellow {
+ background-image: url(spritesmith1.png);
+ background-position: -1026px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_13_zombie {
+ background-image: url(spritesmith1.png);
+ background-position: -1001px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_13_zombie {
+ background-image: url(spritesmith1.png);
+ background-position: -1026px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_TRUred {
+ background-image: url(spritesmith1.png);
+ background-position: 0px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_TRUred {
+ background-image: url(spritesmith1.png);
+ background-position: -25px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_aurora {
+ background-image: url(spritesmith1.png);
+ background-position: -91px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_aurora {
+ background-image: url(spritesmith1.png);
+ background-position: -116px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_black {
+ background-image: url(spritesmith1.png);
+ background-position: -182px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_black {
+ background-image: url(spritesmith1.png);
+ background-position: -207px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_blond {
+ background-image: url(spritesmith1.png);
+ background-position: -273px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_blond {
+ background-image: url(spritesmith1.png);
+ background-position: -298px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_blue {
+ background-image: url(spritesmith1.png);
+ background-position: -364px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_blue {
+ background-image: url(spritesmith1.png);
+ background-position: -389px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_brown {
+ background-image: url(spritesmith1.png);
+ background-position: -455px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_brown {
+ background-image: url(spritesmith1.png);
+ background-position: -480px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_candycane {
+ background-image: url(spritesmith1.png);
+ background-position: -546px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_candycane {
+ background-image: url(spritesmith1.png);
+ background-position: -571px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_candycorn {
+ background-image: url(spritesmith1.png);
+ background-position: -637px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_candycorn {
+ background-image: url(spritesmith1.png);
+ background-position: -662px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_festive {
+ background-image: url(spritesmith1.png);
+ background-position: -728px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_festive {
+ background-image: url(spritesmith1.png);
+ background-position: -753px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_frost {
+ background-image: url(spritesmith1.png);
+ background-position: -819px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_frost {
+ background-image: url(spritesmith1.png);
+ background-position: -844px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_ghostwhite {
+ background-image: url(spritesmith1.png);
+ background-position: -910px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_ghostwhite {
+ background-image: url(spritesmith1.png);
+ background-position: -935px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_green {
+ background-image: url(spritesmith1.png);
+ background-position: -1001px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_green {
+ background-image: url(spritesmith1.png);
+ background-position: -1026px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_halloween {
+ background-image: url(spritesmith1.png);
+ background-position: -1092px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_halloween {
+ background-image: url(spritesmith1.png);
+ background-position: -1117px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_holly {
+ background-image: url(spritesmith1.png);
+ background-position: -1092px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_holly {
+ background-image: url(spritesmith1.png);
+ background-position: -1117px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_hollygreen {
+ background-image: url(spritesmith1.png);
+ background-position: -1092px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_hollygreen {
+ background-image: url(spritesmith1.png);
+ background-position: -1117px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_midnight {
+ background-image: url(spritesmith1.png);
+ background-position: -1092px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_midnight {
+ background-image: url(spritesmith1.png);
+ background-position: -1117px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_pblue {
+ background-image: url(spritesmith1.png);
+ background-position: -1092px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_pblue {
+ background-image: url(spritesmith1.png);
+ background-position: -1117px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_pblue2 {
+ background-image: url(spritesmith1.png);
+ background-position: -1092px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_pblue2 {
+ background-image: url(spritesmith1.png);
+ background-position: -1117px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_peppermint {
+ background-image: url(spritesmith1.png);
+ background-position: -1092px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_peppermint {
+ background-image: url(spritesmith1.png);
+ background-position: -1117px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_pgreen {
+ background-image: url(spritesmith1.png);
+ background-position: -1092px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_pgreen {
+ background-image: url(spritesmith1.png);
+ background-position: -1117px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_pgreen2 {
+ background-image: url(spritesmith1.png);
+ background-position: -1092px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_pgreen2 {
+ background-image: url(spritesmith1.png);
+ background-position: -1117px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_porange {
+ background-image: url(spritesmith1.png);
+ background-position: -1092px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_porange {
+ background-image: url(spritesmith1.png);
+ background-position: -1117px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_porange2 {
+ background-image: url(spritesmith1.png);
+ background-position: -1092px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_porange2 {
+ background-image: url(spritesmith1.png);
+ background-position: -1117px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_ppink {
+ background-image: url(spritesmith1.png);
+ background-position: -1092px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_ppink {
+ background-image: url(spritesmith1.png);
+ background-position: -1117px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_ppink2 {
+ background-image: url(spritesmith1.png);
+ background-position: 0px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_ppink2 {
+ background-image: url(spritesmith1.png);
+ background-position: -25px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_ppurple {
+ background-image: url(spritesmith1.png);
+ background-position: -91px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_ppurple {
+ background-image: url(spritesmith1.png);
+ background-position: -116px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_ppurple2 {
+ background-image: url(spritesmith1.png);
+ background-position: -182px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_ppurple2 {
+ background-image: url(spritesmith1.png);
+ background-position: -207px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_pumpkin {
+ background-image: url(spritesmith1.png);
+ background-position: -273px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_pumpkin {
+ background-image: url(spritesmith1.png);
+ background-position: -298px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_purple {
+ background-image: url(spritesmith1.png);
+ background-position: -364px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_purple {
+ background-image: url(spritesmith1.png);
+ background-position: -389px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_pyellow {
+ background-image: url(spritesmith1.png);
+ background-position: -455px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_pyellow {
+ background-image: url(spritesmith1.png);
+ background-position: -480px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_pyellow2 {
+ background-image: url(spritesmith1.png);
+ background-position: -546px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_pyellow2 {
+ background-image: url(spritesmith1.png);
+ background-position: -571px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_rainbow {
+ background-image: url(spritesmith1.png);
+ background-position: -637px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_rainbow {
+ background-image: url(spritesmith1.png);
+ background-position: -662px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_red {
+ background-image: url(spritesmith1.png);
+ background-position: -728px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_red {
+ background-image: url(spritesmith1.png);
+ background-position: -753px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_snowy {
+ background-image: url(spritesmith1.png);
+ background-position: -819px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_snowy {
+ background-image: url(spritesmith1.png);
+ background-position: -844px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_white {
+ background-image: url(spritesmith1.png);
+ background-position: -910px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_white {
+ background-image: url(spritesmith1.png);
+ background-position: -935px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_winternight {
+ background-image: url(spritesmith1.png);
+ background-position: -1001px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_winternight {
+ background-image: url(spritesmith1.png);
+ background-position: -1026px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_winterstar {
+ background-image: url(spritesmith1.png);
+ background-position: -1092px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_winterstar {
+ background-image: url(spritesmith1.png);
+ background-position: -1117px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_yellow {
+ background-image: url(spritesmith1.png);
+ background-position: -1183px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_yellow {
+ background-image: url(spritesmith1.png);
+ background-position: -1208px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_14_zombie {
+ background-image: url(spritesmith1.png);
+ background-position: -1183px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_14_zombie {
+ background-image: url(spritesmith1.png);
+ background-position: -1208px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_1_TRUred {
+ background-image: url(spritesmith1.png);
+ background-position: -1183px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_1_TRUred {
+ background-image: url(spritesmith1.png);
+ background-position: -1208px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_1_aurora {
+ background-image: url(spritesmith1.png);
+ background-position: -1183px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_1_aurora {
+ background-image: url(spritesmith1.png);
+ background-position: -1208px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_1_black {
+ background-image: url(spritesmith1.png);
+ background-position: -1183px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_1_black {
+ background-image: url(spritesmith1.png);
+ background-position: -1208px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_1_blond {
+ background-image: url(spritesmith1.png);
+ background-position: -1183px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_1_blond {
+ background-image: url(spritesmith1.png);
+ background-position: -1208px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_1_blue {
+ background-image: url(spritesmith1.png);
+ background-position: -1183px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_1_blue {
+ background-image: url(spritesmith1.png);
+ background-position: -1208px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_1_brown {
+ background-image: url(spritesmith1.png);
+ background-position: -1183px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_1_brown {
+ background-image: url(spritesmith1.png);
+ background-position: -1208px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_1_candycane {
+ background-image: url(spritesmith1.png);
+ background-position: -1183px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_1_candycane {
+ background-image: url(spritesmith1.png);
+ background-position: -1208px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_1_candycorn {
+ background-image: url(spritesmith1.png);
+ background-position: -1183px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_1_candycorn {
+ background-image: url(spritesmith1.png);
+ background-position: -1208px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_1_festive {
+ background-image: url(spritesmith1.png);
+ background-position: -1183px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_1_festive {
+ background-image: url(spritesmith1.png);
+ background-position: -1208px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_1_frost {
+ background-image: url(spritesmith1.png);
+ background-position: -1183px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_1_frost {
+ background-image: url(spritesmith1.png);
+ background-position: -1208px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_1_ghostwhite {
+ background-image: url(spritesmith1.png);
+ background-position: -1183px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_1_ghostwhite {
+ background-image: url(spritesmith1.png);
+ background-position: -1208px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_1_green {
+ background-image: url(spritesmith1.png);
+ background-position: 0px -1183px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_1_green {
+ background-image: url(spritesmith1.png);
+ background-position: -25px -1198px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_1_halloween {
+ background-image: url(spritesmith1.png);
+ background-position: -91px -1183px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_1_halloween {
+ background-image: url(spritesmith1.png);
+ background-position: -116px -1198px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_1_holly {
+ background-image: url(spritesmith1.png);
+ background-position: -182px -1183px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_1_holly {
+ background-image: url(spritesmith1.png);
+ background-position: -207px -1198px;
+ width: 60px;
+ height: 60px;
+}
.hair_base_1_hollygreen {
background-image: url(spritesmith1.png);
- background-position: -1092px -1183px;
+ background-position: -273px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_hollygreen {
background-image: url(spritesmith1.png);
- background-position: -1117px -1198px;
+ background-position: -298px -1198px;
width: 60px;
height: 60px;
}
.hair_base_1_midnight {
background-image: url(spritesmith1.png);
- background-position: -1183px -1183px;
+ background-position: -364px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_midnight {
background-image: url(spritesmith1.png);
- background-position: -1208px -1198px;
+ background-position: -389px -1198px;
width: 60px;
height: 60px;
}
.hair_base_1_pblue {
background-image: url(spritesmith1.png);
- background-position: -1274px 0px;
+ background-position: -455px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_pblue {
background-image: url(spritesmith1.png);
- background-position: -1299px -15px;
+ background-position: -480px -1198px;
width: 60px;
height: 60px;
}
.hair_base_1_pblue2 {
background-image: url(spritesmith1.png);
- background-position: -1274px -91px;
+ background-position: -546px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_pblue2 {
background-image: url(spritesmith1.png);
- background-position: -1299px -106px;
+ background-position: -571px -1198px;
width: 60px;
height: 60px;
}
.hair_base_1_peppermint {
background-image: url(spritesmith1.png);
- background-position: -1274px -182px;
+ background-position: -637px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_peppermint {
background-image: url(spritesmith1.png);
- background-position: -1299px -197px;
+ background-position: -662px -1198px;
width: 60px;
height: 60px;
}
.hair_base_1_pgreen {
background-image: url(spritesmith1.png);
- background-position: -1274px -273px;
+ background-position: -728px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_pgreen {
background-image: url(spritesmith1.png);
- background-position: -1299px -288px;
+ background-position: -753px -1198px;
width: 60px;
height: 60px;
}
.hair_base_1_pgreen2 {
background-image: url(spritesmith1.png);
- background-position: -1274px -364px;
+ background-position: -819px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_pgreen2 {
background-image: url(spritesmith1.png);
- background-position: -1299px -379px;
+ background-position: -844px -1198px;
width: 60px;
height: 60px;
}
.hair_base_1_porange {
background-image: url(spritesmith1.png);
- background-position: -1274px -455px;
+ background-position: -910px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_porange {
background-image: url(spritesmith1.png);
- background-position: -1299px -470px;
+ background-position: -935px -1198px;
width: 60px;
height: 60px;
}
.hair_base_1_porange2 {
background-image: url(spritesmith1.png);
- background-position: -1274px -546px;
+ background-position: 0px 0px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_porange2 {
background-image: url(spritesmith1.png);
- background-position: -1299px -561px;
+ background-position: -25px -15px;
width: 60px;
height: 60px;
}
.hair_base_1_ppink {
background-image: url(spritesmith1.png);
- background-position: -1274px -637px;
+ background-position: -1092px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_ppink {
background-image: url(spritesmith1.png);
- background-position: -1299px -652px;
+ background-position: -1117px -1198px;
width: 60px;
height: 60px;
}
.hair_base_1_ppink2 {
background-image: url(spritesmith1.png);
- background-position: -1274px -728px;
+ background-position: -1183px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_ppink2 {
background-image: url(spritesmith1.png);
- background-position: -1299px -743px;
+ background-position: -1208px -1198px;
width: 60px;
height: 60px;
}
.hair_base_1_ppurple {
background-image: url(spritesmith1.png);
- background-position: -1274px -819px;
+ background-position: -1274px 0px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_ppurple {
background-image: url(spritesmith1.png);
- background-position: -1299px -834px;
+ background-position: -1299px -15px;
width: 60px;
height: 60px;
}
.hair_base_1_ppurple2 {
background-image: url(spritesmith1.png);
- background-position: -1274px -910px;
+ background-position: -1274px -91px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_ppurple2 {
background-image: url(spritesmith1.png);
- background-position: -1299px -925px;
+ background-position: -1299px -106px;
width: 60px;
height: 60px;
}
.hair_base_1_pumpkin {
background-image: url(spritesmith1.png);
- background-position: -1274px -1001px;
+ background-position: -1274px -182px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_pumpkin {
background-image: url(spritesmith1.png);
- background-position: -1299px -1016px;
+ background-position: -1299px -197px;
width: 60px;
height: 60px;
}
.hair_base_1_purple {
background-image: url(spritesmith1.png);
- background-position: -1274px -1092px;
+ background-position: -1274px -273px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_purple {
background-image: url(spritesmith1.png);
- background-position: -1299px -1107px;
+ background-position: -1299px -288px;
width: 60px;
height: 60px;
}
.hair_base_1_pyellow {
background-image: url(spritesmith1.png);
- background-position: -1274px -1183px;
+ background-position: -1274px -364px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_pyellow {
background-image: url(spritesmith1.png);
- background-position: -1299px -1198px;
+ background-position: -1299px -379px;
width: 60px;
height: 60px;
}
.hair_base_1_pyellow2 {
background-image: url(spritesmith1.png);
- background-position: 0px -1274px;
+ background-position: -1274px -455px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_pyellow2 {
background-image: url(spritesmith1.png);
- background-position: -25px -1289px;
+ background-position: -1299px -470px;
width: 60px;
height: 60px;
}
.hair_base_1_rainbow {
background-image: url(spritesmith1.png);
- background-position: -91px -1274px;
+ background-position: -1274px -546px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_rainbow {
background-image: url(spritesmith1.png);
- background-position: -116px -1289px;
+ background-position: -1299px -561px;
width: 60px;
height: 60px;
}
.hair_base_1_red {
background-image: url(spritesmith1.png);
- background-position: -182px -1274px;
+ background-position: -1274px -637px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_red {
background-image: url(spritesmith1.png);
- background-position: -207px -1289px;
+ background-position: -1299px -652px;
width: 60px;
height: 60px;
}
.hair_base_1_snowy {
background-image: url(spritesmith1.png);
- background-position: -273px -1274px;
+ background-position: -1274px -728px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_snowy {
background-image: url(spritesmith1.png);
- background-position: -298px -1289px;
+ background-position: -1299px -743px;
width: 60px;
height: 60px;
}
.hair_base_1_white {
background-image: url(spritesmith1.png);
- background-position: -364px -1274px;
+ background-position: -1274px -819px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_white {
background-image: url(spritesmith1.png);
- background-position: -389px -1289px;
+ background-position: -1299px -834px;
width: 60px;
height: 60px;
}
.hair_base_1_winternight {
background-image: url(spritesmith1.png);
- background-position: -455px -1274px;
+ background-position: -1274px -910px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_winternight {
background-image: url(spritesmith1.png);
- background-position: -480px -1289px;
+ background-position: -1299px -925px;
width: 60px;
height: 60px;
}
.hair_base_1_winterstar {
background-image: url(spritesmith1.png);
- background-position: -546px -1274px;
+ background-position: -1274px -1001px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_winterstar {
background-image: url(spritesmith1.png);
- background-position: -571px -1289px;
+ background-position: -1299px -1016px;
width: 60px;
height: 60px;
}
.hair_base_1_yellow {
background-image: url(spritesmith1.png);
- background-position: -637px -1274px;
+ background-position: -1274px -1092px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_yellow {
background-image: url(spritesmith1.png);
- background-position: -662px -1289px;
+ background-position: -1299px -1107px;
width: 60px;
height: 60px;
}
.hair_base_1_zombie {
background-image: url(spritesmith1.png);
- background-position: -728px -1274px;
+ background-position: -1274px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_1_zombie {
background-image: url(spritesmith1.png);
- background-position: -753px -1289px;
+ background-position: -1299px -1198px;
width: 60px;
height: 60px;
}
.hair_base_2_TRUred {
background-image: url(spritesmith1.png);
- background-position: -819px -1274px;
+ background-position: 0px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_TRUred {
background-image: url(spritesmith1.png);
- background-position: -844px -1289px;
+ background-position: -25px -1289px;
width: 60px;
height: 60px;
}
.hair_base_2_aurora {
background-image: url(spritesmith1.png);
- background-position: -910px -1274px;
+ background-position: -91px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_aurora {
background-image: url(spritesmith1.png);
- background-position: -935px -1289px;
+ background-position: -116px -1289px;
width: 60px;
height: 60px;
}
.hair_base_2_black {
background-image: url(spritesmith1.png);
- background-position: -1001px -1274px;
+ background-position: -182px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_black {
background-image: url(spritesmith1.png);
- background-position: -1026px -1289px;
+ background-position: -207px -1289px;
width: 60px;
height: 60px;
}
.hair_base_2_blond {
background-image: url(spritesmith1.png);
- background-position: -1092px -1274px;
+ background-position: -273px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_blond {
background-image: url(spritesmith1.png);
- background-position: -1117px -1289px;
+ background-position: -298px -1289px;
width: 60px;
height: 60px;
}
.hair_base_2_blue {
background-image: url(spritesmith1.png);
- background-position: -1183px -1274px;
+ background-position: -364px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_blue {
background-image: url(spritesmith1.png);
- background-position: -1208px -1289px;
+ background-position: -389px -1289px;
width: 60px;
height: 60px;
}
.hair_base_2_brown {
background-image: url(spritesmith1.png);
- background-position: -1274px -1274px;
+ background-position: -455px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_brown {
background-image: url(spritesmith1.png);
- background-position: -1299px -1289px;
+ background-position: -480px -1289px;
width: 60px;
height: 60px;
}
.hair_base_2_candycane {
background-image: url(spritesmith1.png);
- background-position: -1365px 0px;
+ background-position: -546px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_candycane {
background-image: url(spritesmith1.png);
- background-position: -1390px -15px;
+ background-position: -571px -1289px;
width: 60px;
height: 60px;
}
.hair_base_2_candycorn {
background-image: url(spritesmith1.png);
- background-position: -1365px -91px;
+ background-position: -637px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_candycorn {
background-image: url(spritesmith1.png);
- background-position: -1390px -106px;
+ background-position: -662px -1289px;
width: 60px;
height: 60px;
}
.hair_base_2_festive {
background-image: url(spritesmith1.png);
- background-position: -1365px -182px;
+ background-position: -728px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_festive {
background-image: url(spritesmith1.png);
- background-position: -1390px -197px;
+ background-position: -753px -1289px;
width: 60px;
height: 60px;
}
.hair_base_2_frost {
background-image: url(spritesmith1.png);
- background-position: -1365px -273px;
+ background-position: -819px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_frost {
background-image: url(spritesmith1.png);
- background-position: -1390px -288px;
+ background-position: -844px -1289px;
width: 60px;
height: 60px;
}
.hair_base_2_ghostwhite {
background-image: url(spritesmith1.png);
- background-position: -1365px -364px;
+ background-position: -910px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_ghostwhite {
background-image: url(spritesmith1.png);
- background-position: -1390px -379px;
+ background-position: -935px -1289px;
width: 60px;
height: 60px;
}
.hair_base_2_green {
background-image: url(spritesmith1.png);
- background-position: -1365px -455px;
+ background-position: -1001px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_green {
background-image: url(spritesmith1.png);
- background-position: -1390px -470px;
+ background-position: -1026px -1289px;
width: 60px;
height: 60px;
}
.hair_base_2_halloween {
background-image: url(spritesmith1.png);
- background-position: -1365px -546px;
+ background-position: -1092px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_halloween {
background-image: url(spritesmith1.png);
- background-position: -1390px -561px;
+ background-position: -1117px -1289px;
width: 60px;
height: 60px;
}
.hair_base_2_holly {
background-image: url(spritesmith1.png);
- background-position: -1365px -637px;
+ background-position: -1183px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_holly {
background-image: url(spritesmith1.png);
- background-position: -1390px -652px;
+ background-position: -1208px -1289px;
width: 60px;
height: 60px;
}
.hair_base_2_hollygreen {
background-image: url(spritesmith1.png);
- background-position: -1365px -728px;
+ background-position: -1274px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_hollygreen {
background-image: url(spritesmith1.png);
- background-position: -1390px -743px;
+ background-position: -1299px -1289px;
width: 60px;
height: 60px;
}
.hair_base_2_midnight {
background-image: url(spritesmith1.png);
- background-position: -1365px -819px;
+ background-position: -1365px 0px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_midnight {
background-image: url(spritesmith1.png);
- background-position: -1390px -834px;
+ background-position: -1390px -15px;
width: 60px;
height: 60px;
}
.hair_base_2_pblue {
background-image: url(spritesmith1.png);
- background-position: -1365px -910px;
+ background-position: -1365px -91px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_pblue {
background-image: url(spritesmith1.png);
- background-position: -1390px -925px;
+ background-position: -1390px -106px;
width: 60px;
height: 60px;
}
.hair_base_2_pblue2 {
background-image: url(spritesmith1.png);
- background-position: -1365px -1001px;
+ background-position: -1365px -182px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_pblue2 {
background-image: url(spritesmith1.png);
- background-position: -1390px -1016px;
+ background-position: -1390px -197px;
width: 60px;
height: 60px;
}
.hair_base_2_peppermint {
background-image: url(spritesmith1.png);
- background-position: -1365px -1092px;
+ background-position: -1365px -273px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_peppermint {
background-image: url(spritesmith1.png);
- background-position: -1390px -1107px;
+ background-position: -1390px -288px;
width: 60px;
height: 60px;
}
.hair_base_2_pgreen {
background-image: url(spritesmith1.png);
- background-position: -1365px -1183px;
+ background-position: -1365px -364px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_pgreen {
background-image: url(spritesmith1.png);
- background-position: -1390px -1198px;
+ background-position: -1390px -379px;
width: 60px;
height: 60px;
}
.hair_base_2_pgreen2 {
background-image: url(spritesmith1.png);
- background-position: -1365px -1274px;
+ background-position: -1365px -455px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_pgreen2 {
background-image: url(spritesmith1.png);
- background-position: -1390px -1289px;
+ background-position: -1390px -470px;
width: 60px;
height: 60px;
}
.hair_base_2_porange {
background-image: url(spritesmith1.png);
- background-position: 0px -1365px;
+ background-position: -1365px -546px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_porange {
background-image: url(spritesmith1.png);
- background-position: -25px -1380px;
+ background-position: -1390px -561px;
width: 60px;
height: 60px;
}
.hair_base_2_porange2 {
background-image: url(spritesmith1.png);
- background-position: -91px -1365px;
+ background-position: -1365px -637px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_porange2 {
background-image: url(spritesmith1.png);
- background-position: -116px -1380px;
+ background-position: -1390px -652px;
width: 60px;
height: 60px;
}
.hair_base_2_ppink {
background-image: url(spritesmith1.png);
- background-position: -182px -1365px;
+ background-position: -1365px -728px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_ppink {
background-image: url(spritesmith1.png);
- background-position: -207px -1380px;
+ background-position: -1390px -743px;
width: 60px;
height: 60px;
}
.hair_base_2_ppink2 {
background-image: url(spritesmith1.png);
- background-position: -273px -1365px;
+ background-position: -1365px -819px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_ppink2 {
background-image: url(spritesmith1.png);
- background-position: -298px -1380px;
+ background-position: -1390px -834px;
width: 60px;
height: 60px;
}
.hair_base_2_ppurple {
background-image: url(spritesmith1.png);
- background-position: -364px -1365px;
+ background-position: -1365px -910px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_ppurple {
background-image: url(spritesmith1.png);
- background-position: -389px -1380px;
+ background-position: -1390px -925px;
width: 60px;
height: 60px;
}
.hair_base_2_ppurple2 {
background-image: url(spritesmith1.png);
- background-position: -455px -1365px;
+ background-position: -1365px -1001px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_ppurple2 {
background-image: url(spritesmith1.png);
- background-position: -480px -1380px;
+ background-position: -1390px -1016px;
width: 60px;
height: 60px;
}
.hair_base_2_pumpkin {
background-image: url(spritesmith1.png);
- background-position: -546px -1365px;
+ background-position: -1365px -1092px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_pumpkin {
background-image: url(spritesmith1.png);
- background-position: -571px -1380px;
+ background-position: -1390px -1107px;
width: 60px;
height: 60px;
}
.hair_base_2_purple {
background-image: url(spritesmith1.png);
- background-position: -637px -1365px;
+ background-position: -1365px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_purple {
background-image: url(spritesmith1.png);
- background-position: -662px -1380px;
+ background-position: -1390px -1198px;
width: 60px;
height: 60px;
}
.hair_base_2_pyellow {
background-image: url(spritesmith1.png);
- background-position: -728px -1365px;
+ background-position: -1365px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_pyellow {
background-image: url(spritesmith1.png);
- background-position: -753px -1380px;
+ background-position: -1390px -1289px;
width: 60px;
height: 60px;
}
.hair_base_2_pyellow2 {
background-image: url(spritesmith1.png);
- background-position: -819px -1365px;
+ background-position: 0px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_pyellow2 {
background-image: url(spritesmith1.png);
- background-position: -844px -1380px;
+ background-position: -25px -1380px;
width: 60px;
height: 60px;
}
.hair_base_2_rainbow {
background-image: url(spritesmith1.png);
- background-position: -910px -1365px;
+ background-position: -91px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_rainbow {
background-image: url(spritesmith1.png);
- background-position: -935px -1380px;
+ background-position: -116px -1380px;
width: 60px;
height: 60px;
}
.hair_base_2_red {
background-image: url(spritesmith1.png);
- background-position: -1001px -1365px;
+ background-position: -182px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_red {
background-image: url(spritesmith1.png);
- background-position: -1026px -1380px;
+ background-position: -207px -1380px;
width: 60px;
height: 60px;
}
.hair_base_2_snowy {
background-image: url(spritesmith1.png);
- background-position: -1092px -1365px;
+ background-position: -273px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_snowy {
background-image: url(spritesmith1.png);
- background-position: -1117px -1380px;
+ background-position: -298px -1380px;
width: 60px;
height: 60px;
}
.hair_base_2_white {
background-image: url(spritesmith1.png);
- background-position: -1183px -1365px;
+ background-position: -364px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_white {
background-image: url(spritesmith1.png);
- background-position: -1208px -1380px;
+ background-position: -389px -1380px;
width: 60px;
height: 60px;
}
.hair_base_2_winternight {
background-image: url(spritesmith1.png);
- background-position: -1274px -1365px;
+ background-position: -455px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_winternight {
background-image: url(spritesmith1.png);
- background-position: -1299px -1380px;
+ background-position: -480px -1380px;
width: 60px;
height: 60px;
}
.hair_base_2_winterstar {
background-image: url(spritesmith1.png);
- background-position: -1365px -1365px;
+ background-position: -546px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_winterstar {
background-image: url(spritesmith1.png);
- background-position: -1390px -1380px;
+ background-position: -571px -1380px;
width: 60px;
height: 60px;
}
.hair_base_2_yellow {
background-image: url(spritesmith1.png);
- background-position: -1456px 0px;
+ background-position: -637px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_yellow {
background-image: url(spritesmith1.png);
- background-position: -1481px -15px;
+ background-position: -662px -1380px;
width: 60px;
height: 60px;
}
.hair_base_2_zombie {
background-image: url(spritesmith1.png);
- background-position: -1456px -91px;
+ background-position: -728px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_2_zombie {
background-image: url(spritesmith1.png);
- background-position: -1481px -106px;
+ background-position: -753px -1380px;
width: 60px;
height: 60px;
}
.hair_base_3_TRUred {
background-image: url(spritesmith1.png);
- background-position: -1456px -182px;
+ background-position: -819px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_TRUred {
background-image: url(spritesmith1.png);
- background-position: -1481px -197px;
+ background-position: -844px -1380px;
width: 60px;
height: 60px;
}
.hair_base_3_aurora {
background-image: url(spritesmith1.png);
- background-position: -1456px -273px;
+ background-position: -910px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_aurora {
background-image: url(spritesmith1.png);
- background-position: -1481px -288px;
+ background-position: -935px -1380px;
width: 60px;
height: 60px;
}
.hair_base_3_black {
background-image: url(spritesmith1.png);
- background-position: -1456px -364px;
+ background-position: -1001px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_black {
background-image: url(spritesmith1.png);
- background-position: -1481px -379px;
+ background-position: -1026px -1380px;
width: 60px;
height: 60px;
}
.hair_base_3_blond {
background-image: url(spritesmith1.png);
- background-position: -1456px -455px;
+ background-position: -1092px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_blond {
background-image: url(spritesmith1.png);
- background-position: -1481px -470px;
+ background-position: -1117px -1380px;
width: 60px;
height: 60px;
}
.hair_base_3_blue {
background-image: url(spritesmith1.png);
- background-position: -1456px -546px;
+ background-position: -1183px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_blue {
background-image: url(spritesmith1.png);
- background-position: -1481px -561px;
+ background-position: -1208px -1380px;
width: 60px;
height: 60px;
}
.hair_base_3_brown {
background-image: url(spritesmith1.png);
- background-position: -1456px -637px;
+ background-position: -1274px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_brown {
background-image: url(spritesmith1.png);
- background-position: -1481px -652px;
+ background-position: -1299px -1380px;
width: 60px;
height: 60px;
}
.hair_base_3_candycane {
background-image: url(spritesmith1.png);
- background-position: -1456px -728px;
+ background-position: -1365px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_candycane {
background-image: url(spritesmith1.png);
- background-position: -1481px -743px;
+ background-position: -1390px -1380px;
width: 60px;
height: 60px;
}
.hair_base_3_candycorn {
background-image: url(spritesmith1.png);
- background-position: -1456px -819px;
+ background-position: -1456px 0px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_candycorn {
background-image: url(spritesmith1.png);
- background-position: -1481px -834px;
+ background-position: -1481px -15px;
width: 60px;
height: 60px;
}
.hair_base_3_festive {
background-image: url(spritesmith1.png);
- background-position: -1456px -910px;
+ background-position: -1456px -91px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_festive {
background-image: url(spritesmith1.png);
- background-position: -1481px -925px;
+ background-position: -1481px -106px;
width: 60px;
height: 60px;
}
.hair_base_3_frost {
background-image: url(spritesmith1.png);
- background-position: -1456px -1001px;
+ background-position: -1456px -182px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_frost {
background-image: url(spritesmith1.png);
- background-position: -1481px -1016px;
+ background-position: -1481px -197px;
width: 60px;
height: 60px;
}
.hair_base_3_ghostwhite {
background-image: url(spritesmith1.png);
- background-position: -1456px -1092px;
+ background-position: -1456px -273px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_ghostwhite {
background-image: url(spritesmith1.png);
- background-position: -1481px -1107px;
+ background-position: -1481px -288px;
width: 60px;
height: 60px;
}
.hair_base_3_green {
background-image: url(spritesmith1.png);
- background-position: -1456px -1183px;
+ background-position: -1456px -364px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_green {
background-image: url(spritesmith1.png);
- background-position: -1481px -1198px;
+ background-position: -1481px -379px;
width: 60px;
height: 60px;
}
.hair_base_3_halloween {
background-image: url(spritesmith1.png);
- background-position: -1456px -1274px;
+ background-position: -1456px -455px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_halloween {
background-image: url(spritesmith1.png);
- background-position: -1481px -1289px;
+ background-position: -1481px -470px;
width: 60px;
height: 60px;
}
.hair_base_3_holly {
background-image: url(spritesmith1.png);
- background-position: -1456px -1365px;
+ background-position: -1456px -546px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_holly {
background-image: url(spritesmith1.png);
- background-position: -1481px -1380px;
+ background-position: -1481px -561px;
width: 60px;
height: 60px;
}
.hair_base_3_hollygreen {
background-image: url(spritesmith1.png);
- background-position: 0px -1456px;
+ background-position: -1456px -637px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_hollygreen {
background-image: url(spritesmith1.png);
- background-position: -25px -1471px;
+ background-position: -1481px -652px;
width: 60px;
height: 60px;
}
.hair_base_3_midnight {
background-image: url(spritesmith1.png);
- background-position: -91px -1456px;
+ background-position: -1456px -728px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_midnight {
background-image: url(spritesmith1.png);
- background-position: -116px -1471px;
+ background-position: -1481px -743px;
width: 60px;
height: 60px;
}
.hair_base_3_pblue {
background-image: url(spritesmith1.png);
- background-position: -182px -1456px;
+ background-position: -1456px -819px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_pblue {
background-image: url(spritesmith1.png);
- background-position: -207px -1471px;
+ background-position: -1481px -834px;
width: 60px;
height: 60px;
}
.hair_base_3_pblue2 {
background-image: url(spritesmith1.png);
- background-position: -273px -1456px;
+ background-position: -1456px -910px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_pblue2 {
background-image: url(spritesmith1.png);
- background-position: -298px -1471px;
+ background-position: -1481px -925px;
width: 60px;
height: 60px;
}
.hair_base_3_peppermint {
background-image: url(spritesmith1.png);
- background-position: -364px -1456px;
+ background-position: -1456px -1001px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_peppermint {
background-image: url(spritesmith1.png);
- background-position: -389px -1471px;
+ background-position: -1481px -1016px;
width: 60px;
height: 60px;
}
.hair_base_3_pgreen {
background-image: url(spritesmith1.png);
- background-position: -455px -1456px;
+ background-position: -1456px -1092px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_pgreen {
background-image: url(spritesmith1.png);
- background-position: -480px -1471px;
+ background-position: -1481px -1107px;
width: 60px;
height: 60px;
}
.hair_base_3_pgreen2 {
background-image: url(spritesmith1.png);
- background-position: -546px -1456px;
+ background-position: -1456px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_pgreen2 {
background-image: url(spritesmith1.png);
- background-position: -571px -1471px;
+ background-position: -1481px -1198px;
width: 60px;
height: 60px;
}
.hair_base_3_porange {
background-image: url(spritesmith1.png);
- background-position: -637px -1456px;
+ background-position: -1456px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_porange {
background-image: url(spritesmith1.png);
- background-position: -662px -1471px;
+ background-position: -1481px -1289px;
width: 60px;
height: 60px;
}
.hair_base_3_porange2 {
background-image: url(spritesmith1.png);
- background-position: -728px -1456px;
+ background-position: -1456px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_porange2 {
background-image: url(spritesmith1.png);
- background-position: -753px -1471px;
+ background-position: -1481px -1380px;
width: 60px;
height: 60px;
}
.hair_base_3_ppink {
background-image: url(spritesmith1.png);
- background-position: -819px -1456px;
+ background-position: 0px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_ppink {
background-image: url(spritesmith1.png);
- background-position: -844px -1471px;
+ background-position: -25px -1471px;
width: 60px;
height: 60px;
}
.hair_base_3_ppink2 {
background-image: url(spritesmith1.png);
- background-position: -910px -1456px;
+ background-position: -91px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_ppink2 {
background-image: url(spritesmith1.png);
- background-position: -935px -1471px;
+ background-position: -116px -1471px;
width: 60px;
height: 60px;
}
.hair_base_3_ppurple {
background-image: url(spritesmith1.png);
- background-position: -1001px -1456px;
+ background-position: -182px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_ppurple {
background-image: url(spritesmith1.png);
- background-position: -1026px -1471px;
+ background-position: -207px -1471px;
width: 60px;
height: 60px;
}
.hair_base_3_ppurple2 {
background-image: url(spritesmith1.png);
- background-position: -1092px -1456px;
+ background-position: -273px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_ppurple2 {
background-image: url(spritesmith1.png);
- background-position: -1117px -1471px;
+ background-position: -298px -1471px;
width: 60px;
height: 60px;
}
.hair_base_3_pumpkin {
background-image: url(spritesmith1.png);
- background-position: -1183px -1456px;
+ background-position: -364px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_pumpkin {
background-image: url(spritesmith1.png);
- background-position: -1208px -1471px;
+ background-position: -389px -1471px;
width: 60px;
height: 60px;
}
.hair_base_3_purple {
background-image: url(spritesmith1.png);
- background-position: -1274px -1456px;
+ background-position: -455px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_purple {
background-image: url(spritesmith1.png);
- background-position: -1299px -1471px;
+ background-position: -480px -1471px;
width: 60px;
height: 60px;
}
.hair_base_3_pyellow {
background-image: url(spritesmith1.png);
- background-position: -1365px -1456px;
+ background-position: -546px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_pyellow {
background-image: url(spritesmith1.png);
- background-position: -1390px -1471px;
+ background-position: -571px -1471px;
width: 60px;
height: 60px;
}
.hair_base_3_pyellow2 {
background-image: url(spritesmith1.png);
- background-position: -1456px -1456px;
+ background-position: -637px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_pyellow2 {
background-image: url(spritesmith1.png);
- background-position: -1481px -1471px;
+ background-position: -662px -1471px;
width: 60px;
height: 60px;
}
.hair_base_3_rainbow {
background-image: url(spritesmith1.png);
- background-position: -1547px 0px;
+ background-position: -728px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_rainbow {
background-image: url(spritesmith1.png);
- background-position: -1572px -15px;
+ background-position: -753px -1471px;
width: 60px;
height: 60px;
}
.hair_base_3_red {
background-image: url(spritesmith1.png);
- background-position: -1547px -91px;
+ background-position: -819px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_red {
background-image: url(spritesmith1.png);
- background-position: -1572px -106px;
+ background-position: -844px -1471px;
width: 60px;
height: 60px;
}
.hair_base_3_snowy {
background-image: url(spritesmith1.png);
- background-position: -1547px -182px;
+ background-position: -910px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_snowy {
background-image: url(spritesmith1.png);
- background-position: -1572px -197px;
+ background-position: -935px -1471px;
width: 60px;
height: 60px;
}
.hair_base_3_white {
background-image: url(spritesmith1.png);
- background-position: -1547px -273px;
+ background-position: -1001px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_white {
background-image: url(spritesmith1.png);
- background-position: -1572px -288px;
+ background-position: -1026px -1471px;
width: 60px;
height: 60px;
}
.hair_base_3_winternight {
background-image: url(spritesmith1.png);
- background-position: -1547px -364px;
+ background-position: -1092px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_winternight {
background-image: url(spritesmith1.png);
- background-position: -1572px -379px;
+ background-position: -1117px -1471px;
width: 60px;
height: 60px;
}
.hair_base_3_winterstar {
background-image: url(spritesmith1.png);
- background-position: -1547px -455px;
+ background-position: -1183px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_winterstar {
background-image: url(spritesmith1.png);
- background-position: -1572px -470px;
+ background-position: -1208px -1471px;
width: 60px;
height: 60px;
}
.hair_base_3_yellow {
background-image: url(spritesmith1.png);
- background-position: -1547px -546px;
+ background-position: -1274px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_yellow {
background-image: url(spritesmith1.png);
- background-position: -1572px -561px;
+ background-position: -1299px -1471px;
width: 60px;
height: 60px;
}
.hair_base_3_zombie {
background-image: url(spritesmith1.png);
- background-position: -1547px -637px;
+ background-position: -1365px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_3_zombie {
background-image: url(spritesmith1.png);
- background-position: -1572px -652px;
+ background-position: -1390px -1471px;
width: 60px;
height: 60px;
}
.hair_base_4_TRUred {
background-image: url(spritesmith1.png);
- background-position: -1547px -728px;
+ background-position: -1456px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_TRUred {
background-image: url(spritesmith1.png);
- background-position: -1572px -743px;
+ background-position: -1481px -1471px;
width: 60px;
height: 60px;
}
.hair_base_4_aurora {
background-image: url(spritesmith1.png);
- background-position: -1547px -819px;
+ background-position: -1547px 0px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_aurora {
background-image: url(spritesmith1.png);
- background-position: -1572px -834px;
+ background-position: -1572px -15px;
width: 60px;
height: 60px;
}
.hair_base_4_black {
background-image: url(spritesmith1.png);
- background-position: -1547px -910px;
+ background-position: -1547px -91px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_black {
background-image: url(spritesmith1.png);
- background-position: -1572px -925px;
+ background-position: -1572px -106px;
width: 60px;
height: 60px;
}
.hair_base_4_blond {
background-image: url(spritesmith1.png);
- background-position: -1547px -1001px;
+ background-position: -1547px -182px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_blond {
background-image: url(spritesmith1.png);
- background-position: -1572px -1016px;
+ background-position: -1572px -197px;
width: 60px;
height: 60px;
}
.hair_base_4_blue {
background-image: url(spritesmith1.png);
- background-position: -1547px -1092px;
+ background-position: -1547px -273px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_blue {
background-image: url(spritesmith1.png);
- background-position: -1572px -1107px;
+ background-position: -1572px -288px;
width: 60px;
height: 60px;
}
.hair_base_4_brown {
background-image: url(spritesmith1.png);
- background-position: -1547px -1183px;
+ background-position: -1547px -364px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_brown {
background-image: url(spritesmith1.png);
- background-position: -1572px -1198px;
+ background-position: -1572px -379px;
width: 60px;
height: 60px;
}
.hair_base_4_candycane {
background-image: url(spritesmith1.png);
- background-position: -1547px -1274px;
+ background-position: -1547px -455px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_candycane {
background-image: url(spritesmith1.png);
- background-position: -1572px -1289px;
+ background-position: -1572px -470px;
width: 60px;
height: 60px;
}
.hair_base_4_candycorn {
background-image: url(spritesmith1.png);
- background-position: -1547px -1365px;
+ background-position: -1547px -546px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_candycorn {
background-image: url(spritesmith1.png);
- background-position: -1572px -1380px;
+ background-position: -1572px -561px;
width: 60px;
height: 60px;
}
.hair_base_4_festive {
background-image: url(spritesmith1.png);
- background-position: -1547px -1456px;
+ background-position: -1547px -637px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_festive {
background-image: url(spritesmith1.png);
- background-position: -1572px -1471px;
+ background-position: -1572px -652px;
width: 60px;
height: 60px;
}
.hair_base_4_frost {
background-image: url(spritesmith1.png);
- background-position: 0px -1547px;
+ background-position: -1547px -728px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_frost {
background-image: url(spritesmith1.png);
- background-position: -25px -1562px;
+ background-position: -1572px -743px;
width: 60px;
height: 60px;
}
.hair_base_4_ghostwhite {
background-image: url(spritesmith1.png);
- background-position: -91px -1547px;
+ background-position: -1547px -819px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_ghostwhite {
background-image: url(spritesmith1.png);
- background-position: -116px -1562px;
+ background-position: -1572px -834px;
width: 60px;
height: 60px;
}
.hair_base_4_green {
background-image: url(spritesmith1.png);
- background-position: -182px -1547px;
+ background-position: -1547px -910px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_green {
background-image: url(spritesmith1.png);
- background-position: -207px -1562px;
+ background-position: -1572px -925px;
width: 60px;
height: 60px;
}
.hair_base_4_halloween {
background-image: url(spritesmith1.png);
- background-position: -273px -1547px;
+ background-position: -1547px -1001px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_halloween {
background-image: url(spritesmith1.png);
- background-position: -298px -1562px;
+ background-position: -1572px -1016px;
width: 60px;
height: 60px;
}
.hair_base_4_holly {
background-image: url(spritesmith1.png);
- background-position: -364px -1547px;
+ background-position: -1547px -1092px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_holly {
background-image: url(spritesmith1.png);
- background-position: -389px -1562px;
+ background-position: -1572px -1107px;
width: 60px;
height: 60px;
}
.hair_base_4_hollygreen {
background-image: url(spritesmith1.png);
- background-position: -455px -1547px;
+ background-position: -1547px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_hollygreen {
background-image: url(spritesmith1.png);
- background-position: -480px -1562px;
+ background-position: -1572px -1198px;
width: 60px;
height: 60px;
}
.hair_base_4_midnight {
background-image: url(spritesmith1.png);
- background-position: -546px -1547px;
+ background-position: -1547px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_midnight {
background-image: url(spritesmith1.png);
- background-position: -571px -1562px;
+ background-position: -1572px -1289px;
width: 60px;
height: 60px;
}
.hair_base_4_pblue {
background-image: url(spritesmith1.png);
- background-position: -637px -1547px;
+ background-position: -1547px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_pblue {
background-image: url(spritesmith1.png);
- background-position: -662px -1562px;
+ background-position: -1572px -1380px;
width: 60px;
height: 60px;
}
.hair_base_4_pblue2 {
background-image: url(spritesmith1.png);
- background-position: -728px -1547px;
+ background-position: -1547px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_pblue2 {
background-image: url(spritesmith1.png);
- background-position: -753px -1562px;
+ background-position: -1572px -1471px;
width: 60px;
height: 60px;
}
.hair_base_4_peppermint {
background-image: url(spritesmith1.png);
- background-position: -819px -1547px;
+ background-position: 0px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_peppermint {
background-image: url(spritesmith1.png);
- background-position: -844px -1562px;
+ background-position: -25px -1562px;
width: 60px;
height: 60px;
}
.hair_base_4_pgreen {
background-image: url(spritesmith1.png);
- background-position: -910px -1547px;
+ background-position: -91px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_pgreen {
background-image: url(spritesmith1.png);
- background-position: -935px -1562px;
+ background-position: -116px -1562px;
width: 60px;
height: 60px;
}
.hair_base_4_pgreen2 {
background-image: url(spritesmith1.png);
- background-position: -1001px -1547px;
+ background-position: -182px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_pgreen2 {
background-image: url(spritesmith1.png);
- background-position: -1026px -1562px;
+ background-position: -207px -1562px;
width: 60px;
height: 60px;
}
.hair_base_4_porange {
background-image: url(spritesmith1.png);
- background-position: -1092px -1547px;
+ background-position: -273px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_porange {
background-image: url(spritesmith1.png);
- background-position: -1117px -1562px;
+ background-position: -298px -1562px;
width: 60px;
height: 60px;
}
.hair_base_4_porange2 {
background-image: url(spritesmith1.png);
- background-position: -1183px -1547px;
+ background-position: -364px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_porange2 {
background-image: url(spritesmith1.png);
- background-position: -1208px -1562px;
+ background-position: -389px -1562px;
width: 60px;
height: 60px;
}
.hair_base_4_ppink {
background-image: url(spritesmith1.png);
- background-position: -1274px -1547px;
+ background-position: -455px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_ppink {
background-image: url(spritesmith1.png);
- background-position: -1299px -1562px;
+ background-position: -480px -1562px;
width: 60px;
height: 60px;
}
.hair_base_4_ppink2 {
background-image: url(spritesmith1.png);
- background-position: -1365px -1547px;
+ background-position: -546px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_ppink2 {
background-image: url(spritesmith1.png);
- background-position: -1390px -1562px;
+ background-position: -571px -1562px;
width: 60px;
height: 60px;
}
.hair_base_4_ppurple {
background-image: url(spritesmith1.png);
- background-position: -1456px -1547px;
+ background-position: -637px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_ppurple {
background-image: url(spritesmith1.png);
- background-position: -1481px -1562px;
+ background-position: -662px -1562px;
width: 60px;
height: 60px;
}
.hair_base_4_ppurple2 {
background-image: url(spritesmith1.png);
- background-position: -1547px -1547px;
+ background-position: -728px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_ppurple2 {
background-image: url(spritesmith1.png);
- background-position: -1572px -1562px;
+ background-position: -753px -1562px;
width: 60px;
height: 60px;
}
.hair_base_4_pumpkin {
background-image: url(spritesmith1.png);
- background-position: -1638px 0px;
+ background-position: -819px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_pumpkin {
background-image: url(spritesmith1.png);
- background-position: -1663px -15px;
+ background-position: -844px -1562px;
width: 60px;
height: 60px;
}
.hair_base_4_purple {
background-image: url(spritesmith1.png);
- background-position: -1638px -91px;
+ background-position: -910px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_purple {
background-image: url(spritesmith1.png);
- background-position: -1663px -106px;
+ background-position: -935px -1562px;
width: 60px;
height: 60px;
}
.hair_base_4_pyellow {
background-image: url(spritesmith1.png);
- background-position: -1638px -182px;
+ background-position: -1001px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_pyellow {
background-image: url(spritesmith1.png);
- background-position: -1663px -197px;
+ background-position: -1026px -1562px;
width: 60px;
height: 60px;
}
.hair_base_4_pyellow2 {
background-image: url(spritesmith1.png);
- background-position: -1638px -273px;
+ background-position: -1092px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_pyellow2 {
background-image: url(spritesmith1.png);
- background-position: -1663px -288px;
+ background-position: -1117px -1562px;
width: 60px;
height: 60px;
}
.hair_base_4_rainbow {
background-image: url(spritesmith1.png);
- background-position: -1638px -364px;
+ background-position: -1183px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_rainbow {
background-image: url(spritesmith1.png);
- background-position: -1663px -379px;
+ background-position: -1208px -1562px;
width: 60px;
height: 60px;
}
.hair_base_4_red {
background-image: url(spritesmith1.png);
- background-position: -1638px -455px;
+ background-position: -1274px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_red {
background-image: url(spritesmith1.png);
- background-position: -1663px -470px;
+ background-position: -1299px -1562px;
width: 60px;
height: 60px;
}
.hair_base_4_snowy {
background-image: url(spritesmith1.png);
- background-position: -1638px -546px;
+ background-position: -1365px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_snowy {
background-image: url(spritesmith1.png);
- background-position: -1663px -561px;
+ background-position: -1390px -1562px;
width: 60px;
height: 60px;
}
.hair_base_4_white {
background-image: url(spritesmith1.png);
- background-position: -1638px -637px;
+ background-position: -1456px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_white {
background-image: url(spritesmith1.png);
- background-position: -1663px -652px;
+ background-position: -1481px -1562px;
width: 60px;
height: 60px;
}
.hair_base_4_winternight {
background-image: url(spritesmith1.png);
- background-position: -1638px -728px;
+ background-position: -1547px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_winternight {
background-image: url(spritesmith1.png);
- background-position: -1663px -743px;
+ background-position: -1572px -1562px;
width: 60px;
height: 60px;
}
.hair_base_4_winterstar {
background-image: url(spritesmith1.png);
- background-position: -1638px -819px;
+ background-position: -1638px 0px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_winterstar {
background-image: url(spritesmith1.png);
- background-position: -1663px -834px;
+ background-position: -1663px -15px;
width: 60px;
height: 60px;
}
.hair_base_4_yellow {
background-image: url(spritesmith1.png);
- background-position: -1638px -910px;
+ background-position: -1638px -91px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_yellow {
background-image: url(spritesmith1.png);
- background-position: -1663px -925px;
+ background-position: -1663px -106px;
width: 60px;
height: 60px;
}
.hair_base_4_zombie {
background-image: url(spritesmith1.png);
- background-position: -1638px -1001px;
+ background-position: -1638px -182px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_4_zombie {
background-image: url(spritesmith1.png);
- background-position: -1663px -1016px;
+ background-position: -1663px -197px;
width: 60px;
height: 60px;
}
.hair_base_5_TRUred {
background-image: url(spritesmith1.png);
- background-position: -1638px -1092px;
+ background-position: -1638px -273px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_TRUred {
background-image: url(spritesmith1.png);
- background-position: -1663px -1107px;
+ background-position: -1663px -288px;
width: 60px;
height: 60px;
}
.hair_base_5_aurora {
background-image: url(spritesmith1.png);
- background-position: -1638px -1183px;
+ background-position: -1638px -364px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_aurora {
background-image: url(spritesmith1.png);
- background-position: -1663px -1198px;
+ background-position: -1663px -379px;
width: 60px;
height: 60px;
}
.hair_base_5_black {
background-image: url(spritesmith1.png);
- background-position: -1638px -1274px;
+ background-position: -1638px -455px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_black {
background-image: url(spritesmith1.png);
- background-position: -1663px -1289px;
+ background-position: -1663px -470px;
width: 60px;
height: 60px;
}
.hair_base_5_blond {
background-image: url(spritesmith1.png);
- background-position: -1638px -1365px;
+ background-position: -1638px -546px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_blond {
background-image: url(spritesmith1.png);
- background-position: -1663px -1380px;
+ background-position: -1663px -561px;
width: 60px;
height: 60px;
}
.hair_base_5_blue {
background-image: url(spritesmith1.png);
- background-position: -1638px -1456px;
+ background-position: -1638px -637px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_blue {
background-image: url(spritesmith1.png);
- background-position: -1663px -1471px;
+ background-position: -1663px -652px;
width: 60px;
height: 60px;
}
.hair_base_5_brown {
background-image: url(spritesmith1.png);
- background-position: -1638px -1547px;
+ background-position: -1638px -728px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_brown {
background-image: url(spritesmith1.png);
- background-position: -1663px -1562px;
+ background-position: -1663px -743px;
width: 60px;
height: 60px;
}
.hair_base_5_candycane {
background-image: url(spritesmith1.png);
- background-position: 0px -1638px;
+ background-position: -1638px -819px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_candycane {
background-image: url(spritesmith1.png);
- background-position: -25px -1653px;
+ background-position: -1663px -834px;
width: 60px;
height: 60px;
}
.hair_base_5_candycorn {
background-image: url(spritesmith1.png);
- background-position: -91px -1638px;
+ background-position: -1638px -910px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_candycorn {
background-image: url(spritesmith1.png);
- background-position: -116px -1653px;
+ background-position: -1663px -925px;
width: 60px;
height: 60px;
}
.hair_base_5_festive {
background-image: url(spritesmith1.png);
- background-position: -182px -1638px;
+ background-position: -1638px -1001px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_festive {
background-image: url(spritesmith1.png);
- background-position: -207px -1653px;
+ background-position: -1663px -1016px;
width: 60px;
height: 60px;
}
.hair_base_5_frost {
background-image: url(spritesmith1.png);
- background-position: -273px -1638px;
+ background-position: -1638px -1092px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_frost {
background-image: url(spritesmith1.png);
- background-position: -298px -1653px;
+ background-position: -1663px -1107px;
width: 60px;
height: 60px;
}
.hair_base_5_ghostwhite {
background-image: url(spritesmith1.png);
- background-position: -364px -1638px;
+ background-position: -1638px -1183px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_ghostwhite {
background-image: url(spritesmith1.png);
- background-position: -389px -1653px;
+ background-position: -1663px -1198px;
width: 60px;
height: 60px;
}
.hair_base_5_green {
background-image: url(spritesmith1.png);
- background-position: -455px -1638px;
+ background-position: -1638px -1274px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_green {
background-image: url(spritesmith1.png);
- background-position: -480px -1653px;
+ background-position: -1663px -1289px;
width: 60px;
height: 60px;
}
.hair_base_5_halloween {
background-image: url(spritesmith1.png);
- background-position: -546px -1638px;
+ background-position: -1638px -1365px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_halloween {
background-image: url(spritesmith1.png);
- background-position: -571px -1653px;
+ background-position: -1663px -1380px;
width: 60px;
height: 60px;
}
.hair_base_5_holly {
background-image: url(spritesmith1.png);
- background-position: -637px -1638px;
+ background-position: -1638px -1456px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_holly {
background-image: url(spritesmith1.png);
- background-position: -662px -1653px;
+ background-position: -1663px -1471px;
width: 60px;
height: 60px;
}
.hair_base_5_hollygreen {
background-image: url(spritesmith1.png);
- background-position: -728px -1638px;
+ background-position: -1638px -1547px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_hollygreen {
background-image: url(spritesmith1.png);
- background-position: -753px -1653px;
+ background-position: -1663px -1562px;
width: 60px;
height: 60px;
}
.hair_base_5_midnight {
background-image: url(spritesmith1.png);
- background-position: -819px -1638px;
+ background-position: 0px -1638px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_midnight {
background-image: url(spritesmith1.png);
- background-position: -844px -1653px;
+ background-position: -25px -1653px;
width: 60px;
height: 60px;
}
.hair_base_5_pblue {
background-image: url(spritesmith1.png);
- background-position: -910px -1638px;
+ background-position: -91px -1638px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_pblue {
background-image: url(spritesmith1.png);
- background-position: -935px -1653px;
+ background-position: -116px -1653px;
width: 60px;
height: 60px;
}
.hair_base_5_pblue2 {
background-image: url(spritesmith1.png);
- background-position: -1001px -1638px;
+ background-position: -182px -1638px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_pblue2 {
background-image: url(spritesmith1.png);
- background-position: -1026px -1653px;
+ background-position: -207px -1653px;
width: 60px;
height: 60px;
}
.hair_base_5_peppermint {
background-image: url(spritesmith1.png);
- background-position: -1092px -1638px;
+ background-position: -273px -1638px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_peppermint {
background-image: url(spritesmith1.png);
- background-position: -1117px -1653px;
+ background-position: -298px -1653px;
width: 60px;
height: 60px;
}
.hair_base_5_pgreen {
background-image: url(spritesmith1.png);
- background-position: -1183px -1638px;
+ background-position: -364px -1638px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_pgreen {
background-image: url(spritesmith1.png);
- background-position: -1208px -1653px;
+ background-position: -389px -1653px;
width: 60px;
height: 60px;
}
.hair_base_5_pgreen2 {
background-image: url(spritesmith1.png);
- background-position: -1274px -1638px;
+ background-position: -455px -1638px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_pgreen2 {
background-image: url(spritesmith1.png);
- background-position: -1299px -1653px;
+ background-position: -480px -1653px;
width: 60px;
height: 60px;
}
.hair_base_5_porange {
background-image: url(spritesmith1.png);
- background-position: -1365px -1638px;
+ background-position: -546px -1638px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_porange {
background-image: url(spritesmith1.png);
- background-position: -1390px -1653px;
+ background-position: -571px -1653px;
width: 60px;
height: 60px;
}
.hair_base_5_porange2 {
background-image: url(spritesmith1.png);
- background-position: -1456px -1638px;
+ background-position: -637px -1638px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_porange2 {
background-image: url(spritesmith1.png);
- background-position: -1481px -1653px;
+ background-position: -662px -1653px;
width: 60px;
height: 60px;
}
.hair_base_5_ppink {
background-image: url(spritesmith1.png);
- background-position: -1547px -1638px;
+ background-position: -728px -1638px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_ppink {
background-image: url(spritesmith1.png);
- background-position: -1572px -1653px;
+ background-position: -753px -1653px;
width: 60px;
height: 60px;
}
.hair_base_5_ppink2 {
background-image: url(spritesmith1.png);
- background-position: -1638px -1638px;
+ background-position: -819px -1638px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_ppink2 {
background-image: url(spritesmith1.png);
- background-position: -1663px -1653px;
+ background-position: -844px -1653px;
width: 60px;
height: 60px;
}
.hair_base_5_ppurple {
background-image: url(spritesmith1.png);
- background-position: -1729px 0px;
+ background-position: -910px -1638px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_ppurple {
background-image: url(spritesmith1.png);
- background-position: -1754px -15px;
+ background-position: -935px -1653px;
width: 60px;
height: 60px;
}
.hair_base_5_ppurple2 {
background-image: url(spritesmith1.png);
- background-position: -1729px -91px;
+ background-position: -1001px -1638px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_ppurple2 {
background-image: url(spritesmith1.png);
- background-position: -1754px -106px;
+ background-position: -1026px -1653px;
width: 60px;
height: 60px;
}
.hair_base_5_pumpkin {
background-image: url(spritesmith1.png);
- background-position: -1729px -182px;
+ background-position: -1092px -1638px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_pumpkin {
background-image: url(spritesmith1.png);
- background-position: -1754px -197px;
+ background-position: -1117px -1653px;
width: 60px;
height: 60px;
}
.hair_base_5_purple {
background-image: url(spritesmith1.png);
- background-position: -1729px -273px;
+ background-position: -1183px -1638px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_purple {
background-image: url(spritesmith1.png);
- background-position: -1754px -288px;
+ background-position: -1208px -1653px;
width: 60px;
height: 60px;
}
.hair_base_5_pyellow {
background-image: url(spritesmith1.png);
- background-position: -1729px -364px;
+ background-position: -1274px -1638px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_pyellow {
background-image: url(spritesmith1.png);
- background-position: -1754px -379px;
+ background-position: -1299px -1653px;
width: 60px;
height: 60px;
}
.hair_base_5_pyellow2 {
background-image: url(spritesmith1.png);
- background-position: -1729px -455px;
+ background-position: -1365px -1638px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_pyellow2 {
background-image: url(spritesmith1.png);
- background-position: -1754px -470px;
+ background-position: -1390px -1653px;
width: 60px;
height: 60px;
}
.hair_base_5_rainbow {
background-image: url(spritesmith1.png);
- background-position: -1729px -546px;
+ background-position: -1456px -1638px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_rainbow {
background-image: url(spritesmith1.png);
- background-position: -1754px -561px;
+ background-position: -1481px -1653px;
width: 60px;
height: 60px;
}
.hair_base_5_red {
background-image: url(spritesmith1.png);
- background-position: -1729px -637px;
+ background-position: -1547px -1638px;
width: 90px;
height: 90px;
}
.customize-option.hair_base_5_red {
+ background-image: url(spritesmith1.png);
+ background-position: -1572px -1653px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_5_snowy {
+ background-image: url(spritesmith1.png);
+ background-position: -1638px -1638px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_5_snowy {
+ background-image: url(spritesmith1.png);
+ background-position: -1663px -1653px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_5_white {
+ background-image: url(spritesmith1.png);
+ background-position: -1729px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_5_white {
+ background-image: url(spritesmith1.png);
+ background-position: -1754px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_5_winternight {
+ background-image: url(spritesmith1.png);
+ background-position: -1729px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_5_winternight {
+ background-image: url(spritesmith1.png);
+ background-position: -1754px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_5_winterstar {
+ background-image: url(spritesmith1.png);
+ background-position: -1729px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_5_winterstar {
+ background-image: url(spritesmith1.png);
+ background-position: -1754px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_5_yellow {
+ background-image: url(spritesmith1.png);
+ background-position: -1729px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_5_yellow {
+ background-image: url(spritesmith1.png);
+ background-position: -1754px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_5_zombie {
+ background-image: url(spritesmith1.png);
+ background-position: -1729px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_5_zombie {
+ background-image: url(spritesmith1.png);
+ background-position: -1754px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_TRUred {
+ background-image: url(spritesmith1.png);
+ background-position: -1729px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_TRUred {
+ background-image: url(spritesmith1.png);
+ background-position: -1754px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_aurora {
+ background-image: url(spritesmith1.png);
+ background-position: -1729px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_aurora {
+ background-image: url(spritesmith1.png);
+ background-position: -1754px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_black {
+ background-image: url(spritesmith1.png);
+ background-position: -1729px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_black {
background-image: url(spritesmith1.png);
background-position: -1754px -652px;
width: 60px;
height: 60px;
}
+.hair_base_6_blond {
+ background-image: url(spritesmith1.png);
+ background-position: -1729px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_blond {
+ background-image: url(spritesmith1.png);
+ background-position: -1754px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_blue {
+ background-image: url(spritesmith1.png);
+ background-position: -1729px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_blue {
+ background-image: url(spritesmith1.png);
+ background-position: -1754px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_brown {
+ background-image: url(spritesmith1.png);
+ background-position: -1729px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_brown {
+ background-image: url(spritesmith1.png);
+ background-position: -1754px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_candycane {
+ background-image: url(spritesmith1.png);
+ background-position: -1729px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_candycane {
+ background-image: url(spritesmith1.png);
+ background-position: -1754px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_candycorn {
+ background-image: url(spritesmith1.png);
+ background-position: -1729px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_candycorn {
+ background-image: url(spritesmith1.png);
+ background-position: -1754px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_festive {
+ background-image: url(spritesmith1.png);
+ background-position: -1729px -1183px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_festive {
+ background-image: url(spritesmith1.png);
+ background-position: -1754px -1198px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_frost {
+ background-image: url(spritesmith1.png);
+ background-position: -1729px -1274px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_frost {
+ background-image: url(spritesmith1.png);
+ background-position: -1754px -1289px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_ghostwhite {
+ background-image: url(spritesmith1.png);
+ background-position: -1729px -1365px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_ghostwhite {
+ background-image: url(spritesmith1.png);
+ background-position: -1754px -1380px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_green {
+ background-image: url(spritesmith1.png);
+ background-position: -1729px -1456px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_green {
+ background-image: url(spritesmith1.png);
+ background-position: -1754px -1471px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_halloween {
+ background-image: url(spritesmith1.png);
+ background-position: -1729px -1547px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_halloween {
+ background-image: url(spritesmith1.png);
+ background-position: -1754px -1562px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_holly {
+ background-image: url(spritesmith1.png);
+ background-position: -1729px -1638px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_holly {
+ background-image: url(spritesmith1.png);
+ background-position: -1754px -1653px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_hollygreen {
+ background-image: url(spritesmith1.png);
+ background-position: 0px -1729px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_hollygreen {
+ background-image: url(spritesmith1.png);
+ background-position: -25px -1744px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_midnight {
+ background-image: url(spritesmith1.png);
+ background-position: -91px -1729px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_midnight {
+ background-image: url(spritesmith1.png);
+ background-position: -116px -1744px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_pblue {
+ background-image: url(spritesmith1.png);
+ background-position: -182px -1729px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_pblue {
+ background-image: url(spritesmith1.png);
+ background-position: -207px -1744px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_pblue2 {
+ background-image: url(spritesmith1.png);
+ background-position: -273px -1729px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_pblue2 {
+ background-image: url(spritesmith1.png);
+ background-position: -298px -1744px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_peppermint {
+ background-image: url(spritesmith1.png);
+ background-position: -364px -1729px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_peppermint {
+ background-image: url(spritesmith1.png);
+ background-position: -389px -1744px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_pgreen {
+ background-image: url(spritesmith1.png);
+ background-position: -455px -1729px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_pgreen {
+ background-image: url(spritesmith1.png);
+ background-position: -480px -1744px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_pgreen2 {
+ background-image: url(spritesmith1.png);
+ background-position: -546px -1729px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_pgreen2 {
+ background-image: url(spritesmith1.png);
+ background-position: -571px -1744px;
+ width: 60px;
+ height: 60px;
+}
diff --git a/common/dist/sprites/spritesmith1.png b/common/dist/sprites/spritesmith1.png
index 4fa9143a7f..b864623539 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 0e78a7e1d6..1e08544501 100644
--- a/common/dist/sprites/spritesmith2.css
+++ b/common/dist/sprites/spritesmith2.css
@@ -1,4026 +1,4068 @@
-.hair_base_5_snowy {
+.hair_base_6_porange {
background-image: url(spritesmith2.png);
background-position: -91px 0px;
width: 90px;
height: 90px;
}
-.customize-option.hair_base_5_snowy {
+.customize-option.hair_base_6_porange {
background-image: url(spritesmith2.png);
background-position: -116px -15px;
width: 60px;
height: 60px;
}
-.hair_base_5_white {
- background-image: url(spritesmith2.png);
- background-position: -182px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_5_white {
- background-image: url(spritesmith2.png);
- background-position: -207px -1198px;
- width: 60px;
- height: 60px;
-}
-.hair_base_5_winternight {
- background-image: url(spritesmith2.png);
- background-position: 0px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_5_winternight {
- background-image: url(spritesmith2.png);
- background-position: -25px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_5_winterstar {
- background-image: url(spritesmith2.png);
- background-position: -91px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_5_winterstar {
- background-image: url(spritesmith2.png);
- background-position: -116px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_5_yellow {
- background-image: url(spritesmith2.png);
- background-position: -182px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_5_yellow {
- background-image: url(spritesmith2.png);
- background-position: -207px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_5_zombie {
- background-image: url(spritesmith2.png);
- background-position: -182px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_5_zombie {
- background-image: url(spritesmith2.png);
- background-position: -207px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_TRUred {
- background-image: url(spritesmith2.png);
- background-position: 0px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_TRUred {
- background-image: url(spritesmith2.png);
- background-position: -25px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_aurora {
- background-image: url(spritesmith2.png);
- background-position: -91px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_aurora {
- background-image: url(spritesmith2.png);
- background-position: -116px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_black {
- background-image: url(spritesmith2.png);
- background-position: -182px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_black {
- background-image: url(spritesmith2.png);
- background-position: -207px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_blond {
- background-image: url(spritesmith2.png);
- background-position: -273px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_blond {
- background-image: url(spritesmith2.png);
- background-position: -298px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_blue {
- background-image: url(spritesmith2.png);
- background-position: -273px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_blue {
- background-image: url(spritesmith2.png);
- background-position: -298px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_brown {
- background-image: url(spritesmith2.png);
- background-position: -273px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_brown {
- background-image: url(spritesmith2.png);
- background-position: -298px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_candycane {
- background-image: url(spritesmith2.png);
- background-position: 0px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_candycane {
- background-image: url(spritesmith2.png);
- background-position: -25px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_candycorn {
- background-image: url(spritesmith2.png);
- background-position: -91px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_candycorn {
- background-image: url(spritesmith2.png);
- background-position: -116px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_festive {
- background-image: url(spritesmith2.png);
- background-position: -182px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_festive {
- background-image: url(spritesmith2.png);
- background-position: -207px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_frost {
- background-image: url(spritesmith2.png);
- background-position: -273px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_frost {
- background-image: url(spritesmith2.png);
- background-position: -298px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_ghostwhite {
- background-image: url(spritesmith2.png);
- background-position: -364px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_ghostwhite {
- background-image: url(spritesmith2.png);
- background-position: -389px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_green {
- background-image: url(spritesmith2.png);
- background-position: -364px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_green {
- background-image: url(spritesmith2.png);
- background-position: -389px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_halloween {
- background-image: url(spritesmith2.png);
- background-position: -364px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_halloween {
- background-image: url(spritesmith2.png);
- background-position: -389px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_holly {
- background-image: url(spritesmith2.png);
- background-position: -364px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_holly {
- background-image: url(spritesmith2.png);
- background-position: -389px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_hollygreen {
- background-image: url(spritesmith2.png);
- background-position: 0px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_hollygreen {
- background-image: url(spritesmith2.png);
- background-position: -25px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_midnight {
- background-image: url(spritesmith2.png);
- background-position: -91px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_midnight {
- background-image: url(spritesmith2.png);
- background-position: -116px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_pblue {
- background-image: url(spritesmith2.png);
- background-position: -182px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_pblue {
- background-image: url(spritesmith2.png);
- background-position: -207px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_pblue2 {
- background-image: url(spritesmith2.png);
- background-position: -273px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_pblue2 {
- background-image: url(spritesmith2.png);
- background-position: -298px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_peppermint {
- background-image: url(spritesmith2.png);
- background-position: -364px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_peppermint {
- background-image: url(spritesmith2.png);
- background-position: -389px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_pgreen {
- background-image: url(spritesmith2.png);
- background-position: -455px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_pgreen {
- background-image: url(spritesmith2.png);
- background-position: -480px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_pgreen2 {
- background-image: url(spritesmith2.png);
- background-position: -455px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_pgreen2 {
- background-image: url(spritesmith2.png);
- background-position: -480px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_porange {
- background-image: url(spritesmith2.png);
- background-position: -455px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_porange {
- background-image: url(spritesmith2.png);
- background-position: -480px -197px;
- width: 60px;
- height: 60px;
-}
.hair_base_6_porange2 {
- background-image: url(spritesmith2.png);
- background-position: -455px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_porange2 {
- background-image: url(spritesmith2.png);
- background-position: -480px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_ppink {
- background-image: url(spritesmith2.png);
- background-position: -455px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_ppink {
- background-image: url(spritesmith2.png);
- background-position: -480px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_ppink2 {
- background-image: url(spritesmith2.png);
- background-position: 0px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_ppink2 {
- background-image: url(spritesmith2.png);
- background-position: -25px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_ppurple {
- background-image: url(spritesmith2.png);
- background-position: -91px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_ppurple {
- background-image: url(spritesmith2.png);
- background-position: -116px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_ppurple2 {
- background-image: url(spritesmith2.png);
- background-position: -182px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_ppurple2 {
- background-image: url(spritesmith2.png);
- background-position: -207px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_pumpkin {
- background-image: url(spritesmith2.png);
- background-position: -273px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_pumpkin {
- background-image: url(spritesmith2.png);
- background-position: -298px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_purple {
- background-image: url(spritesmith2.png);
- background-position: -364px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_purple {
- background-image: url(spritesmith2.png);
- background-position: -389px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_pyellow {
- background-image: url(spritesmith2.png);
- background-position: -455px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_pyellow {
- background-image: url(spritesmith2.png);
- background-position: -480px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_pyellow2 {
- background-image: url(spritesmith2.png);
- background-position: -546px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_pyellow2 {
- background-image: url(spritesmith2.png);
- background-position: -571px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_rainbow {
- background-image: url(spritesmith2.png);
- background-position: -546px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_rainbow {
- background-image: url(spritesmith2.png);
- background-position: -571px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_red {
- background-image: url(spritesmith2.png);
- background-position: -546px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_red {
- background-image: url(spritesmith2.png);
- background-position: -571px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_snowy {
- background-image: url(spritesmith2.png);
- background-position: -546px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_snowy {
- background-image: url(spritesmith2.png);
- background-position: -571px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_white {
- background-image: url(spritesmith2.png);
- background-position: -546px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_white {
- background-image: url(spritesmith2.png);
- background-position: -571px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_winternight {
- background-image: url(spritesmith2.png);
- background-position: -546px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_winternight {
- background-image: url(spritesmith2.png);
- background-position: -571px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_winterstar {
- background-image: url(spritesmith2.png);
- background-position: 0px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_winterstar {
- background-image: url(spritesmith2.png);
- background-position: -25px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_yellow {
- background-image: url(spritesmith2.png);
- background-position: -91px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_yellow {
- background-image: url(spritesmith2.png);
- background-position: -116px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_6_zombie {
- background-image: url(spritesmith2.png);
- background-position: -182px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_6_zombie {
- background-image: url(spritesmith2.png);
- background-position: -207px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_TRUred {
- background-image: url(spritesmith2.png);
- background-position: -273px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_TRUred {
- background-image: url(spritesmith2.png);
- background-position: -298px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_aurora {
- background-image: url(spritesmith2.png);
- background-position: -364px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_aurora {
- background-image: url(spritesmith2.png);
- background-position: -389px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_black {
- background-image: url(spritesmith2.png);
- background-position: -455px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_black {
- background-image: url(spritesmith2.png);
- background-position: -480px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_blond {
- background-image: url(spritesmith2.png);
- background-position: -546px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_blond {
- background-image: url(spritesmith2.png);
- background-position: -571px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_blue {
- background-image: url(spritesmith2.png);
- background-position: -637px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_blue {
- background-image: url(spritesmith2.png);
- background-position: -662px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_brown {
- background-image: url(spritesmith2.png);
- background-position: -637px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_brown {
- background-image: url(spritesmith2.png);
- background-position: -662px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_candycane {
- background-image: url(spritesmith2.png);
- background-position: -637px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_candycane {
- background-image: url(spritesmith2.png);
- background-position: -662px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_candycorn {
- background-image: url(spritesmith2.png);
- background-position: -637px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_candycorn {
- background-image: url(spritesmith2.png);
- background-position: -662px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_festive {
- background-image: url(spritesmith2.png);
- background-position: -637px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_festive {
- background-image: url(spritesmith2.png);
- background-position: -662px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_frost {
- background-image: url(spritesmith2.png);
- background-position: -637px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_frost {
- background-image: url(spritesmith2.png);
- background-position: -662px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_ghostwhite {
- background-image: url(spritesmith2.png);
- background-position: -637px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_ghostwhite {
- background-image: url(spritesmith2.png);
- background-position: -662px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_green {
- background-image: url(spritesmith2.png);
- background-position: 0px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_green {
- background-image: url(spritesmith2.png);
- background-position: -25px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_halloween {
- background-image: url(spritesmith2.png);
- background-position: -91px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_halloween {
- background-image: url(spritesmith2.png);
- background-position: -116px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_holly {
- background-image: url(spritesmith2.png);
- background-position: -182px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_holly {
- background-image: url(spritesmith2.png);
- background-position: -207px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_hollygreen {
- background-image: url(spritesmith2.png);
- background-position: -273px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_hollygreen {
- background-image: url(spritesmith2.png);
- background-position: -298px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_midnight {
- background-image: url(spritesmith2.png);
- background-position: -364px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_midnight {
- background-image: url(spritesmith2.png);
- background-position: -389px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_pblue {
- background-image: url(spritesmith2.png);
- background-position: -455px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_pblue {
- background-image: url(spritesmith2.png);
- background-position: -480px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_pblue2 {
- background-image: url(spritesmith2.png);
- background-position: -546px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_pblue2 {
- background-image: url(spritesmith2.png);
- background-position: -571px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_peppermint {
- background-image: url(spritesmith2.png);
- background-position: -637px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_peppermint {
- background-image: url(spritesmith2.png);
- background-position: -662px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_pgreen {
- background-image: url(spritesmith2.png);
- background-position: -728px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_pgreen {
- background-image: url(spritesmith2.png);
- background-position: -753px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_pgreen2 {
- background-image: url(spritesmith2.png);
- background-position: -728px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_pgreen2 {
- background-image: url(spritesmith2.png);
- background-position: -753px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_porange {
- background-image: url(spritesmith2.png);
- background-position: -728px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_porange {
- background-image: url(spritesmith2.png);
- background-position: -753px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_porange2 {
- background-image: url(spritesmith2.png);
- background-position: -728px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_porange2 {
- background-image: url(spritesmith2.png);
- background-position: -753px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_ppink {
- background-image: url(spritesmith2.png);
- background-position: -728px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_ppink {
- background-image: url(spritesmith2.png);
- background-position: -753px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_ppink2 {
- background-image: url(spritesmith2.png);
- background-position: -728px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_ppink2 {
- background-image: url(spritesmith2.png);
- background-position: -753px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_ppurple {
- background-image: url(spritesmith2.png);
- background-position: -728px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_ppurple {
- background-image: url(spritesmith2.png);
- background-position: -753px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_ppurple2 {
- background-image: url(spritesmith2.png);
- background-position: -728px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_ppurple2 {
- background-image: url(spritesmith2.png);
- background-position: -753px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_pumpkin {
- background-image: url(spritesmith2.png);
- background-position: 0px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_pumpkin {
- background-image: url(spritesmith2.png);
- background-position: -25px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_purple {
- background-image: url(spritesmith2.png);
- background-position: -91px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_purple {
- background-image: url(spritesmith2.png);
- background-position: -116px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_pyellow {
- background-image: url(spritesmith2.png);
- background-position: -182px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_pyellow {
- background-image: url(spritesmith2.png);
- background-position: -207px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_pyellow2 {
- background-image: url(spritesmith2.png);
- background-position: -273px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_pyellow2 {
- background-image: url(spritesmith2.png);
- background-position: -298px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_rainbow {
- background-image: url(spritesmith2.png);
- background-position: -364px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_rainbow {
- background-image: url(spritesmith2.png);
- background-position: -389px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_red {
- background-image: url(spritesmith2.png);
- background-position: -455px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_red {
- background-image: url(spritesmith2.png);
- background-position: -480px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_snowy {
- background-image: url(spritesmith2.png);
- background-position: -546px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_snowy {
- background-image: url(spritesmith2.png);
- background-position: -571px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_white {
- background-image: url(spritesmith2.png);
- background-position: -637px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_white {
- background-image: url(spritesmith2.png);
- background-position: -662px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_winternight {
- background-image: url(spritesmith2.png);
- background-position: -728px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_winternight {
- background-image: url(spritesmith2.png);
- background-position: -753px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_winterstar {
- background-image: url(spritesmith2.png);
- background-position: -819px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_winterstar {
- background-image: url(spritesmith2.png);
- background-position: -844px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_yellow {
- background-image: url(spritesmith2.png);
- background-position: -819px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_yellow {
- background-image: url(spritesmith2.png);
- background-position: -844px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_7_zombie {
- background-image: url(spritesmith2.png);
- background-position: -819px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_7_zombie {
- background-image: url(spritesmith2.png);
- background-position: -844px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_TRUred {
- background-image: url(spritesmith2.png);
- background-position: -819px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_TRUred {
- background-image: url(spritesmith2.png);
- background-position: -844px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_aurora {
- background-image: url(spritesmith2.png);
- background-position: -819px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_aurora {
- background-image: url(spritesmith2.png);
- background-position: -844px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_black {
- background-image: url(spritesmith2.png);
- background-position: -819px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_black {
- background-image: url(spritesmith2.png);
- background-position: -844px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_blond {
- background-image: url(spritesmith2.png);
- background-position: -819px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_blond {
- background-image: url(spritesmith2.png);
- background-position: -844px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_blue {
- background-image: url(spritesmith2.png);
- background-position: -819px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_blue {
- background-image: url(spritesmith2.png);
- background-position: -844px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_brown {
- background-image: url(spritesmith2.png);
- background-position: -819px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_brown {
- background-image: url(spritesmith2.png);
- background-position: -844px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_candycane {
- background-image: url(spritesmith2.png);
- background-position: 0px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_candycane {
- background-image: url(spritesmith2.png);
- background-position: -25px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_candycorn {
- background-image: url(spritesmith2.png);
- background-position: -91px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_candycorn {
- background-image: url(spritesmith2.png);
- background-position: -116px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_festive {
- background-image: url(spritesmith2.png);
- background-position: -182px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_festive {
- background-image: url(spritesmith2.png);
- background-position: -207px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_frost {
- background-image: url(spritesmith2.png);
- background-position: -273px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_frost {
- background-image: url(spritesmith2.png);
- background-position: -298px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_ghostwhite {
- background-image: url(spritesmith2.png);
- background-position: -364px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_ghostwhite {
- background-image: url(spritesmith2.png);
- background-position: -389px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_green {
- background-image: url(spritesmith2.png);
- background-position: -455px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_green {
- background-image: url(spritesmith2.png);
- background-position: -480px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_halloween {
- background-image: url(spritesmith2.png);
- background-position: -546px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_halloween {
- background-image: url(spritesmith2.png);
- background-position: -571px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_holly {
- background-image: url(spritesmith2.png);
- background-position: -637px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_holly {
- background-image: url(spritesmith2.png);
- background-position: -662px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_hollygreen {
- background-image: url(spritesmith2.png);
- background-position: -728px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_hollygreen {
- background-image: url(spritesmith2.png);
- background-position: -753px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_midnight {
- background-image: url(spritesmith2.png);
- background-position: -819px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_midnight {
- background-image: url(spritesmith2.png);
- background-position: -844px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_pblue {
- background-image: url(spritesmith2.png);
- background-position: -910px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_pblue {
- background-image: url(spritesmith2.png);
- background-position: -935px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_pblue2 {
- background-image: url(spritesmith2.png);
- background-position: -910px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_pblue2 {
- background-image: url(spritesmith2.png);
- background-position: -935px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_peppermint {
- background-image: url(spritesmith2.png);
- background-position: -910px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_peppermint {
- background-image: url(spritesmith2.png);
- background-position: -935px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_pgreen {
- background-image: url(spritesmith2.png);
- background-position: -910px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_pgreen {
- background-image: url(spritesmith2.png);
- background-position: -935px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_pgreen2 {
- background-image: url(spritesmith2.png);
- background-position: -910px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_pgreen2 {
- background-image: url(spritesmith2.png);
- background-position: -935px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_porange {
- background-image: url(spritesmith2.png);
- background-position: -910px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_porange {
- background-image: url(spritesmith2.png);
- background-position: -935px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_porange2 {
- background-image: url(spritesmith2.png);
- background-position: -910px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_porange2 {
- background-image: url(spritesmith2.png);
- background-position: -935px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_ppink {
- background-image: url(spritesmith2.png);
- background-position: -910px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_ppink {
- background-image: url(spritesmith2.png);
- background-position: -935px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_ppink2 {
- background-image: url(spritesmith2.png);
- background-position: -910px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_ppink2 {
- background-image: url(spritesmith2.png);
- background-position: -935px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_ppurple {
- background-image: url(spritesmith2.png);
- background-position: -910px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_ppurple {
- background-image: url(spritesmith2.png);
- background-position: -935px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_ppurple2 {
- background-image: url(spritesmith2.png);
- background-position: 0px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_ppurple2 {
- background-image: url(spritesmith2.png);
- background-position: -25px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_pumpkin {
- background-image: url(spritesmith2.png);
- background-position: -91px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_pumpkin {
- background-image: url(spritesmith2.png);
- background-position: -116px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_purple {
- background-image: url(spritesmith2.png);
- background-position: -182px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_purple {
- background-image: url(spritesmith2.png);
- background-position: -207px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_pyellow {
- background-image: url(spritesmith2.png);
- background-position: -273px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_pyellow {
- background-image: url(spritesmith2.png);
- background-position: -298px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_pyellow2 {
- background-image: url(spritesmith2.png);
- background-position: -364px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_pyellow2 {
- background-image: url(spritesmith2.png);
- background-position: -389px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_rainbow {
- background-image: url(spritesmith2.png);
- background-position: -455px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_rainbow {
- background-image: url(spritesmith2.png);
- background-position: -480px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_red {
- background-image: url(spritesmith2.png);
- background-position: -546px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_red {
- background-image: url(spritesmith2.png);
- background-position: -571px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_snowy {
- background-image: url(spritesmith2.png);
- background-position: -637px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_snowy {
- background-image: url(spritesmith2.png);
- background-position: -662px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_white {
- background-image: url(spritesmith2.png);
- background-position: -728px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_white {
- background-image: url(spritesmith2.png);
- background-position: -753px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_winternight {
- background-image: url(spritesmith2.png);
- background-position: -819px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_winternight {
- background-image: url(spritesmith2.png);
- background-position: -844px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_winterstar {
- background-image: url(spritesmith2.png);
- background-position: -910px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_winterstar {
- background-image: url(spritesmith2.png);
- background-position: -935px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_yellow {
- background-image: url(spritesmith2.png);
- background-position: -1001px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_yellow {
- background-image: url(spritesmith2.png);
- background-position: -1026px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_8_zombie {
- background-image: url(spritesmith2.png);
- background-position: -1001px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_8_zombie {
- background-image: url(spritesmith2.png);
- background-position: -1026px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_TRUred {
- background-image: url(spritesmith2.png);
- background-position: -1001px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_TRUred {
- background-image: url(spritesmith2.png);
- background-position: -1026px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_aurora {
- background-image: url(spritesmith2.png);
- background-position: -1001px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_aurora {
- background-image: url(spritesmith2.png);
- background-position: -1026px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_black {
- background-image: url(spritesmith2.png);
- background-position: -1001px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_black {
- background-image: url(spritesmith2.png);
- background-position: -1026px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_blond {
- background-image: url(spritesmith2.png);
- background-position: -1001px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_blond {
- background-image: url(spritesmith2.png);
- background-position: -1026px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_blue {
- background-image: url(spritesmith2.png);
- background-position: -1001px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_blue {
- background-image: url(spritesmith2.png);
- background-position: -1026px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_brown {
- background-image: url(spritesmith2.png);
- background-position: -1001px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_brown {
- background-image: url(spritesmith2.png);
- background-position: -1026px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_candycane {
- background-image: url(spritesmith2.png);
- background-position: -1001px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_candycane {
- background-image: url(spritesmith2.png);
- background-position: -1026px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_candycorn {
- background-image: url(spritesmith2.png);
- background-position: -1001px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_candycorn {
- background-image: url(spritesmith2.png);
- background-position: -1026px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_festive {
- background-image: url(spritesmith2.png);
- background-position: -1001px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_festive {
- background-image: url(spritesmith2.png);
- background-position: -1026px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_frost {
- background-image: url(spritesmith2.png);
- background-position: 0px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_frost {
- background-image: url(spritesmith2.png);
- background-position: -25px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_ghostwhite {
- background-image: url(spritesmith2.png);
- background-position: -91px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_ghostwhite {
- background-image: url(spritesmith2.png);
- background-position: -116px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_green {
- background-image: url(spritesmith2.png);
- background-position: -182px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_green {
- background-image: url(spritesmith2.png);
- background-position: -207px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_halloween {
- background-image: url(spritesmith2.png);
- background-position: -273px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_halloween {
- background-image: url(spritesmith2.png);
- background-position: -298px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_holly {
- background-image: url(spritesmith2.png);
- background-position: -364px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_holly {
- background-image: url(spritesmith2.png);
- background-position: -389px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_hollygreen {
- background-image: url(spritesmith2.png);
- background-position: -455px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_hollygreen {
- background-image: url(spritesmith2.png);
- background-position: -480px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_midnight {
- background-image: url(spritesmith2.png);
- background-position: -546px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_midnight {
- background-image: url(spritesmith2.png);
- background-position: -571px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_pblue {
- background-image: url(spritesmith2.png);
- background-position: -637px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_pblue {
- background-image: url(spritesmith2.png);
- background-position: -662px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_pblue2 {
- background-image: url(spritesmith2.png);
- background-position: -728px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_pblue2 {
- background-image: url(spritesmith2.png);
- background-position: -753px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_peppermint {
- background-image: url(spritesmith2.png);
- background-position: -819px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_peppermint {
- background-image: url(spritesmith2.png);
- background-position: -844px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_pgreen {
- background-image: url(spritesmith2.png);
- background-position: -910px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_pgreen {
- background-image: url(spritesmith2.png);
- background-position: -935px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_pgreen2 {
- background-image: url(spritesmith2.png);
- background-position: -1001px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_pgreen2 {
- background-image: url(spritesmith2.png);
- background-position: -1026px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_porange {
- background-image: url(spritesmith2.png);
- background-position: -1092px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_porange {
- background-image: url(spritesmith2.png);
- background-position: -1117px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_porange2 {
- background-image: url(spritesmith2.png);
- background-position: -1092px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_porange2 {
- background-image: url(spritesmith2.png);
- background-position: -1117px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_ppink {
- background-image: url(spritesmith2.png);
- background-position: -1092px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_ppink {
- background-image: url(spritesmith2.png);
- background-position: -1117px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_ppink2 {
- background-image: url(spritesmith2.png);
- background-position: -1092px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_ppink2 {
- background-image: url(spritesmith2.png);
- background-position: -1117px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_ppurple {
- background-image: url(spritesmith2.png);
- background-position: -1092px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_ppurple {
- background-image: url(spritesmith2.png);
- background-position: -1117px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_ppurple2 {
- background-image: url(spritesmith2.png);
- background-position: -1092px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_ppurple2 {
- background-image: url(spritesmith2.png);
- background-position: -1117px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_pumpkin {
- background-image: url(spritesmith2.png);
- background-position: -1092px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_pumpkin {
- background-image: url(spritesmith2.png);
- background-position: -1117px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_purple {
- background-image: url(spritesmith2.png);
- background-position: -1092px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_purple {
- background-image: url(spritesmith2.png);
- background-position: -1117px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_pyellow {
- background-image: url(spritesmith2.png);
- background-position: -1092px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_pyellow {
- background-image: url(spritesmith2.png);
- background-position: -1117px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_pyellow2 {
- background-image: url(spritesmith2.png);
- background-position: -1092px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_pyellow2 {
- background-image: url(spritesmith2.png);
- background-position: -1117px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_rainbow {
- background-image: url(spritesmith2.png);
- background-position: -1092px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_rainbow {
- background-image: url(spritesmith2.png);
- background-position: -1117px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_red {
- background-image: url(spritesmith2.png);
- background-position: -1092px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_red {
- background-image: url(spritesmith2.png);
- background-position: -1117px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_snowy {
- background-image: url(spritesmith2.png);
- background-position: 0px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_snowy {
- background-image: url(spritesmith2.png);
- background-position: -25px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_white {
- background-image: url(spritesmith2.png);
- background-position: -91px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_white {
- background-image: url(spritesmith2.png);
- background-position: -116px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_winternight {
- background-image: url(spritesmith2.png);
- background-position: -182px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_winternight {
- background-image: url(spritesmith2.png);
- background-position: -207px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_winterstar {
- background-image: url(spritesmith2.png);
- background-position: -273px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_winterstar {
- background-image: url(spritesmith2.png);
- background-position: -298px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_yellow {
- background-image: url(spritesmith2.png);
- background-position: -364px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_yellow {
- background-image: url(spritesmith2.png);
- background-position: -389px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_base_9_zombie {
- background-image: url(spritesmith2.png);
- background-position: -455px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_base_9_zombie {
- background-image: url(spritesmith2.png);
- background-position: -480px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_beard_1_pblue2 {
- background-image: url(spritesmith2.png);
- background-position: -546px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_beard_1_pblue2 {
- background-image: url(spritesmith2.png);
- background-position: -571px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_beard_1_pgreen2 {
- background-image: url(spritesmith2.png);
- background-position: -637px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_beard_1_pgreen2 {
- background-image: url(spritesmith2.png);
- background-position: -662px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_beard_1_porange2 {
- background-image: url(spritesmith2.png);
- background-position: -728px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_beard_1_porange2 {
- background-image: url(spritesmith2.png);
- background-position: -753px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_beard_1_ppink2 {
- background-image: url(spritesmith2.png);
- background-position: -819px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_beard_1_ppink2 {
- background-image: url(spritesmith2.png);
- background-position: -844px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_beard_1_ppurple2 {
- background-image: url(spritesmith2.png);
- background-position: -910px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_beard_1_ppurple2 {
- background-image: url(spritesmith2.png);
- background-position: -935px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_beard_1_pyellow2 {
- background-image: url(spritesmith2.png);
- background-position: -1001px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_beard_1_pyellow2 {
- background-image: url(spritesmith2.png);
- background-position: -1026px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_beard_2_pblue2 {
- background-image: url(spritesmith2.png);
- background-position: -1092px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_beard_2_pblue2 {
- background-image: url(spritesmith2.png);
- background-position: -1117px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_beard_2_pgreen2 {
- background-image: url(spritesmith2.png);
- background-position: -1183px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_beard_2_pgreen2 {
- background-image: url(spritesmith2.png);
- background-position: -1208px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_beard_2_porange2 {
- background-image: url(spritesmith2.png);
- background-position: -1183px -91px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_beard_2_porange2 {
- background-image: url(spritesmith2.png);
- background-position: -1208px -106px;
- width: 60px;
- height: 60px;
-}
-.hair_beard_2_ppink2 {
- background-image: url(spritesmith2.png);
- background-position: -1183px -182px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_beard_2_ppink2 {
- background-image: url(spritesmith2.png);
- background-position: -1208px -197px;
- width: 60px;
- height: 60px;
-}
-.hair_beard_2_ppurple2 {
- background-image: url(spritesmith2.png);
- background-position: -1183px -273px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_beard_2_ppurple2 {
- background-image: url(spritesmith2.png);
- background-position: -1208px -288px;
- width: 60px;
- height: 60px;
-}
-.hair_beard_2_pyellow2 {
- background-image: url(spritesmith2.png);
- background-position: -1183px -364px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_beard_2_pyellow2 {
- background-image: url(spritesmith2.png);
- background-position: -1208px -379px;
- width: 60px;
- height: 60px;
-}
-.hair_beard_3_pblue2 {
- background-image: url(spritesmith2.png);
- background-position: -1183px -455px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_beard_3_pblue2 {
- background-image: url(spritesmith2.png);
- background-position: -1208px -470px;
- width: 60px;
- height: 60px;
-}
-.hair_beard_3_pgreen2 {
- background-image: url(spritesmith2.png);
- background-position: -1183px -546px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_beard_3_pgreen2 {
- background-image: url(spritesmith2.png);
- background-position: -1208px -561px;
- width: 60px;
- height: 60px;
-}
-.hair_beard_3_porange2 {
- background-image: url(spritesmith2.png);
- background-position: -1183px -637px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_beard_3_porange2 {
- background-image: url(spritesmith2.png);
- background-position: -1208px -652px;
- width: 60px;
- height: 60px;
-}
-.hair_beard_3_ppink2 {
- background-image: url(spritesmith2.png);
- background-position: -1183px -728px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_beard_3_ppink2 {
- background-image: url(spritesmith2.png);
- background-position: -1208px -743px;
- width: 60px;
- height: 60px;
-}
-.hair_beard_3_ppurple2 {
- background-image: url(spritesmith2.png);
- background-position: -1183px -819px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_beard_3_ppurple2 {
- background-image: url(spritesmith2.png);
- background-position: -1208px -834px;
- width: 60px;
- height: 60px;
-}
-.hair_beard_3_pyellow2 {
- background-image: url(spritesmith2.png);
- background-position: -1183px -910px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_beard_3_pyellow2 {
- background-image: url(spritesmith2.png);
- background-position: -1208px -925px;
- width: 60px;
- height: 60px;
-}
-.hair_mustache_1_pblue2 {
- background-image: url(spritesmith2.png);
- background-position: -1183px -1001px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_mustache_1_pblue2 {
- background-image: url(spritesmith2.png);
- background-position: -1208px -1016px;
- width: 60px;
- height: 60px;
-}
-.hair_mustache_1_pgreen2 {
- background-image: url(spritesmith2.png);
- background-position: -1183px -1092px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_mustache_1_pgreen2 {
- background-image: url(spritesmith2.png);
- background-position: -1208px -1107px;
- width: 60px;
- height: 60px;
-}
-.hair_mustache_1_porange2 {
- background-image: url(spritesmith2.png);
- background-position: 0px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_mustache_1_porange2 {
- background-image: url(spritesmith2.png);
- background-position: -25px -1198px;
- width: 60px;
- height: 60px;
-}
-.hair_mustache_1_ppink2 {
- background-image: url(spritesmith2.png);
- background-position: -91px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_mustache_1_ppink2 {
- background-image: url(spritesmith2.png);
- background-position: -116px -1198px;
- width: 60px;
- height: 60px;
-}
-.hair_mustache_1_ppurple2 {
- background-image: url(spritesmith2.png);
- background-position: 0px 0px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_mustache_1_ppurple2 {
- background-image: url(spritesmith2.png);
- background-position: -25px -15px;
- width: 60px;
- height: 60px;
-}
-.hair_mustache_1_pyellow2 {
- background-image: url(spritesmith2.png);
- background-position: -273px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_mustache_1_pyellow2 {
- background-image: url(spritesmith2.png);
- background-position: -298px -1198px;
- width: 60px;
- height: 60px;
-}
-.hair_mustache_2_pblue2 {
- background-image: url(spritesmith2.png);
- background-position: -364px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_mustache_2_pblue2 {
- background-image: url(spritesmith2.png);
- background-position: -389px -1198px;
- width: 60px;
- height: 60px;
-}
-.hair_mustache_2_pgreen2 {
- background-image: url(spritesmith2.png);
- background-position: -455px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_mustache_2_pgreen2 {
- background-image: url(spritesmith2.png);
- background-position: -480px -1198px;
- width: 60px;
- height: 60px;
-}
-.hair_mustache_2_porange2 {
- background-image: url(spritesmith2.png);
- background-position: -546px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_mustache_2_porange2 {
- background-image: url(spritesmith2.png);
- background-position: -571px -1198px;
- width: 60px;
- height: 60px;
-}
-.hair_mustache_2_ppink2 {
- background-image: url(spritesmith2.png);
- background-position: -637px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_mustache_2_ppink2 {
- background-image: url(spritesmith2.png);
- background-position: -662px -1198px;
- width: 60px;
- height: 60px;
-}
-.hair_mustache_2_ppurple2 {
- background-image: url(spritesmith2.png);
- background-position: -728px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_mustache_2_ppurple2 {
- background-image: url(spritesmith2.png);
- background-position: -753px -1198px;
- width: 60px;
- height: 60px;
-}
-.hair_mustache_2_pyellow2 {
- background-image: url(spritesmith2.png);
- background-position: -819px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.hair_mustache_2_pyellow2 {
- background-image: url(spritesmith2.png);
- background-position: -844px -1198px;
- width: 60px;
- height: 60px;
-}
-.broad_shirt_black {
- background-image: url(spritesmith2.png);
- background-position: -910px -1183px;
- width: 90px;
- height: 90px;
-}
-.customize-option.broad_shirt_black {
- background-image: url(spritesmith2.png);
- background-position: -935px -1213px;
- width: 60px;
- height: 60px;
-}
-.broad_shirt_blue {
background-image: url(spritesmith2.png);
background-position: -1001px -1183px;
width: 90px;
height: 90px;
}
+.customize-option.hair_base_6_porange2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1026px -1198px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_ppink {
+ background-image: url(spritesmith2.png);
+ background-position: 0px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_ppink {
+ background-image: url(spritesmith2.png);
+ background-position: -25px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_ppink2 {
+ background-image: url(spritesmith2.png);
+ background-position: -91px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_ppink2 {
+ background-image: url(spritesmith2.png);
+ background-position: -116px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_ppurple {
+ background-image: url(spritesmith2.png);
+ background-position: -182px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_ppurple {
+ background-image: url(spritesmith2.png);
+ background-position: -207px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_ppurple2 {
+ background-image: url(spritesmith2.png);
+ background-position: -182px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_ppurple2 {
+ background-image: url(spritesmith2.png);
+ background-position: -207px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_pumpkin {
+ background-image: url(spritesmith2.png);
+ background-position: 0px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_pumpkin {
+ background-image: url(spritesmith2.png);
+ background-position: -25px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_purple {
+ background-image: url(spritesmith2.png);
+ background-position: -91px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_purple {
+ background-image: url(spritesmith2.png);
+ background-position: -116px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_pyellow {
+ background-image: url(spritesmith2.png);
+ background-position: -182px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_pyellow {
+ background-image: url(spritesmith2.png);
+ background-position: -207px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_pyellow2 {
+ background-image: url(spritesmith2.png);
+ background-position: -273px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_pyellow2 {
+ background-image: url(spritesmith2.png);
+ background-position: -298px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_rainbow {
+ background-image: url(spritesmith2.png);
+ background-position: -273px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_rainbow {
+ background-image: url(spritesmith2.png);
+ background-position: -298px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_red {
+ background-image: url(spritesmith2.png);
+ background-position: -273px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_red {
+ background-image: url(spritesmith2.png);
+ background-position: -298px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_snowy {
+ background-image: url(spritesmith2.png);
+ background-position: 0px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_snowy {
+ background-image: url(spritesmith2.png);
+ background-position: -25px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_white {
+ background-image: url(spritesmith2.png);
+ background-position: -91px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_white {
+ background-image: url(spritesmith2.png);
+ background-position: -116px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_winternight {
+ background-image: url(spritesmith2.png);
+ background-position: -182px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_winternight {
+ background-image: url(spritesmith2.png);
+ background-position: -207px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_winterstar {
+ background-image: url(spritesmith2.png);
+ background-position: -273px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_winterstar {
+ background-image: url(spritesmith2.png);
+ background-position: -298px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_yellow {
+ background-image: url(spritesmith2.png);
+ background-position: -364px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_yellow {
+ background-image: url(spritesmith2.png);
+ background-position: -389px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_6_zombie {
+ background-image: url(spritesmith2.png);
+ background-position: -364px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_6_zombie {
+ background-image: url(spritesmith2.png);
+ background-position: -389px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_TRUred {
+ background-image: url(spritesmith2.png);
+ background-position: -364px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_TRUred {
+ background-image: url(spritesmith2.png);
+ background-position: -389px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_aurora {
+ background-image: url(spritesmith2.png);
+ background-position: -364px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_aurora {
+ background-image: url(spritesmith2.png);
+ background-position: -389px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_black {
+ background-image: url(spritesmith2.png);
+ background-position: 0px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_black {
+ background-image: url(spritesmith2.png);
+ background-position: -25px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_blond {
+ background-image: url(spritesmith2.png);
+ background-position: -91px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_blond {
+ background-image: url(spritesmith2.png);
+ background-position: -116px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_blue {
+ background-image: url(spritesmith2.png);
+ background-position: -182px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_blue {
+ background-image: url(spritesmith2.png);
+ background-position: -207px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_brown {
+ background-image: url(spritesmith2.png);
+ background-position: -273px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_brown {
+ background-image: url(spritesmith2.png);
+ background-position: -298px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_candycane {
+ background-image: url(spritesmith2.png);
+ background-position: -364px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_candycane {
+ background-image: url(spritesmith2.png);
+ background-position: -389px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_candycorn {
+ background-image: url(spritesmith2.png);
+ background-position: -455px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_candycorn {
+ background-image: url(spritesmith2.png);
+ background-position: -480px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_festive {
+ background-image: url(spritesmith2.png);
+ background-position: -455px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_festive {
+ background-image: url(spritesmith2.png);
+ background-position: -480px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_frost {
+ background-image: url(spritesmith2.png);
+ background-position: -455px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_frost {
+ background-image: url(spritesmith2.png);
+ background-position: -480px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_ghostwhite {
+ background-image: url(spritesmith2.png);
+ background-position: -455px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_ghostwhite {
+ background-image: url(spritesmith2.png);
+ background-position: -480px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_green {
+ background-image: url(spritesmith2.png);
+ background-position: -455px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_green {
+ background-image: url(spritesmith2.png);
+ background-position: -480px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_halloween {
+ background-image: url(spritesmith2.png);
+ background-position: 0px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_halloween {
+ background-image: url(spritesmith2.png);
+ background-position: -25px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_holly {
+ background-image: url(spritesmith2.png);
+ background-position: -91px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_holly {
+ background-image: url(spritesmith2.png);
+ background-position: -116px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_hollygreen {
+ background-image: url(spritesmith2.png);
+ background-position: -182px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_hollygreen {
+ background-image: url(spritesmith2.png);
+ background-position: -207px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_midnight {
+ background-image: url(spritesmith2.png);
+ background-position: -273px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_midnight {
+ background-image: url(spritesmith2.png);
+ background-position: -298px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_pblue {
+ background-image: url(spritesmith2.png);
+ background-position: -364px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_pblue {
+ background-image: url(spritesmith2.png);
+ background-position: -389px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_pblue2 {
+ background-image: url(spritesmith2.png);
+ background-position: -455px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_pblue2 {
+ background-image: url(spritesmith2.png);
+ background-position: -480px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_peppermint {
+ background-image: url(spritesmith2.png);
+ background-position: -546px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_peppermint {
+ background-image: url(spritesmith2.png);
+ background-position: -571px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_pgreen {
+ background-image: url(spritesmith2.png);
+ background-position: -546px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_pgreen {
+ background-image: url(spritesmith2.png);
+ background-position: -571px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_pgreen2 {
+ background-image: url(spritesmith2.png);
+ background-position: -546px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_pgreen2 {
+ background-image: url(spritesmith2.png);
+ background-position: -571px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_porange {
+ background-image: url(spritesmith2.png);
+ background-position: -546px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_porange {
+ background-image: url(spritesmith2.png);
+ background-position: -571px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_porange2 {
+ background-image: url(spritesmith2.png);
+ background-position: -546px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_porange2 {
+ background-image: url(spritesmith2.png);
+ background-position: -571px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_ppink {
+ background-image: url(spritesmith2.png);
+ background-position: -546px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_ppink {
+ background-image: url(spritesmith2.png);
+ background-position: -571px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_ppink2 {
+ background-image: url(spritesmith2.png);
+ background-position: 0px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_ppink2 {
+ background-image: url(spritesmith2.png);
+ background-position: -25px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_ppurple {
+ background-image: url(spritesmith2.png);
+ background-position: -91px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_ppurple {
+ background-image: url(spritesmith2.png);
+ background-position: -116px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_ppurple2 {
+ background-image: url(spritesmith2.png);
+ background-position: -182px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_ppurple2 {
+ background-image: url(spritesmith2.png);
+ background-position: -207px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_pumpkin {
+ background-image: url(spritesmith2.png);
+ background-position: -273px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_pumpkin {
+ background-image: url(spritesmith2.png);
+ background-position: -298px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_purple {
+ background-image: url(spritesmith2.png);
+ background-position: -364px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_purple {
+ background-image: url(spritesmith2.png);
+ background-position: -389px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_pyellow {
+ background-image: url(spritesmith2.png);
+ background-position: -455px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_pyellow {
+ background-image: url(spritesmith2.png);
+ background-position: -480px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_pyellow2 {
+ background-image: url(spritesmith2.png);
+ background-position: -546px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_pyellow2 {
+ background-image: url(spritesmith2.png);
+ background-position: -571px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_rainbow {
+ background-image: url(spritesmith2.png);
+ background-position: -637px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_rainbow {
+ background-image: url(spritesmith2.png);
+ background-position: -662px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_red {
+ background-image: url(spritesmith2.png);
+ background-position: -637px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_red {
+ background-image: url(spritesmith2.png);
+ background-position: -662px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_snowy {
+ background-image: url(spritesmith2.png);
+ background-position: -637px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_snowy {
+ background-image: url(spritesmith2.png);
+ background-position: -662px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_white {
+ background-image: url(spritesmith2.png);
+ background-position: -637px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_white {
+ background-image: url(spritesmith2.png);
+ background-position: -662px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_winternight {
+ background-image: url(spritesmith2.png);
+ background-position: -637px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_winternight {
+ background-image: url(spritesmith2.png);
+ background-position: -662px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_winterstar {
+ background-image: url(spritesmith2.png);
+ background-position: -637px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_winterstar {
+ background-image: url(spritesmith2.png);
+ background-position: -662px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_yellow {
+ background-image: url(spritesmith2.png);
+ background-position: -637px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_yellow {
+ background-image: url(spritesmith2.png);
+ background-position: -662px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_7_zombie {
+ background-image: url(spritesmith2.png);
+ background-position: 0px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_7_zombie {
+ background-image: url(spritesmith2.png);
+ background-position: -25px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_TRUred {
+ background-image: url(spritesmith2.png);
+ background-position: -91px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_TRUred {
+ background-image: url(spritesmith2.png);
+ background-position: -116px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_aurora {
+ background-image: url(spritesmith2.png);
+ background-position: -182px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_aurora {
+ background-image: url(spritesmith2.png);
+ background-position: -207px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_black {
+ background-image: url(spritesmith2.png);
+ background-position: -273px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_black {
+ background-image: url(spritesmith2.png);
+ background-position: -298px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_blond {
+ background-image: url(spritesmith2.png);
+ background-position: -364px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_blond {
+ background-image: url(spritesmith2.png);
+ background-position: -389px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_blue {
+ background-image: url(spritesmith2.png);
+ background-position: -455px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_blue {
+ background-image: url(spritesmith2.png);
+ background-position: -480px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_brown {
+ background-image: url(spritesmith2.png);
+ background-position: -546px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_brown {
+ background-image: url(spritesmith2.png);
+ background-position: -571px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_candycane {
+ background-image: url(spritesmith2.png);
+ background-position: -637px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_candycane {
+ background-image: url(spritesmith2.png);
+ background-position: -662px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_candycorn {
+ background-image: url(spritesmith2.png);
+ background-position: -728px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_candycorn {
+ background-image: url(spritesmith2.png);
+ background-position: -753px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_festive {
+ background-image: url(spritesmith2.png);
+ background-position: -728px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_festive {
+ background-image: url(spritesmith2.png);
+ background-position: -753px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_frost {
+ background-image: url(spritesmith2.png);
+ background-position: -728px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_frost {
+ background-image: url(spritesmith2.png);
+ background-position: -753px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_ghostwhite {
+ background-image: url(spritesmith2.png);
+ background-position: -728px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_ghostwhite {
+ background-image: url(spritesmith2.png);
+ background-position: -753px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_green {
+ background-image: url(spritesmith2.png);
+ background-position: -728px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_green {
+ background-image: url(spritesmith2.png);
+ background-position: -753px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_halloween {
+ background-image: url(spritesmith2.png);
+ background-position: -728px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_halloween {
+ background-image: url(spritesmith2.png);
+ background-position: -753px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_holly {
+ background-image: url(spritesmith2.png);
+ background-position: -728px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_holly {
+ background-image: url(spritesmith2.png);
+ background-position: -753px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_hollygreen {
+ background-image: url(spritesmith2.png);
+ background-position: -728px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_hollygreen {
+ background-image: url(spritesmith2.png);
+ background-position: -753px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_midnight {
+ background-image: url(spritesmith2.png);
+ background-position: 0px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_midnight {
+ background-image: url(spritesmith2.png);
+ background-position: -25px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_pblue {
+ background-image: url(spritesmith2.png);
+ background-position: -91px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_pblue {
+ background-image: url(spritesmith2.png);
+ background-position: -116px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_pblue2 {
+ background-image: url(spritesmith2.png);
+ background-position: -182px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_pblue2 {
+ background-image: url(spritesmith2.png);
+ background-position: -207px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_peppermint {
+ background-image: url(spritesmith2.png);
+ background-position: -273px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_peppermint {
+ background-image: url(spritesmith2.png);
+ background-position: -298px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_pgreen {
+ background-image: url(spritesmith2.png);
+ background-position: -364px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_pgreen {
+ background-image: url(spritesmith2.png);
+ background-position: -389px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_pgreen2 {
+ background-image: url(spritesmith2.png);
+ background-position: -455px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_pgreen2 {
+ background-image: url(spritesmith2.png);
+ background-position: -480px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_porange {
+ background-image: url(spritesmith2.png);
+ background-position: -546px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_porange {
+ background-image: url(spritesmith2.png);
+ background-position: -571px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_porange2 {
+ background-image: url(spritesmith2.png);
+ background-position: -637px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_porange2 {
+ background-image: url(spritesmith2.png);
+ background-position: -662px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_ppink {
+ background-image: url(spritesmith2.png);
+ background-position: -728px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_ppink {
+ background-image: url(spritesmith2.png);
+ background-position: -753px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_ppink2 {
+ background-image: url(spritesmith2.png);
+ background-position: -819px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_ppink2 {
+ background-image: url(spritesmith2.png);
+ background-position: -844px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_ppurple {
+ background-image: url(spritesmith2.png);
+ background-position: -819px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_ppurple {
+ background-image: url(spritesmith2.png);
+ background-position: -844px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_ppurple2 {
+ background-image: url(spritesmith2.png);
+ background-position: -819px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_ppurple2 {
+ background-image: url(spritesmith2.png);
+ background-position: -844px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_pumpkin {
+ background-image: url(spritesmith2.png);
+ background-position: -819px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_pumpkin {
+ background-image: url(spritesmith2.png);
+ background-position: -844px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_purple {
+ background-image: url(spritesmith2.png);
+ background-position: -819px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_purple {
+ background-image: url(spritesmith2.png);
+ background-position: -844px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_pyellow {
+ background-image: url(spritesmith2.png);
+ background-position: -819px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_pyellow {
+ background-image: url(spritesmith2.png);
+ background-position: -844px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_pyellow2 {
+ background-image: url(spritesmith2.png);
+ background-position: -819px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_pyellow2 {
+ background-image: url(spritesmith2.png);
+ background-position: -844px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_rainbow {
+ background-image: url(spritesmith2.png);
+ background-position: -819px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_rainbow {
+ background-image: url(spritesmith2.png);
+ background-position: -844px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_red {
+ background-image: url(spritesmith2.png);
+ background-position: -819px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_red {
+ background-image: url(spritesmith2.png);
+ background-position: -844px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_snowy {
+ background-image: url(spritesmith2.png);
+ background-position: 0px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_snowy {
+ background-image: url(spritesmith2.png);
+ background-position: -25px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_white {
+ background-image: url(spritesmith2.png);
+ background-position: -91px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_white {
+ background-image: url(spritesmith2.png);
+ background-position: -116px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_winternight {
+ background-image: url(spritesmith2.png);
+ background-position: -182px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_winternight {
+ background-image: url(spritesmith2.png);
+ background-position: -207px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_winterstar {
+ background-image: url(spritesmith2.png);
+ background-position: -273px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_winterstar {
+ background-image: url(spritesmith2.png);
+ background-position: -298px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_yellow {
+ background-image: url(spritesmith2.png);
+ background-position: -364px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_yellow {
+ background-image: url(spritesmith2.png);
+ background-position: -389px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_8_zombie {
+ background-image: url(spritesmith2.png);
+ background-position: -455px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_8_zombie {
+ background-image: url(spritesmith2.png);
+ background-position: -480px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_TRUred {
+ background-image: url(spritesmith2.png);
+ background-position: -546px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_TRUred {
+ background-image: url(spritesmith2.png);
+ background-position: -571px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_aurora {
+ background-image: url(spritesmith2.png);
+ background-position: -637px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_aurora {
+ background-image: url(spritesmith2.png);
+ background-position: -662px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_black {
+ background-image: url(spritesmith2.png);
+ background-position: -728px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_black {
+ background-image: url(spritesmith2.png);
+ background-position: -753px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_blond {
+ background-image: url(spritesmith2.png);
+ background-position: -819px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_blond {
+ background-image: url(spritesmith2.png);
+ background-position: -844px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_blue {
+ background-image: url(spritesmith2.png);
+ background-position: -910px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_blue {
+ background-image: url(spritesmith2.png);
+ background-position: -935px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_brown {
+ background-image: url(spritesmith2.png);
+ background-position: -910px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_brown {
+ background-image: url(spritesmith2.png);
+ background-position: -935px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_candycane {
+ background-image: url(spritesmith2.png);
+ background-position: -910px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_candycane {
+ background-image: url(spritesmith2.png);
+ background-position: -935px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_candycorn {
+ background-image: url(spritesmith2.png);
+ background-position: -910px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_candycorn {
+ background-image: url(spritesmith2.png);
+ background-position: -935px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_festive {
+ background-image: url(spritesmith2.png);
+ background-position: -910px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_festive {
+ background-image: url(spritesmith2.png);
+ background-position: -935px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_frost {
+ background-image: url(spritesmith2.png);
+ background-position: -910px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_frost {
+ background-image: url(spritesmith2.png);
+ background-position: -935px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_ghostwhite {
+ background-image: url(spritesmith2.png);
+ background-position: -910px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_ghostwhite {
+ background-image: url(spritesmith2.png);
+ background-position: -935px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_green {
+ background-image: url(spritesmith2.png);
+ background-position: -910px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_green {
+ background-image: url(spritesmith2.png);
+ background-position: -935px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_halloween {
+ background-image: url(spritesmith2.png);
+ background-position: -910px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_halloween {
+ background-image: url(spritesmith2.png);
+ background-position: -935px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_holly {
+ background-image: url(spritesmith2.png);
+ background-position: -910px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_holly {
+ background-image: url(spritesmith2.png);
+ background-position: -935px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_hollygreen {
+ background-image: url(spritesmith2.png);
+ background-position: 0px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_hollygreen {
+ background-image: url(spritesmith2.png);
+ background-position: -25px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_midnight {
+ background-image: url(spritesmith2.png);
+ background-position: -91px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_midnight {
+ background-image: url(spritesmith2.png);
+ background-position: -116px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_pblue {
+ background-image: url(spritesmith2.png);
+ background-position: -182px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_pblue {
+ background-image: url(spritesmith2.png);
+ background-position: -207px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_pblue2 {
+ background-image: url(spritesmith2.png);
+ background-position: -273px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_pblue2 {
+ background-image: url(spritesmith2.png);
+ background-position: -298px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_peppermint {
+ background-image: url(spritesmith2.png);
+ background-position: -364px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_peppermint {
+ background-image: url(spritesmith2.png);
+ background-position: -389px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_pgreen {
+ background-image: url(spritesmith2.png);
+ background-position: -455px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_pgreen {
+ background-image: url(spritesmith2.png);
+ background-position: -480px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_pgreen2 {
+ background-image: url(spritesmith2.png);
+ background-position: -546px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_pgreen2 {
+ background-image: url(spritesmith2.png);
+ background-position: -571px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_porange {
+ background-image: url(spritesmith2.png);
+ background-position: -637px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_porange {
+ background-image: url(spritesmith2.png);
+ background-position: -662px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_porange2 {
+ background-image: url(spritesmith2.png);
+ background-position: -728px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_porange2 {
+ background-image: url(spritesmith2.png);
+ background-position: -753px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_ppink {
+ background-image: url(spritesmith2.png);
+ background-position: -819px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_ppink {
+ background-image: url(spritesmith2.png);
+ background-position: -844px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_ppink2 {
+ background-image: url(spritesmith2.png);
+ background-position: -910px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_ppink2 {
+ background-image: url(spritesmith2.png);
+ background-position: -935px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_ppurple {
+ background-image: url(spritesmith2.png);
+ background-position: -1001px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_ppurple {
+ background-image: url(spritesmith2.png);
+ background-position: -1026px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_ppurple2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1001px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_ppurple2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1026px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_pumpkin {
+ background-image: url(spritesmith2.png);
+ background-position: -1001px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_pumpkin {
+ background-image: url(spritesmith2.png);
+ background-position: -1026px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_purple {
+ background-image: url(spritesmith2.png);
+ background-position: -1001px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_purple {
+ background-image: url(spritesmith2.png);
+ background-position: -1026px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_pyellow {
+ background-image: url(spritesmith2.png);
+ background-position: -1001px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_pyellow {
+ background-image: url(spritesmith2.png);
+ background-position: -1026px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_pyellow2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1001px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_pyellow2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1026px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_rainbow {
+ background-image: url(spritesmith2.png);
+ background-position: -1001px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_rainbow {
+ background-image: url(spritesmith2.png);
+ background-position: -1026px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_red {
+ background-image: url(spritesmith2.png);
+ background-position: -1001px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_red {
+ background-image: url(spritesmith2.png);
+ background-position: -1026px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_snowy {
+ background-image: url(spritesmith2.png);
+ background-position: -1001px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_snowy {
+ background-image: url(spritesmith2.png);
+ background-position: -1026px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_white {
+ background-image: url(spritesmith2.png);
+ background-position: -1001px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_white {
+ background-image: url(spritesmith2.png);
+ background-position: -1026px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_winternight {
+ background-image: url(spritesmith2.png);
+ background-position: -1001px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_winternight {
+ background-image: url(spritesmith2.png);
+ background-position: -1026px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_winterstar {
+ background-image: url(spritesmith2.png);
+ background-position: 0px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_winterstar {
+ background-image: url(spritesmith2.png);
+ background-position: -25px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_yellow {
+ background-image: url(spritesmith2.png);
+ background-position: -91px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_yellow {
+ background-image: url(spritesmith2.png);
+ background-position: -116px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_base_9_zombie {
+ background-image: url(spritesmith2.png);
+ background-position: -182px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_base_9_zombie {
+ background-image: url(spritesmith2.png);
+ background-position: -207px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_beard_1_pblue2 {
+ background-image: url(spritesmith2.png);
+ background-position: -273px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_beard_1_pblue2 {
+ background-image: url(spritesmith2.png);
+ background-position: -298px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_beard_1_pgreen2 {
+ background-image: url(spritesmith2.png);
+ background-position: -364px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_beard_1_pgreen2 {
+ background-image: url(spritesmith2.png);
+ background-position: -389px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_beard_1_porange2 {
+ background-image: url(spritesmith2.png);
+ background-position: -455px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_beard_1_porange2 {
+ background-image: url(spritesmith2.png);
+ background-position: -480px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_beard_1_ppink2 {
+ background-image: url(spritesmith2.png);
+ background-position: -546px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_beard_1_ppink2 {
+ background-image: url(spritesmith2.png);
+ background-position: -571px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_beard_1_ppurple2 {
+ background-image: url(spritesmith2.png);
+ background-position: -637px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_beard_1_ppurple2 {
+ background-image: url(spritesmith2.png);
+ background-position: -662px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_beard_1_pyellow2 {
+ background-image: url(spritesmith2.png);
+ background-position: -728px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_beard_1_pyellow2 {
+ background-image: url(spritesmith2.png);
+ background-position: -753px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_beard_2_pblue2 {
+ background-image: url(spritesmith2.png);
+ background-position: -819px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_beard_2_pblue2 {
+ background-image: url(spritesmith2.png);
+ background-position: -844px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_beard_2_pgreen2 {
+ background-image: url(spritesmith2.png);
+ background-position: -910px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_beard_2_pgreen2 {
+ background-image: url(spritesmith2.png);
+ background-position: -935px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_beard_2_porange2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1001px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_beard_2_porange2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1026px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_beard_2_ppink2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1092px 0px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_beard_2_ppink2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1117px -15px;
+ width: 60px;
+ height: 60px;
+}
+.hair_beard_2_ppurple2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1092px -91px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_beard_2_ppurple2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1117px -106px;
+ width: 60px;
+ height: 60px;
+}
+.hair_beard_2_pyellow2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1092px -182px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_beard_2_pyellow2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1117px -197px;
+ width: 60px;
+ height: 60px;
+}
+.hair_beard_3_pblue2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1092px -273px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_beard_3_pblue2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1117px -288px;
+ width: 60px;
+ height: 60px;
+}
+.hair_beard_3_pgreen2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1092px -364px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_beard_3_pgreen2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1117px -379px;
+ width: 60px;
+ height: 60px;
+}
+.hair_beard_3_porange2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1092px -455px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_beard_3_porange2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1117px -470px;
+ width: 60px;
+ height: 60px;
+}
+.hair_beard_3_ppink2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1092px -546px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_beard_3_ppink2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1117px -561px;
+ width: 60px;
+ height: 60px;
+}
+.hair_beard_3_ppurple2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1092px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_beard_3_ppurple2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1117px -652px;
+ width: 60px;
+ height: 60px;
+}
+.hair_beard_3_pyellow2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1092px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_beard_3_pyellow2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1117px -743px;
+ width: 60px;
+ height: 60px;
+}
+.hair_mustache_1_pblue2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1092px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_mustache_1_pblue2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1117px -834px;
+ width: 60px;
+ height: 60px;
+}
+.hair_mustache_1_pgreen2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1092px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_mustache_1_pgreen2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1117px -925px;
+ width: 60px;
+ height: 60px;
+}
+.hair_mustache_1_porange2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1092px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_mustache_1_porange2 {
+ background-image: url(spritesmith2.png);
+ background-position: -1117px -1016px;
+ width: 60px;
+ height: 60px;
+}
+.hair_mustache_1_ppink2 {
+ background-image: url(spritesmith2.png);
+ background-position: 0px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_mustache_1_ppink2 {
+ background-image: url(spritesmith2.png);
+ background-position: -25px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_mustache_1_ppurple2 {
+ background-image: url(spritesmith2.png);
+ background-position: -91px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_mustache_1_ppurple2 {
+ background-image: url(spritesmith2.png);
+ background-position: -116px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_mustache_1_pyellow2 {
+ background-image: url(spritesmith2.png);
+ background-position: -182px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_mustache_1_pyellow2 {
+ background-image: url(spritesmith2.png);
+ background-position: -207px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_mustache_2_pblue2 {
+ background-image: url(spritesmith2.png);
+ background-position: -273px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_mustache_2_pblue2 {
+ background-image: url(spritesmith2.png);
+ background-position: -298px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_mustache_2_pgreen2 {
+ background-image: url(spritesmith2.png);
+ background-position: -364px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_mustache_2_pgreen2 {
+ background-image: url(spritesmith2.png);
+ background-position: -389px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_mustache_2_porange2 {
+ background-image: url(spritesmith2.png);
+ background-position: -455px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_mustache_2_porange2 {
+ background-image: url(spritesmith2.png);
+ background-position: -480px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_mustache_2_ppink2 {
+ background-image: url(spritesmith2.png);
+ background-position: -546px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_mustache_2_ppink2 {
+ background-image: url(spritesmith2.png);
+ background-position: -571px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_mustache_2_ppurple2 {
+ background-image: url(spritesmith2.png);
+ background-position: -637px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_mustache_2_ppurple2 {
+ background-image: url(spritesmith2.png);
+ background-position: -662px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.hair_mustache_2_pyellow2 {
+ background-image: url(spritesmith2.png);
+ background-position: -728px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.hair_mustache_2_pyellow2 {
+ background-image: url(spritesmith2.png);
+ background-position: -753px -1107px;
+ width: 60px;
+ height: 60px;
+}
+.broad_shirt_black {
+ background-image: url(spritesmith2.png);
+ background-position: -819px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.broad_shirt_black {
+ background-image: url(spritesmith2.png);
+ background-position: -844px -1122px;
+ width: 60px;
+ height: 60px;
+}
+.broad_shirt_blue {
+ background-image: url(spritesmith2.png);
+ background-position: -910px -1092px;
+ width: 90px;
+ height: 90px;
+}
.customize-option.broad_shirt_blue {
background-image: url(spritesmith2.png);
- background-position: -1026px -1213px;
+ background-position: -935px -1122px;
width: 60px;
height: 60px;
}
.broad_shirt_convict {
background-image: url(spritesmith2.png);
- background-position: -1092px -1183px;
+ background-position: -1001px -1092px;
width: 90px;
height: 90px;
}
.customize-option.broad_shirt_convict {
background-image: url(spritesmith2.png);
- background-position: -1117px -1213px;
+ background-position: -1026px -1122px;
width: 60px;
height: 60px;
}
.broad_shirt_cross {
background-image: url(spritesmith2.png);
- background-position: -1183px -1183px;
+ background-position: -1092px -1092px;
width: 90px;
height: 90px;
}
.customize-option.broad_shirt_cross {
background-image: url(spritesmith2.png);
- background-position: -1208px -1213px;
+ background-position: -1117px -1122px;
width: 60px;
height: 60px;
}
.broad_shirt_fire {
background-image: url(spritesmith2.png);
- background-position: -1274px 0px;
+ background-position: -1183px 0px;
width: 90px;
height: 90px;
}
.customize-option.broad_shirt_fire {
background-image: url(spritesmith2.png);
- background-position: -1299px -30px;
+ background-position: -1208px -30px;
width: 60px;
height: 60px;
}
.broad_shirt_green {
background-image: url(spritesmith2.png);
- background-position: -1274px -91px;
+ background-position: -1183px -91px;
width: 90px;
height: 90px;
}
.customize-option.broad_shirt_green {
background-image: url(spritesmith2.png);
- background-position: -1299px -121px;
+ background-position: -1208px -121px;
width: 60px;
height: 60px;
}
.broad_shirt_horizon {
background-image: url(spritesmith2.png);
- background-position: -1274px -182px;
+ background-position: -1183px -182px;
width: 90px;
height: 90px;
}
.customize-option.broad_shirt_horizon {
background-image: url(spritesmith2.png);
- background-position: -1299px -212px;
+ background-position: -1208px -212px;
width: 60px;
height: 60px;
}
.broad_shirt_ocean {
background-image: url(spritesmith2.png);
- background-position: -1274px -273px;
+ background-position: -1183px -273px;
width: 90px;
height: 90px;
}
.customize-option.broad_shirt_ocean {
background-image: url(spritesmith2.png);
- background-position: -1299px -303px;
+ background-position: -1208px -303px;
width: 60px;
height: 60px;
}
.broad_shirt_pink {
background-image: url(spritesmith2.png);
- background-position: -1274px -364px;
+ background-position: -1183px -364px;
width: 90px;
height: 90px;
}
.customize-option.broad_shirt_pink {
background-image: url(spritesmith2.png);
- background-position: -1299px -394px;
+ background-position: -1208px -394px;
width: 60px;
height: 60px;
}
.broad_shirt_purple {
background-image: url(spritesmith2.png);
- background-position: -1274px -455px;
+ background-position: -1183px -455px;
width: 90px;
height: 90px;
}
.customize-option.broad_shirt_purple {
background-image: url(spritesmith2.png);
- background-position: -1299px -485px;
+ background-position: -1208px -485px;
width: 60px;
height: 60px;
}
.broad_shirt_rainbow {
background-image: url(spritesmith2.png);
- background-position: -1274px -546px;
+ background-position: -1183px -546px;
width: 90px;
height: 90px;
}
.customize-option.broad_shirt_rainbow {
background-image: url(spritesmith2.png);
- background-position: -1299px -576px;
+ background-position: -1208px -576px;
width: 60px;
height: 60px;
}
.broad_shirt_redblue {
background-image: url(spritesmith2.png);
- background-position: -1274px -637px;
+ background-position: -1183px -637px;
width: 90px;
height: 90px;
}
.customize-option.broad_shirt_redblue {
background-image: url(spritesmith2.png);
- background-position: -1299px -667px;
+ background-position: -1208px -667px;
width: 60px;
height: 60px;
}
.broad_shirt_thunder {
background-image: url(spritesmith2.png);
- background-position: -1274px -728px;
+ background-position: -1183px -728px;
width: 90px;
height: 90px;
}
.customize-option.broad_shirt_thunder {
background-image: url(spritesmith2.png);
- background-position: -1299px -758px;
+ background-position: -1208px -758px;
width: 60px;
height: 60px;
}
.broad_shirt_tropical {
background-image: url(spritesmith2.png);
- background-position: -1274px -819px;
+ background-position: -1183px -819px;
width: 90px;
height: 90px;
}
.customize-option.broad_shirt_tropical {
background-image: url(spritesmith2.png);
- background-position: -1299px -849px;
+ background-position: -1208px -849px;
width: 60px;
height: 60px;
}
.broad_shirt_white {
background-image: url(spritesmith2.png);
- background-position: -1274px -910px;
+ background-position: -1183px -910px;
width: 90px;
height: 90px;
}
.customize-option.broad_shirt_white {
background-image: url(spritesmith2.png);
- background-position: -1299px -940px;
+ background-position: -1208px -940px;
width: 60px;
height: 60px;
}
.broad_shirt_yellow {
background-image: url(spritesmith2.png);
- background-position: -1274px -1001px;
+ background-position: -1183px -1001px;
width: 90px;
height: 90px;
}
.customize-option.broad_shirt_yellow {
background-image: url(spritesmith2.png);
- background-position: -1299px -1031px;
+ background-position: -1208px -1031px;
width: 60px;
height: 60px;
}
.broad_shirt_zombie {
background-image: url(spritesmith2.png);
- background-position: -1274px -1092px;
+ background-position: -1183px -1092px;
width: 90px;
height: 90px;
}
.customize-option.broad_shirt_zombie {
background-image: url(spritesmith2.png);
- background-position: -1299px -1122px;
+ background-position: -1208px -1122px;
width: 60px;
height: 60px;
}
.slim_shirt_black {
background-image: url(spritesmith2.png);
- background-position: -1274px -1183px;
+ background-position: 0px -1183px;
width: 90px;
height: 90px;
}
.customize-option.slim_shirt_black {
background-image: url(spritesmith2.png);
- background-position: -1299px -1213px;
+ background-position: -25px -1213px;
width: 60px;
height: 60px;
}
.slim_shirt_blue {
background-image: url(spritesmith2.png);
- background-position: 0px -1274px;
+ background-position: -91px -1183px;
width: 90px;
height: 90px;
}
.customize-option.slim_shirt_blue {
background-image: url(spritesmith2.png);
- background-position: -25px -1304px;
+ background-position: -116px -1213px;
width: 60px;
height: 60px;
}
.slim_shirt_convict {
background-image: url(spritesmith2.png);
- background-position: -91px -1274px;
+ background-position: -182px -1183px;
width: 90px;
height: 90px;
}
.customize-option.slim_shirt_convict {
background-image: url(spritesmith2.png);
- background-position: -116px -1304px;
+ background-position: -207px -1213px;
width: 60px;
height: 60px;
}
.slim_shirt_cross {
background-image: url(spritesmith2.png);
- background-position: -182px -1274px;
+ background-position: -273px -1183px;
width: 90px;
height: 90px;
}
.customize-option.slim_shirt_cross {
background-image: url(spritesmith2.png);
- background-position: -207px -1304px;
+ background-position: -298px -1213px;
width: 60px;
height: 60px;
}
.slim_shirt_fire {
background-image: url(spritesmith2.png);
- background-position: -273px -1274px;
+ background-position: -364px -1183px;
width: 90px;
height: 90px;
}
.customize-option.slim_shirt_fire {
background-image: url(spritesmith2.png);
- background-position: -298px -1304px;
+ background-position: -389px -1213px;
width: 60px;
height: 60px;
}
.slim_shirt_green {
background-image: url(spritesmith2.png);
- background-position: -364px -1274px;
+ background-position: -455px -1183px;
width: 90px;
height: 90px;
}
.customize-option.slim_shirt_green {
background-image: url(spritesmith2.png);
- background-position: -389px -1304px;
+ background-position: -480px -1213px;
width: 60px;
height: 60px;
}
.slim_shirt_horizon {
background-image: url(spritesmith2.png);
- background-position: -455px -1274px;
+ background-position: -546px -1183px;
width: 90px;
height: 90px;
}
.customize-option.slim_shirt_horizon {
background-image: url(spritesmith2.png);
- background-position: -480px -1304px;
+ background-position: -571px -1213px;
width: 60px;
height: 60px;
}
.slim_shirt_ocean {
background-image: url(spritesmith2.png);
- background-position: -546px -1274px;
+ background-position: -637px -1183px;
width: 90px;
height: 90px;
}
.customize-option.slim_shirt_ocean {
background-image: url(spritesmith2.png);
- background-position: -571px -1304px;
+ background-position: -662px -1213px;
width: 60px;
height: 60px;
}
.slim_shirt_pink {
background-image: url(spritesmith2.png);
- background-position: -637px -1274px;
+ background-position: -728px -1183px;
width: 90px;
height: 90px;
}
.customize-option.slim_shirt_pink {
background-image: url(spritesmith2.png);
- background-position: -662px -1304px;
+ background-position: -753px -1213px;
width: 60px;
height: 60px;
}
.slim_shirt_purple {
background-image: url(spritesmith2.png);
- background-position: -728px -1274px;
+ background-position: -819px -1183px;
width: 90px;
height: 90px;
}
.customize-option.slim_shirt_purple {
background-image: url(spritesmith2.png);
- background-position: -753px -1304px;
+ background-position: -844px -1213px;
width: 60px;
height: 60px;
}
.slim_shirt_rainbow {
background-image: url(spritesmith2.png);
- background-position: -819px -1274px;
+ background-position: -910px -1183px;
width: 90px;
height: 90px;
}
.customize-option.slim_shirt_rainbow {
background-image: url(spritesmith2.png);
- background-position: -844px -1304px;
+ background-position: -935px -1213px;
width: 60px;
height: 60px;
}
.slim_shirt_redblue {
background-image: url(spritesmith2.png);
- background-position: -910px -1274px;
+ background-position: 0px 0px;
width: 90px;
height: 90px;
}
.customize-option.slim_shirt_redblue {
background-image: url(spritesmith2.png);
- background-position: -935px -1304px;
+ background-position: -25px -30px;
width: 60px;
height: 60px;
}
.slim_shirt_thunder {
background-image: url(spritesmith2.png);
- background-position: -1001px -1274px;
+ background-position: -1092px -1183px;
width: 90px;
height: 90px;
}
.customize-option.slim_shirt_thunder {
background-image: url(spritesmith2.png);
- background-position: -1026px -1304px;
+ background-position: -1117px -1213px;
width: 60px;
height: 60px;
}
.slim_shirt_tropical {
background-image: url(spritesmith2.png);
- background-position: -1092px -1274px;
+ background-position: -1183px -1183px;
width: 90px;
height: 90px;
}
.customize-option.slim_shirt_tropical {
background-image: url(spritesmith2.png);
- background-position: -1117px -1304px;
+ background-position: -1208px -1213px;
width: 60px;
height: 60px;
}
.slim_shirt_white {
background-image: url(spritesmith2.png);
- background-position: -1183px -1274px;
+ background-position: -1274px 0px;
width: 90px;
height: 90px;
}
.customize-option.slim_shirt_white {
background-image: url(spritesmith2.png);
- background-position: -1208px -1304px;
+ background-position: -1299px -30px;
width: 60px;
height: 60px;
}
.slim_shirt_yellow {
background-image: url(spritesmith2.png);
- background-position: -1274px -1274px;
+ background-position: -1274px -91px;
width: 90px;
height: 90px;
}
.customize-option.slim_shirt_yellow {
background-image: url(spritesmith2.png);
- background-position: -1299px -1304px;
+ background-position: -1299px -121px;
width: 60px;
height: 60px;
}
.slim_shirt_zombie {
background-image: url(spritesmith2.png);
- background-position: -1365px 0px;
+ background-position: -1274px -182px;
width: 90px;
height: 90px;
}
.customize-option.slim_shirt_zombie {
background-image: url(spritesmith2.png);
- background-position: -1390px -30px;
+ background-position: -1299px -212px;
width: 60px;
height: 60px;
}
.skin_0ff591 {
background-image: url(spritesmith2.png);
- background-position: -1365px -91px;
+ background-position: -1274px -273px;
width: 90px;
height: 90px;
}
.customize-option.skin_0ff591 {
background-image: url(spritesmith2.png);
- background-position: -1390px -106px;
+ background-position: -1299px -288px;
width: 60px;
height: 60px;
}
.skin_0ff591_sleep {
background-image: url(spritesmith2.png);
- background-position: -1365px -182px;
+ background-position: -1274px -364px;
width: 90px;
height: 90px;
}
.customize-option.skin_0ff591_sleep {
background-image: url(spritesmith2.png);
- background-position: -1390px -197px;
+ background-position: -1299px -379px;
width: 60px;
height: 60px;
}
.skin_2b43f6 {
background-image: url(spritesmith2.png);
- background-position: -1365px -273px;
+ background-position: -1274px -455px;
width: 90px;
height: 90px;
}
.customize-option.skin_2b43f6 {
background-image: url(spritesmith2.png);
- background-position: -1390px -288px;
+ background-position: -1299px -470px;
width: 60px;
height: 60px;
}
.skin_2b43f6_sleep {
background-image: url(spritesmith2.png);
- background-position: -1365px -364px;
+ background-position: -1274px -546px;
width: 90px;
height: 90px;
}
.customize-option.skin_2b43f6_sleep {
background-image: url(spritesmith2.png);
- background-position: -1390px -379px;
+ background-position: -1299px -561px;
width: 60px;
height: 60px;
}
.skin_6bd049 {
background-image: url(spritesmith2.png);
- background-position: -1365px -455px;
+ background-position: -1274px -637px;
width: 90px;
height: 90px;
}
.customize-option.skin_6bd049 {
background-image: url(spritesmith2.png);
- background-position: -1390px -470px;
+ background-position: -1299px -652px;
width: 60px;
height: 60px;
}
.skin_6bd049_sleep {
background-image: url(spritesmith2.png);
- background-position: -1365px -546px;
+ background-position: -1274px -728px;
width: 90px;
height: 90px;
}
.customize-option.skin_6bd049_sleep {
background-image: url(spritesmith2.png);
- background-position: -1390px -561px;
+ background-position: -1299px -743px;
width: 60px;
height: 60px;
}
.skin_800ed0 {
background-image: url(spritesmith2.png);
- background-position: -1365px -637px;
+ background-position: -1274px -819px;
width: 90px;
height: 90px;
}
.customize-option.skin_800ed0 {
background-image: url(spritesmith2.png);
- background-position: -1390px -652px;
+ background-position: -1299px -834px;
width: 60px;
height: 60px;
}
.skin_800ed0_sleep {
background-image: url(spritesmith2.png);
- background-position: -1365px -728px;
+ background-position: -1274px -910px;
width: 90px;
height: 90px;
}
.customize-option.skin_800ed0_sleep {
background-image: url(spritesmith2.png);
- background-position: -1390px -743px;
+ background-position: -1299px -925px;
width: 60px;
height: 60px;
}
.skin_915533 {
background-image: url(spritesmith2.png);
- background-position: -1365px -819px;
+ background-position: -1274px -1001px;
width: 90px;
height: 90px;
}
.customize-option.skin_915533 {
background-image: url(spritesmith2.png);
- background-position: -1390px -834px;
+ background-position: -1299px -1016px;
width: 60px;
height: 60px;
}
.skin_915533_sleep {
background-image: url(spritesmith2.png);
- background-position: -1365px -910px;
+ background-position: -1274px -1092px;
width: 90px;
height: 90px;
}
.customize-option.skin_915533_sleep {
background-image: url(spritesmith2.png);
- background-position: -1390px -925px;
+ background-position: -1299px -1107px;
width: 60px;
height: 60px;
}
.skin_98461a {
background-image: url(spritesmith2.png);
- background-position: -1365px -1001px;
+ background-position: -1274px -1183px;
width: 90px;
height: 90px;
}
.customize-option.skin_98461a {
background-image: url(spritesmith2.png);
- background-position: -1390px -1016px;
+ background-position: -1299px -1198px;
width: 60px;
height: 60px;
}
.skin_98461a_sleep {
background-image: url(spritesmith2.png);
- background-position: -1365px -1092px;
+ background-position: 0px -1274px;
width: 90px;
height: 90px;
}
.customize-option.skin_98461a_sleep {
background-image: url(spritesmith2.png);
- background-position: -1390px -1107px;
+ background-position: -25px -1289px;
+ width: 60px;
+ height: 60px;
+}
+.skin_bear {
+ background-image: url(spritesmith2.png);
+ background-position: -91px -1274px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.skin_bear {
+ background-image: url(spritesmith2.png);
+ background-position: -116px -1289px;
+ width: 60px;
+ height: 60px;
+}
+.skin_bear_sleep {
+ background-image: url(spritesmith2.png);
+ background-position: -182px -1274px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.skin_bear_sleep {
+ background-image: url(spritesmith2.png);
+ background-position: -207px -1289px;
width: 60px;
height: 60px;
}
.skin_c06534 {
background-image: url(spritesmith2.png);
- background-position: -1365px -1183px;
+ background-position: -273px -1274px;
width: 90px;
height: 90px;
}
.customize-option.skin_c06534 {
background-image: url(spritesmith2.png);
- background-position: -1390px -1198px;
+ background-position: -298px -1289px;
width: 60px;
height: 60px;
}
.skin_c06534_sleep {
background-image: url(spritesmith2.png);
- background-position: -1365px -1274px;
+ background-position: -364px -1274px;
width: 90px;
height: 90px;
}
.customize-option.skin_c06534_sleep {
background-image: url(spritesmith2.png);
- background-position: -1390px -1289px;
+ background-position: -389px -1289px;
width: 60px;
height: 60px;
}
.skin_c3e1dc {
background-image: url(spritesmith2.png);
- background-position: 0px -1365px;
+ background-position: -455px -1274px;
width: 90px;
height: 90px;
}
.customize-option.skin_c3e1dc {
background-image: url(spritesmith2.png);
- background-position: -25px -1380px;
+ background-position: -480px -1289px;
width: 60px;
height: 60px;
}
.skin_c3e1dc_sleep {
background-image: url(spritesmith2.png);
- background-position: -91px -1365px;
+ background-position: -546px -1274px;
width: 90px;
height: 90px;
}
.customize-option.skin_c3e1dc_sleep {
background-image: url(spritesmith2.png);
- background-position: -116px -1380px;
+ background-position: -571px -1289px;
+ width: 60px;
+ height: 60px;
+}
+.skin_cactus {
+ background-image: url(spritesmith2.png);
+ background-position: -637px -1274px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.skin_cactus {
+ background-image: url(spritesmith2.png);
+ background-position: -662px -1289px;
+ width: 60px;
+ height: 60px;
+}
+.skin_cactus_sleep {
+ background-image: url(spritesmith2.png);
+ background-position: -728px -1274px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.skin_cactus_sleep {
+ background-image: url(spritesmith2.png);
+ background-position: -753px -1289px;
width: 60px;
height: 60px;
}
.skin_candycorn {
background-image: url(spritesmith2.png);
- background-position: -182px -1365px;
+ background-position: -819px -1274px;
width: 90px;
height: 90px;
}
.customize-option.skin_candycorn {
background-image: url(spritesmith2.png);
- background-position: -207px -1380px;
+ background-position: -844px -1289px;
width: 60px;
height: 60px;
}
.skin_candycorn_sleep {
background-image: url(spritesmith2.png);
- background-position: -273px -1365px;
+ background-position: -910px -1274px;
width: 90px;
height: 90px;
}
.customize-option.skin_candycorn_sleep {
background-image: url(spritesmith2.png);
- background-position: -298px -1380px;
+ background-position: -935px -1289px;
width: 60px;
height: 60px;
}
.skin_d7a9f7 {
background-image: url(spritesmith2.png);
- background-position: -364px -1365px;
+ background-position: -1001px -1274px;
width: 90px;
height: 90px;
}
.customize-option.skin_d7a9f7 {
background-image: url(spritesmith2.png);
- background-position: -389px -1380px;
+ background-position: -1026px -1289px;
width: 60px;
height: 60px;
}
.skin_d7a9f7_sleep {
background-image: url(spritesmith2.png);
- background-position: -455px -1365px;
+ background-position: -1092px -1274px;
width: 90px;
height: 90px;
}
.customize-option.skin_d7a9f7_sleep {
background-image: url(spritesmith2.png);
- background-position: -480px -1380px;
+ background-position: -1117px -1289px;
width: 60px;
height: 60px;
}
.skin_ddc994 {
background-image: url(spritesmith2.png);
- background-position: -546px -1365px;
+ background-position: -1183px -1274px;
width: 90px;
height: 90px;
}
.customize-option.skin_ddc994 {
background-image: url(spritesmith2.png);
- background-position: -571px -1380px;
+ background-position: -1208px -1289px;
width: 60px;
height: 60px;
}
.skin_ddc994_sleep {
background-image: url(spritesmith2.png);
- background-position: -637px -1365px;
+ background-position: -1274px -1274px;
width: 90px;
height: 90px;
}
.customize-option.skin_ddc994_sleep {
background-image: url(spritesmith2.png);
- background-position: -662px -1380px;
+ background-position: -1299px -1289px;
width: 60px;
height: 60px;
}
.skin_ea8349 {
background-image: url(spritesmith2.png);
- background-position: -728px -1365px;
+ background-position: -1365px 0px;
width: 90px;
height: 90px;
}
.customize-option.skin_ea8349 {
background-image: url(spritesmith2.png);
- background-position: -753px -1380px;
+ background-position: -1390px -15px;
width: 60px;
height: 60px;
}
.skin_ea8349_sleep {
background-image: url(spritesmith2.png);
- background-position: -819px -1365px;
+ background-position: -1365px -91px;
width: 90px;
height: 90px;
}
.customize-option.skin_ea8349_sleep {
background-image: url(spritesmith2.png);
- background-position: -844px -1380px;
+ background-position: -1390px -106px;
width: 60px;
height: 60px;
}
.skin_eb052b {
background-image: url(spritesmith2.png);
- background-position: -910px -1365px;
+ background-position: -1365px -182px;
width: 90px;
height: 90px;
}
.customize-option.skin_eb052b {
background-image: url(spritesmith2.png);
- background-position: -935px -1380px;
+ background-position: -1390px -197px;
width: 60px;
height: 60px;
}
.skin_eb052b_sleep {
background-image: url(spritesmith2.png);
- background-position: -1001px -1365px;
+ background-position: -1365px -273px;
width: 90px;
height: 90px;
}
.customize-option.skin_eb052b_sleep {
background-image: url(spritesmith2.png);
- background-position: -1026px -1380px;
+ background-position: -1390px -288px;
width: 60px;
height: 60px;
}
.skin_f5a76e {
background-image: url(spritesmith2.png);
- background-position: -1092px -1365px;
+ background-position: -1365px -364px;
width: 90px;
height: 90px;
}
.customize-option.skin_f5a76e {
background-image: url(spritesmith2.png);
- background-position: -1117px -1380px;
+ background-position: -1390px -379px;
width: 60px;
height: 60px;
}
.skin_f5a76e_sleep {
background-image: url(spritesmith2.png);
- background-position: -1183px -1365px;
+ background-position: -1365px -455px;
width: 90px;
height: 90px;
}
.customize-option.skin_f5a76e_sleep {
background-image: url(spritesmith2.png);
- background-position: -1208px -1380px;
+ background-position: -1390px -470px;
width: 60px;
height: 60px;
}
.skin_f5d70f {
background-image: url(spritesmith2.png);
- background-position: -1274px -1365px;
+ background-position: -1365px -546px;
width: 90px;
height: 90px;
}
.customize-option.skin_f5d70f {
background-image: url(spritesmith2.png);
- background-position: -1299px -1380px;
+ background-position: -1390px -561px;
width: 60px;
height: 60px;
}
.skin_f5d70f_sleep {
background-image: url(spritesmith2.png);
- background-position: -1365px -1365px;
+ background-position: -1365px -637px;
width: 90px;
height: 90px;
}
.customize-option.skin_f5d70f_sleep {
background-image: url(spritesmith2.png);
- background-position: -1390px -1380px;
+ background-position: -1390px -652px;
width: 60px;
height: 60px;
}
.skin_f69922 {
background-image: url(spritesmith2.png);
- background-position: -1456px 0px;
+ background-position: -1365px -728px;
width: 90px;
height: 90px;
}
.customize-option.skin_f69922 {
background-image: url(spritesmith2.png);
- background-position: -1481px -15px;
+ background-position: -1390px -743px;
width: 60px;
height: 60px;
}
.skin_f69922_sleep {
background-image: url(spritesmith2.png);
- background-position: -1456px -91px;
+ background-position: -1365px -819px;
width: 90px;
height: 90px;
}
.customize-option.skin_f69922_sleep {
background-image: url(spritesmith2.png);
- background-position: -1481px -106px;
+ background-position: -1390px -834px;
+ width: 60px;
+ height: 60px;
+}
+.skin_fox {
+ background-image: url(spritesmith2.png);
+ background-position: -1365px -910px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.skin_fox {
+ background-image: url(spritesmith2.png);
+ background-position: -1390px -925px;
+ width: 60px;
+ height: 60px;
+}
+.skin_fox_sleep {
+ background-image: url(spritesmith2.png);
+ background-position: -1365px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.skin_fox_sleep {
+ background-image: url(spritesmith2.png);
+ background-position: -1390px -1016px;
width: 60px;
height: 60px;
}
.skin_ghost {
background-image: url(spritesmith2.png);
- background-position: -1456px -182px;
+ background-position: -1365px -1092px;
width: 90px;
height: 90px;
}
.customize-option.skin_ghost {
background-image: url(spritesmith2.png);
- background-position: -1481px -197px;
+ background-position: -1390px -1107px;
width: 60px;
height: 60px;
}
.skin_ghost_sleep {
background-image: url(spritesmith2.png);
- background-position: -1456px -273px;
+ background-position: -1365px -1183px;
width: 90px;
height: 90px;
}
.customize-option.skin_ghost_sleep {
background-image: url(spritesmith2.png);
- background-position: -1481px -288px;
+ background-position: -1390px -1198px;
+ width: 60px;
+ height: 60px;
+}
+.skin_lion {
+ background-image: url(spritesmith2.png);
+ background-position: -1365px -1274px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.skin_lion {
+ background-image: url(spritesmith2.png);
+ background-position: -1390px -1289px;
+ width: 60px;
+ height: 60px;
+}
+.skin_lion_sleep {
+ background-image: url(spritesmith2.png);
+ background-position: 0px -1365px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.skin_lion_sleep {
+ background-image: url(spritesmith2.png);
+ background-position: -25px -1380px;
width: 60px;
height: 60px;
}
.skin_monster {
background-image: url(spritesmith2.png);
- background-position: -1456px -364px;
+ background-position: -91px -1365px;
width: 90px;
height: 90px;
}
.customize-option.skin_monster {
background-image: url(spritesmith2.png);
- background-position: -1481px -379px;
+ background-position: -116px -1380px;
width: 60px;
height: 60px;
}
.skin_monster_sleep {
background-image: url(spritesmith2.png);
- background-position: -1456px -455px;
+ background-position: -182px -1365px;
width: 90px;
height: 90px;
}
.customize-option.skin_monster_sleep {
background-image: url(spritesmith2.png);
- background-position: -1481px -470px;
+ background-position: -207px -1380px;
width: 60px;
height: 60px;
}
.skin_ogre {
background-image: url(spritesmith2.png);
- background-position: -1456px -546px;
+ background-position: -273px -1365px;
width: 90px;
height: 90px;
}
.customize-option.skin_ogre {
background-image: url(spritesmith2.png);
- background-position: -1481px -561px;
+ background-position: -298px -1380px;
width: 60px;
height: 60px;
}
.skin_ogre_sleep {
background-image: url(spritesmith2.png);
- background-position: -1456px -637px;
+ background-position: -364px -1365px;
width: 90px;
height: 90px;
}
.customize-option.skin_ogre_sleep {
background-image: url(spritesmith2.png);
- background-position: -1481px -652px;
+ background-position: -389px -1380px;
+ width: 60px;
+ height: 60px;
+}
+.skin_panda {
+ background-image: url(spritesmith2.png);
+ background-position: -455px -1365px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.skin_panda {
+ background-image: url(spritesmith2.png);
+ background-position: -480px -1380px;
+ width: 60px;
+ height: 60px;
+}
+.skin_panda_sleep {
+ background-image: url(spritesmith2.png);
+ background-position: -546px -1365px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.skin_panda_sleep {
+ background-image: url(spritesmith2.png);
+ background-position: -571px -1380px;
width: 60px;
height: 60px;
}
.skin_pastelBlue {
background-image: url(spritesmith2.png);
- background-position: -1456px -728px;
+ background-position: -637px -1365px;
width: 90px;
height: 90px;
}
.customize-option.skin_pastelBlue {
background-image: url(spritesmith2.png);
- background-position: -1481px -743px;
+ background-position: -662px -1380px;
width: 60px;
height: 60px;
}
.skin_pastelBlue_sleep {
background-image: url(spritesmith2.png);
- background-position: -1456px -819px;
+ background-position: -728px -1365px;
width: 90px;
height: 90px;
}
.customize-option.skin_pastelBlue_sleep {
background-image: url(spritesmith2.png);
- background-position: -1481px -834px;
+ background-position: -753px -1380px;
width: 60px;
height: 60px;
}
.skin_pastelGreen {
background-image: url(spritesmith2.png);
- background-position: -1456px -910px;
+ background-position: -819px -1365px;
width: 90px;
height: 90px;
}
.customize-option.skin_pastelGreen {
background-image: url(spritesmith2.png);
- background-position: -1481px -925px;
+ background-position: -844px -1380px;
width: 60px;
height: 60px;
}
.skin_pastelGreen_sleep {
background-image: url(spritesmith2.png);
- background-position: -1456px -1001px;
+ background-position: -910px -1365px;
width: 90px;
height: 90px;
}
.customize-option.skin_pastelGreen_sleep {
background-image: url(spritesmith2.png);
- background-position: -1481px -1016px;
+ background-position: -935px -1380px;
width: 60px;
height: 60px;
}
.skin_pastelOrange {
background-image: url(spritesmith2.png);
- background-position: -1456px -1092px;
+ background-position: -1001px -1365px;
width: 90px;
height: 90px;
}
.customize-option.skin_pastelOrange {
background-image: url(spritesmith2.png);
- background-position: -1481px -1107px;
+ background-position: -1026px -1380px;
width: 60px;
height: 60px;
}
.skin_pastelOrange_sleep {
background-image: url(spritesmith2.png);
- background-position: -1456px -1183px;
+ background-position: -1092px -1365px;
width: 90px;
height: 90px;
}
.customize-option.skin_pastelOrange_sleep {
background-image: url(spritesmith2.png);
- background-position: -1481px -1198px;
+ background-position: -1117px -1380px;
width: 60px;
height: 60px;
}
.skin_pastelPink {
background-image: url(spritesmith2.png);
- background-position: -1456px -1274px;
+ background-position: -1183px -1365px;
width: 90px;
height: 90px;
}
.customize-option.skin_pastelPink {
background-image: url(spritesmith2.png);
- background-position: -1481px -1289px;
+ background-position: -1208px -1380px;
width: 60px;
height: 60px;
}
.skin_pastelPink_sleep {
background-image: url(spritesmith2.png);
- background-position: -1456px -1365px;
+ background-position: -1274px -1365px;
width: 90px;
height: 90px;
}
.customize-option.skin_pastelPink_sleep {
background-image: url(spritesmith2.png);
- background-position: -1481px -1380px;
+ background-position: -1299px -1380px;
width: 60px;
height: 60px;
}
.skin_pastelPurple {
background-image: url(spritesmith2.png);
- background-position: 0px -1456px;
+ background-position: -1365px -1365px;
width: 90px;
height: 90px;
}
.customize-option.skin_pastelPurple {
background-image: url(spritesmith2.png);
- background-position: -25px -1471px;
+ background-position: -1390px -1380px;
width: 60px;
height: 60px;
}
.skin_pastelPurple_sleep {
background-image: url(spritesmith2.png);
- background-position: -91px -1456px;
+ background-position: -1456px 0px;
width: 90px;
height: 90px;
}
.customize-option.skin_pastelPurple_sleep {
background-image: url(spritesmith2.png);
- background-position: -116px -1471px;
+ background-position: -1481px -15px;
width: 60px;
height: 60px;
}
.skin_pastelRainbowChevron {
background-image: url(spritesmith2.png);
- background-position: -182px -1456px;
+ background-position: -1456px -91px;
width: 90px;
height: 90px;
}
.customize-option.skin_pastelRainbowChevron {
background-image: url(spritesmith2.png);
- background-position: -207px -1471px;
+ background-position: -1481px -106px;
width: 60px;
height: 60px;
}
.skin_pastelRainbowChevron_sleep {
background-image: url(spritesmith2.png);
- background-position: -273px -1456px;
+ background-position: -1456px -182px;
width: 90px;
height: 90px;
}
.customize-option.skin_pastelRainbowChevron_sleep {
background-image: url(spritesmith2.png);
- background-position: -298px -1471px;
+ background-position: -1481px -197px;
width: 60px;
height: 60px;
}
.skin_pastelRainbowDiagonal {
background-image: url(spritesmith2.png);
- background-position: -364px -1456px;
+ background-position: -1456px -273px;
width: 90px;
height: 90px;
}
.customize-option.skin_pastelRainbowDiagonal {
background-image: url(spritesmith2.png);
- background-position: -389px -1471px;
+ background-position: -1481px -288px;
width: 60px;
height: 60px;
}
.skin_pastelRainbowDiagonal_sleep {
background-image: url(spritesmith2.png);
- background-position: -455px -1456px;
+ background-position: -1456px -364px;
width: 90px;
height: 90px;
}
.customize-option.skin_pastelRainbowDiagonal_sleep {
background-image: url(spritesmith2.png);
- background-position: -480px -1471px;
+ background-position: -1481px -379px;
width: 60px;
height: 60px;
}
.skin_pastelYellow {
background-image: url(spritesmith2.png);
- background-position: -546px -1456px;
+ background-position: -1456px -455px;
width: 90px;
height: 90px;
}
.customize-option.skin_pastelYellow {
background-image: url(spritesmith2.png);
- background-position: -571px -1471px;
+ background-position: -1481px -470px;
width: 60px;
height: 60px;
}
.skin_pastelYellow_sleep {
background-image: url(spritesmith2.png);
- background-position: -637px -1456px;
+ background-position: -1456px -546px;
width: 90px;
height: 90px;
}
.customize-option.skin_pastelYellow_sleep {
background-image: url(spritesmith2.png);
- background-position: -662px -1471px;
+ background-position: -1481px -561px;
+ width: 60px;
+ height: 60px;
+}
+.skin_pig {
+ background-image: url(spritesmith2.png);
+ background-position: -1456px -637px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.skin_pig {
+ background-image: url(spritesmith2.png);
+ background-position: -1481px -652px;
+ width: 60px;
+ height: 60px;
+}
+.skin_pig_sleep {
+ background-image: url(spritesmith2.png);
+ background-position: -1456px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.skin_pig_sleep {
+ background-image: url(spritesmith2.png);
+ background-position: -1481px -743px;
width: 60px;
height: 60px;
}
.skin_pumpkin {
background-image: url(spritesmith2.png);
- background-position: -728px -1456px;
+ background-position: -1456px -819px;
width: 90px;
height: 90px;
}
.customize-option.skin_pumpkin {
background-image: url(spritesmith2.png);
- background-position: -753px -1471px;
+ background-position: -1481px -834px;
width: 60px;
height: 60px;
}
.skin_pumpkin2 {
background-image: url(spritesmith2.png);
- background-position: -819px -1456px;
+ background-position: -1456px -910px;
width: 90px;
height: 90px;
}
.customize-option.skin_pumpkin2 {
background-image: url(spritesmith2.png);
- background-position: -844px -1471px;
+ background-position: -1481px -925px;
width: 60px;
height: 60px;
}
.skin_pumpkin2_sleep {
background-image: url(spritesmith2.png);
- background-position: -910px -1456px;
+ background-position: -1456px -1001px;
width: 90px;
height: 90px;
}
.customize-option.skin_pumpkin2_sleep {
background-image: url(spritesmith2.png);
- background-position: -935px -1471px;
+ background-position: -1481px -1016px;
width: 60px;
height: 60px;
}
.skin_pumpkin_sleep {
background-image: url(spritesmith2.png);
- background-position: -1001px -1456px;
+ background-position: -1456px -1092px;
width: 90px;
height: 90px;
}
.customize-option.skin_pumpkin_sleep {
background-image: url(spritesmith2.png);
- background-position: -1026px -1471px;
+ background-position: -1481px -1107px;
width: 60px;
height: 60px;
}
.skin_rainbow {
background-image: url(spritesmith2.png);
- background-position: -1092px -1456px;
+ background-position: -1456px -1183px;
width: 90px;
height: 90px;
}
.customize-option.skin_rainbow {
background-image: url(spritesmith2.png);
- background-position: -1117px -1471px;
+ background-position: -1481px -1198px;
width: 60px;
height: 60px;
}
.skin_rainbow_sleep {
background-image: url(spritesmith2.png);
- background-position: -1183px -1456px;
+ background-position: -1456px -1274px;
width: 90px;
height: 90px;
}
.customize-option.skin_rainbow_sleep {
background-image: url(spritesmith2.png);
- background-position: -1208px -1471px;
+ background-position: -1481px -1289px;
width: 60px;
height: 60px;
}
.skin_reptile {
background-image: url(spritesmith2.png);
- background-position: -1274px -1456px;
+ background-position: -1456px -1365px;
width: 90px;
height: 90px;
}
.customize-option.skin_reptile {
background-image: url(spritesmith2.png);
- background-position: -1299px -1471px;
+ background-position: -1481px -1380px;
width: 60px;
height: 60px;
}
.skin_reptile_sleep {
background-image: url(spritesmith2.png);
- background-position: -1365px -1456px;
+ background-position: 0px -1456px;
width: 90px;
height: 90px;
}
.customize-option.skin_reptile_sleep {
background-image: url(spritesmith2.png);
- background-position: -1390px -1471px;
+ background-position: -25px -1471px;
width: 60px;
height: 60px;
}
.skin_shadow {
background-image: url(spritesmith2.png);
- background-position: -1456px -1456px;
+ background-position: -91px -1456px;
width: 90px;
height: 90px;
}
.customize-option.skin_shadow {
background-image: url(spritesmith2.png);
- background-position: -1481px -1471px;
+ background-position: -116px -1471px;
width: 60px;
height: 60px;
}
.skin_shadow2 {
background-image: url(spritesmith2.png);
- background-position: -1547px 0px;
+ background-position: -182px -1456px;
width: 90px;
height: 90px;
}
.customize-option.skin_shadow2 {
background-image: url(spritesmith2.png);
- background-position: -1572px -15px;
+ background-position: -207px -1471px;
width: 60px;
height: 60px;
}
.skin_shadow2_sleep {
background-image: url(spritesmith2.png);
- background-position: -1547px -91px;
+ background-position: -273px -1456px;
width: 90px;
height: 90px;
}
.customize-option.skin_shadow2_sleep {
background-image: url(spritesmith2.png);
- background-position: -1572px -106px;
+ background-position: -298px -1471px;
width: 60px;
height: 60px;
}
.skin_shadow_sleep {
background-image: url(spritesmith2.png);
- background-position: -1547px -182px;
+ background-position: -364px -1456px;
width: 90px;
height: 90px;
}
.customize-option.skin_shadow_sleep {
background-image: url(spritesmith2.png);
- background-position: -1572px -197px;
+ background-position: -389px -1471px;
width: 60px;
height: 60px;
}
.skin_skeleton {
background-image: url(spritesmith2.png);
- background-position: -1547px -273px;
+ background-position: -455px -1456px;
width: 90px;
height: 90px;
}
.customize-option.skin_skeleton {
background-image: url(spritesmith2.png);
- background-position: -1572px -288px;
+ background-position: -480px -1471px;
width: 60px;
height: 60px;
}
.skin_skeleton2 {
background-image: url(spritesmith2.png);
- background-position: -1547px -364px;
+ background-position: -546px -1456px;
width: 90px;
height: 90px;
}
.customize-option.skin_skeleton2 {
background-image: url(spritesmith2.png);
- background-position: -1572px -379px;
+ background-position: -571px -1471px;
width: 60px;
height: 60px;
}
.skin_skeleton2_sleep {
background-image: url(spritesmith2.png);
- background-position: -1547px -455px;
+ background-position: -637px -1456px;
width: 90px;
height: 90px;
}
.customize-option.skin_skeleton2_sleep {
background-image: url(spritesmith2.png);
- background-position: -1572px -470px;
+ background-position: -662px -1471px;
width: 60px;
height: 60px;
}
.skin_skeleton_sleep {
background-image: url(spritesmith2.png);
- background-position: -1547px -546px;
+ background-position: -728px -1456px;
width: 90px;
height: 90px;
}
.customize-option.skin_skeleton_sleep {
background-image: url(spritesmith2.png);
- background-position: -1572px -561px;
+ background-position: -753px -1471px;
+ width: 60px;
+ height: 60px;
+}
+.skin_tiger {
+ background-image: url(spritesmith2.png);
+ background-position: -819px -1456px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.skin_tiger {
+ background-image: url(spritesmith2.png);
+ background-position: -844px -1471px;
+ width: 60px;
+ height: 60px;
+}
+.skin_tiger_sleep {
+ background-image: url(spritesmith2.png);
+ background-position: -910px -1456px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.skin_tiger_sleep {
+ background-image: url(spritesmith2.png);
+ background-position: -935px -1471px;
width: 60px;
height: 60px;
}
.skin_transparent {
background-image: url(spritesmith2.png);
- background-position: -1547px -637px;
+ background-position: -1001px -1456px;
width: 90px;
height: 90px;
}
.customize-option.skin_transparent {
background-image: url(spritesmith2.png);
- background-position: -1572px -652px;
+ background-position: -1026px -1471px;
width: 60px;
height: 60px;
}
.skin_transparent_sleep {
background-image: url(spritesmith2.png);
- background-position: -1547px -728px;
+ background-position: -1092px -1456px;
width: 90px;
height: 90px;
}
.customize-option.skin_transparent_sleep {
background-image: url(spritesmith2.png);
- background-position: -1572px -743px;
+ background-position: -1117px -1471px;
+ width: 60px;
+ height: 60px;
+}
+.skin_wolf {
+ background-image: url(spritesmith2.png);
+ background-position: -1183px -1456px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.skin_wolf {
+ background-image: url(spritesmith2.png);
+ background-position: -1208px -1471px;
+ width: 60px;
+ height: 60px;
+}
+.skin_wolf_sleep {
+ background-image: url(spritesmith2.png);
+ background-position: -1274px -1456px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.skin_wolf_sleep {
+ background-image: url(spritesmith2.png);
+ background-position: -1299px -1471px;
width: 60px;
height: 60px;
}
.skin_zombie {
background-image: url(spritesmith2.png);
- background-position: -1547px -819px;
+ background-position: -1365px -1456px;
width: 90px;
height: 90px;
}
.customize-option.skin_zombie {
background-image: url(spritesmith2.png);
- background-position: -1572px -834px;
+ background-position: -1390px -1471px;
width: 60px;
height: 60px;
}
.skin_zombie2 {
background-image: url(spritesmith2.png);
- background-position: -1547px -910px;
+ background-position: -1456px -1456px;
width: 90px;
height: 90px;
}
.customize-option.skin_zombie2 {
background-image: url(spritesmith2.png);
- background-position: -1572px -925px;
+ background-position: -1481px -1471px;
width: 60px;
height: 60px;
}
.skin_zombie2_sleep {
background-image: url(spritesmith2.png);
- background-position: -1547px -1001px;
+ background-position: -1547px 0px;
width: 90px;
height: 90px;
}
.customize-option.skin_zombie2_sleep {
background-image: url(spritesmith2.png);
- background-position: -1572px -1016px;
+ background-position: -1572px -15px;
width: 60px;
height: 60px;
}
.skin_zombie_sleep {
background-image: url(spritesmith2.png);
- background-position: -1547px -1092px;
+ background-position: -1547px -91px;
width: 90px;
height: 90px;
}
.customize-option.skin_zombie_sleep {
background-image: url(spritesmith2.png);
- background-position: -1572px -1107px;
+ background-position: -1572px -106px;
width: 60px;
height: 60px;
}
+.broad_armor_armoire_gladiatorArmor {
+ background-image: url(spritesmith2.png);
+ background-position: -1547px -182px;
+ width: 90px;
+ height: 90px;
+}
+.broad_armor_armoire_lunarArmor {
+ background-image: url(spritesmith2.png);
+ background-position: -1547px -273px;
+ width: 90px;
+ height: 90px;
+}
+.head_armoire_gladiatorHelm {
+ background-image: url(spritesmith2.png);
+ background-position: -1547px -364px;
+ width: 90px;
+ height: 90px;
+}
+.head_armoire_lunarCrown {
+ background-image: url(spritesmith2.png);
+ background-position: -1547px -455px;
+ width: 90px;
+ height: 90px;
+}
+.head_armoire_rancherHat {
+ background-image: url(spritesmith2.png);
+ background-position: -1547px -546px;
+ width: 90px;
+ height: 90px;
+}
+.head_armoire_redHairbow {
+ background-image: url(spritesmith2.png);
+ background-position: -1547px -637px;
+ width: 90px;
+ height: 90px;
+}
+.head_armoire_violetFloppyHat {
+ background-image: url(spritesmith2.png);
+ background-position: -1547px -728px;
+ width: 90px;
+ height: 90px;
+}
+.shield_armoire_gladiatorShield {
+ background-image: url(spritesmith2.png);
+ background-position: -1547px -819px;
+ width: 90px;
+ height: 90px;
+}
+.shop_armor_armoire_gladiatorArmor {
+ background-image: url(spritesmith2.png);
+ background-position: -1590px -1679px;
+ width: 40px;
+ height: 40px;
+}
+.shop_armor_armoire_lunarArmor {
+ background-image: url(spritesmith2.png);
+ background-position: -1549px -1679px;
+ width: 40px;
+ height: 40px;
+}
+.shop_head_armoire_gladiatorHelm {
+ background-image: url(spritesmith2.png);
+ background-position: -1508px -1679px;
+ width: 40px;
+ height: 40px;
+}
+.shop_head_armoire_lunarCrown {
+ background-image: url(spritesmith2.png);
+ background-position: -1467px -1679px;
+ width: 40px;
+ height: 40px;
+}
+.shop_head_armoire_rancherHat {
+ background-image: url(spritesmith2.png);
+ background-position: -1344px -1679px;
+ width: 40px;
+ height: 40px;
+}
+.shop_head_armoire_redHairbow {
+ background-image: url(spritesmith2.png);
+ background-position: -1303px -1679px;
+ width: 40px;
+ height: 40px;
+}
+.shop_head_armoire_violetFloppyHat {
+ background-image: url(spritesmith2.png);
+ background-position: -1262px -1679px;
+ width: 40px;
+ height: 40px;
+}
+.shop_shield_armoire_gladiatorShield {
+ background-image: url(spritesmith2.png);
+ background-position: -1221px -1679px;
+ width: 40px;
+ height: 40px;
+}
+.shop_weapon_armoire_basicCrossbow {
+ background-image: url(spritesmith2.png);
+ background-position: -1180px -1679px;
+ width: 40px;
+ height: 40px;
+}
+.shop_weapon_armoire_lunarSceptre {
+ background-image: url(spritesmith2.png);
+ background-position: -1139px -1679px;
+ width: 40px;
+ height: 40px;
+}
+.slim_armor_armoire_gladiatorArmor {
+ background-image: url(spritesmith2.png);
+ background-position: -303px -1547px;
+ width: 90px;
+ height: 90px;
+}
+.slim_armor_armoire_lunarArmor {
+ background-image: url(spritesmith2.png);
+ background-position: -394px -1547px;
+ width: 90px;
+ height: 90px;
+}
+.weapon_armoire_basicCrossbow {
+ background-image: url(spritesmith2.png);
+ background-position: -485px -1547px;
+ width: 90px;
+ height: 90px;
+}
+.weapon_armoire_lunarSceptre {
+ background-image: url(spritesmith2.png);
+ background-position: -576px -1547px;
+ width: 90px;
+ height: 90px;
+}
.broad_armor_healer_1 {
background-image: url(spritesmith2.png);
- background-position: -1547px -1183px;
+ background-position: -667px -1547px;
width: 90px;
height: 90px;
}
.broad_armor_healer_2 {
background-image: url(spritesmith2.png);
- background-position: -1547px -1274px;
+ background-position: -758px -1547px;
width: 90px;
height: 90px;
}
.broad_armor_healer_3 {
background-image: url(spritesmith2.png);
- background-position: -1547px -1365px;
+ background-position: -849px -1547px;
width: 90px;
height: 90px;
}
.broad_armor_healer_4 {
background-image: url(spritesmith2.png);
- background-position: -1547px -1456px;
+ background-position: -940px -1547px;
width: 90px;
height: 90px;
}
.broad_armor_healer_5 {
background-image: url(spritesmith2.png);
- background-position: 0px -1547px;
+ background-position: -1031px -1547px;
width: 90px;
height: 90px;
}
.broad_armor_rogue_1 {
background-image: url(spritesmith2.png);
- background-position: -91px -1547px;
+ background-position: -1122px -1547px;
width: 90px;
height: 90px;
}
.broad_armor_rogue_2 {
background-image: url(spritesmith2.png);
- background-position: -182px -1547px;
+ background-position: -1213px -1547px;
width: 90px;
height: 90px;
}
.broad_armor_rogue_3 {
background-image: url(spritesmith2.png);
- background-position: -273px -1547px;
+ background-position: -1304px -1547px;
width: 90px;
height: 90px;
}
.broad_armor_rogue_4 {
background-image: url(spritesmith2.png);
- background-position: -364px -1547px;
+ background-position: -1395px -1547px;
width: 90px;
height: 90px;
}
.broad_armor_rogue_5 {
background-image: url(spritesmith2.png);
- background-position: -455px -1547px;
+ background-position: -1486px -1547px;
width: 90px;
height: 90px;
}
.broad_armor_special_2 {
background-image: url(spritesmith2.png);
- background-position: -546px -1547px;
+ background-position: -1638px 0px;
width: 90px;
height: 90px;
}
.broad_armor_warrior_1 {
background-image: url(spritesmith2.png);
- background-position: -637px -1547px;
+ background-position: -1638px -91px;
width: 90px;
height: 90px;
}
.broad_armor_warrior_2 {
background-image: url(spritesmith2.png);
- background-position: -728px -1547px;
+ background-position: -1638px -182px;
width: 90px;
height: 90px;
}
.broad_armor_warrior_3 {
background-image: url(spritesmith2.png);
- background-position: -819px -1547px;
+ background-position: -1638px -273px;
width: 90px;
height: 90px;
}
.broad_armor_warrior_4 {
background-image: url(spritesmith2.png);
- background-position: -910px -1547px;
+ background-position: -1638px -364px;
width: 90px;
height: 90px;
}
.broad_armor_warrior_5 {
background-image: url(spritesmith2.png);
- background-position: -1001px -1547px;
+ background-position: -1638px -455px;
width: 90px;
height: 90px;
}
.broad_armor_wizard_1 {
background-image: url(spritesmith2.png);
- background-position: -1092px -1547px;
+ background-position: -1638px -546px;
width: 90px;
height: 90px;
}
.broad_armor_wizard_2 {
background-image: url(spritesmith2.png);
- background-position: -1183px -1547px;
+ background-position: -1638px -637px;
width: 90px;
height: 90px;
}
.broad_armor_wizard_3 {
background-image: url(spritesmith2.png);
- background-position: -1274px -1547px;
+ background-position: -1638px -728px;
width: 90px;
height: 90px;
}
.broad_armor_wizard_4 {
background-image: url(spritesmith2.png);
- background-position: -1365px -1547px;
+ background-position: -1638px -819px;
width: 90px;
height: 90px;
}
.broad_armor_wizard_5 {
background-image: url(spritesmith2.png);
- background-position: -1456px -1547px;
+ background-position: -1638px -910px;
width: 90px;
height: 90px;
}
.shop_armor_healer_1 {
background-image: url(spritesmith2.png);
- background-position: -1225px -1638px;
+ background-position: -1098px -1679px;
width: 40px;
height: 40px;
}
.shop_armor_healer_2 {
background-image: url(spritesmith2.png);
- background-position: -1184px -1638px;
+ background-position: -1057px -1679px;
width: 40px;
height: 40px;
}
.shop_armor_healer_3 {
background-image: url(spritesmith2.png);
- background-position: -1143px -1638px;
+ background-position: -1016px -1679px;
width: 40px;
height: 40px;
}
.shop_armor_healer_4 {
background-image: url(spritesmith2.png);
- background-position: -1102px -1638px;
+ background-position: -1672px -1638px;
width: 40px;
height: 40px;
}
.shop_armor_healer_5 {
background-image: url(spritesmith2.png);
- background-position: -1061px -1638px;
+ background-position: -1631px -1679px;
width: 40px;
height: 40px;
}
.shop_armor_rogue_1 {
background-image: url(spritesmith2.png);
- background-position: -1020px -1638px;
+ background-position: -1590px -1638px;
width: 40px;
height: 40px;
}
.shop_armor_rogue_2 {
background-image: url(spritesmith2.png);
- background-position: -979px -1638px;
+ background-position: -1549px -1638px;
width: 40px;
height: 40px;
}
.shop_armor_rogue_3 {
background-image: url(spritesmith2.png);
- background-position: -938px -1638px;
+ background-position: -1508px -1638px;
width: 40px;
height: 40px;
}
.shop_armor_rogue_4 {
background-image: url(spritesmith2.png);
- background-position: -897px -1638px;
+ background-position: -1467px -1638px;
width: 40px;
height: 40px;
}
.shop_armor_rogue_5 {
background-image: url(spritesmith2.png);
- background-position: -856px -1638px;
+ background-position: -1426px -1638px;
width: 40px;
height: 40px;
}
.shop_armor_special_0 {
background-image: url(spritesmith2.png);
- background-position: -1266px -1638px;
+ background-position: -1385px -1638px;
width: 40px;
height: 40px;
}
.shop_armor_special_1 {
background-image: url(spritesmith2.png);
- background-position: -774px -1638px;
+ background-position: -1344px -1638px;
width: 40px;
height: 40px;
}
.shop_armor_special_2 {
background-image: url(spritesmith2.png);
- background-position: -733px -1638px;
+ background-position: -1303px -1638px;
width: 40px;
height: 40px;
}
.shop_armor_warrior_1 {
background-image: url(spritesmith2.png);
- background-position: -692px -1638px;
+ background-position: -1262px -1638px;
width: 40px;
height: 40px;
}
.shop_armor_warrior_2 {
background-image: url(spritesmith2.png);
- background-position: -651px -1638px;
+ background-position: -1221px -1638px;
width: 40px;
height: 40px;
}
.shop_armor_warrior_3 {
background-image: url(spritesmith2.png);
- background-position: -610px -1638px;
+ background-position: -1180px -1638px;
width: 40px;
height: 40px;
}
.shop_armor_warrior_4 {
background-image: url(spritesmith2.png);
- background-position: -569px -1638px;
+ background-position: -1139px -1638px;
width: 40px;
height: 40px;
}
.shop_armor_warrior_5 {
background-image: url(spritesmith2.png);
- background-position: -528px -1638px;
+ background-position: -1577px -1547px;
width: 40px;
height: 40px;
}
.shop_armor_wizard_1 {
background-image: url(spritesmith2.png);
- background-position: -487px -1638px;
+ background-position: -1631px -1638px;
width: 40px;
height: 40px;
}
.shop_armor_wizard_2 {
background-image: url(spritesmith2.png);
- background-position: -446px -1638px;
+ background-position: -1577px -1588px;
width: 40px;
height: 40px;
}
.shop_armor_wizard_3 {
background-image: url(spritesmith2.png);
- background-position: -405px -1638px;
+ background-position: -1016px -1638px;
width: 40px;
height: 40px;
}
.shop_armor_wizard_4 {
background-image: url(spritesmith2.png);
- background-position: -815px -1638px;
+ background-position: -1057px -1638px;
width: 40px;
height: 40px;
}
.shop_armor_wizard_5 {
background-image: url(spritesmith2.png);
- background-position: -364px -1638px;
+ background-position: -1098px -1638px;
width: 40px;
height: 40px;
}
.slim_armor_healer_1 {
background-image: url(spritesmith2.png);
- background-position: -182px -1638px;
+ background-position: -819px -1638px;
width: 90px;
height: 90px;
}
.slim_armor_healer_2 {
background-image: url(spritesmith2.png);
- background-position: -91px -1638px;
+ background-position: -728px -1638px;
width: 90px;
height: 90px;
}
.slim_armor_healer_3 {
background-image: url(spritesmith2.png);
- background-position: 0px -1638px;
+ background-position: -637px -1638px;
width: 90px;
height: 90px;
}
.slim_armor_healer_4 {
background-image: url(spritesmith2.png);
- background-position: -1638px -1547px;
+ background-position: -546px -1638px;
width: 90px;
height: 90px;
}
.slim_armor_healer_5 {
background-image: url(spritesmith2.png);
- background-position: -1638px -1456px;
+ background-position: -455px -1638px;
width: 90px;
height: 90px;
}
.slim_armor_rogue_1 {
background-image: url(spritesmith2.png);
- background-position: -1638px -1365px;
+ background-position: -364px -1638px;
width: 90px;
height: 90px;
}
.slim_armor_rogue_2 {
background-image: url(spritesmith2.png);
- background-position: -1638px -1274px;
+ background-position: -273px -1638px;
width: 90px;
height: 90px;
}
.slim_armor_rogue_3 {
background-image: url(spritesmith2.png);
- background-position: -1638px -1183px;
+ background-position: -182px -1638px;
width: 90px;
height: 90px;
}
.slim_armor_rogue_4 {
background-image: url(spritesmith2.png);
- background-position: -1638px -1092px;
+ background-position: -91px -1638px;
width: 90px;
height: 90px;
}
.slim_armor_rogue_5 {
background-image: url(spritesmith2.png);
- background-position: -1638px -1001px;
+ background-position: 0px -1638px;
width: 90px;
height: 90px;
}
.slim_armor_special_2 {
background-image: url(spritesmith2.png);
- background-position: -1638px -910px;
+ background-position: -1638px -1547px;
width: 90px;
height: 90px;
}
.slim_armor_warrior_1 {
background-image: url(spritesmith2.png);
- background-position: -1638px -819px;
+ background-position: -1638px -1456px;
width: 90px;
height: 90px;
}
.slim_armor_warrior_2 {
background-image: url(spritesmith2.png);
- background-position: -1638px -728px;
+ background-position: -1638px -1365px;
width: 90px;
height: 90px;
}
.slim_armor_warrior_3 {
background-image: url(spritesmith2.png);
- background-position: -1638px -637px;
+ background-position: -1638px -1274px;
width: 90px;
height: 90px;
}
.slim_armor_warrior_4 {
background-image: url(spritesmith2.png);
- background-position: -1638px -546px;
+ background-position: -1638px -1183px;
width: 90px;
height: 90px;
}
.slim_armor_warrior_5 {
background-image: url(spritesmith2.png);
- background-position: -1638px -455px;
+ background-position: -1638px -1092px;
width: 90px;
height: 90px;
}
.slim_armor_wizard_1 {
background-image: url(spritesmith2.png);
- background-position: -1638px -364px;
+ background-position: -1638px -1001px;
width: 90px;
height: 90px;
}
.slim_armor_wizard_2 {
background-image: url(spritesmith2.png);
- background-position: -1638px -273px;
+ background-position: -212px -1547px;
width: 90px;
height: 90px;
}
.slim_armor_wizard_3 {
background-image: url(spritesmith2.png);
- background-position: -1638px -182px;
+ background-position: -121px -1547px;
width: 90px;
height: 90px;
}
.slim_armor_wizard_4 {
background-image: url(spritesmith2.png);
- background-position: -1638px -91px;
+ background-position: -1547px -1456px;
width: 90px;
height: 90px;
}
.slim_armor_wizard_5 {
background-image: url(spritesmith2.png);
- background-position: -1638px 0px;
+ background-position: -1547px -1365px;
width: 90px;
height: 90px;
}
.broad_armor_special_birthday {
background-image: url(spritesmith2.png);
- background-position: -1547px -1547px;
+ background-position: -1547px -1274px;
width: 90px;
height: 90px;
}
.broad_armor_special_birthday2015 {
background-image: url(spritesmith2.png);
- background-position: -273px -1638px;
+ background-position: -1547px -1183px;
width: 90px;
height: 90px;
}
+.shop_armor_special_birthday {
+ background-image: url(spritesmith2.png);
+ background-position: -1385px -1679px;
+ width: 40px;
+ height: 40px;
+}
+.shop_armor_special_birthday2015 {
+ background-image: url(spritesmith2.png);
+ background-position: -1426px -1679px;
+ width: 40px;
+ height: 40px;
+}
+.slim_armor_special_birthday {
+ background-image: url(spritesmith2.png);
+ background-position: -1547px -1092px;
+ width: 90px;
+ height: 90px;
+}
+.slim_armor_special_birthday2015 {
+ background-image: url(spritesmith2.png);
+ background-position: -1547px -1001px;
+ width: 90px;
+ height: 90px;
+}
+.broad_armor_special_fallHealer {
+ background-image: url(spritesmith2.png);
+ background-position: -1547px -910px;
+ width: 90px;
+ height: 90px;
+}
+.broad_armor_special_fallMage {
+ background-image: url(spritesmith2.png);
+ background-position: 0px -1547px;
+ width: 120px;
+ height: 90px;
+}
+.broad_armor_special_fallRogue {
+ background-image: url(spritesmith2.png);
+ background-position: -910px -1638px;
+ width: 105px;
+ height: 90px;
+}
diff --git a/common/dist/sprites/spritesmith2.png b/common/dist/sprites/spritesmith2.png
index d35832d036..980f2fea09 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 247cc27acf..d33a44507e 100644
--- a/common/dist/sprites/spritesmith3.css
+++ b/common/dist/sprites/spritesmith3.css
@@ -1,384 +1,342 @@
-.shop_armor_special_birthday {
- background-image: url(spritesmith3.png);
- background-position: -892px -1366px;
- width: 40px;
- height: 40px;
-}
-.shop_armor_special_birthday2015 {
- background-image: url(spritesmith3.png);
- background-position: -1148px -1416px;
- width: 40px;
- height: 40px;
-}
-.slim_armor_special_birthday {
- background-image: url(spritesmith3.png);
- background-position: -819px -870px;
- width: 90px;
- height: 90px;
-}
-.slim_armor_special_birthday2015 {
- background-image: url(spritesmith3.png);
- background-position: -273px -506px;
- width: 90px;
- height: 90px;
-}
-.broad_armor_special_fallHealer {
- background-image: url(spritesmith3.png);
- background-position: -364px -506px;
- width: 90px;
- height: 90px;
-}
-.broad_armor_special_fallMage {
- background-image: url(spritesmith3.png);
- background-position: 0px -961px;
- width: 120px;
- height: 90px;
-}
-.broad_armor_special_fallRogue {
- background-image: url(spritesmith3.png);
- background-position: -121px -961px;
- width: 105px;
- height: 90px;
-}
.broad_armor_special_fallWarrior {
background-image: url(spritesmith3.png);
- background-position: -227px -961px;
+ background-position: -546px 0px;
width: 90px;
height: 90px;
}
.head_special_fallHealer {
background-image: url(spritesmith3.png);
- background-position: -318px -961px;
+ background-position: -455px -870px;
width: 90px;
height: 90px;
}
.head_special_fallMage {
background-image: url(spritesmith3.png);
- background-position: -857px -961px;
+ background-position: -1001px 0px;
width: 120px;
height: 90px;
}
.head_special_fallRogue {
background-image: url(spritesmith3.png);
- background-position: -978px -961px;
+ background-position: 0px -506px;
width: 105px;
height: 90px;
}
.head_special_fallWarrior {
background-image: url(spritesmith3.png);
- background-position: -1122px -182px;
+ background-position: -546px -91px;
width: 90px;
height: 90px;
}
.shield_special_fallHealer {
background-image: url(spritesmith3.png);
- background-position: -1122px -273px;
+ background-position: -91px -961px;
width: 90px;
height: 90px;
}
.shield_special_fallRogue {
background-image: url(spritesmith3.png);
- background-position: -1122px -546px;
+ background-position: -182px -961px;
width: 105px;
height: 90px;
}
.shield_special_fallWarrior {
background-image: url(spritesmith3.png);
- background-position: -1122px -819px;
+ background-position: -288px -961px;
width: 90px;
height: 90px;
}
.shop_armor_special_fallHealer {
background-image: url(spritesmith3.png);
- background-position: -1097px -1366px;
+ background-position: -1124px -1366px;
width: 40px;
height: 40px;
}
.shop_armor_special_fallMage {
background-image: url(spritesmith3.png);
- background-position: -1138px -1366px;
+ background-position: -1165px -1366px;
width: 40px;
height: 40px;
}
.shop_armor_special_fallRogue {
background-image: url(spritesmith3.png);
- background-position: -1261px -1366px;
+ background-position: -1288px -1366px;
width: 40px;
height: 40px;
}
.shop_armor_special_fallWarrior {
background-image: url(spritesmith3.png);
- background-position: -1416px -82px;
+ background-position: -1431px -82px;
width: 40px;
height: 40px;
}
.shop_head_special_fallHealer {
background-image: url(spritesmith3.png);
- background-position: -1416px -123px;
+ background-position: -1431px -123px;
width: 40px;
height: 40px;
}
.shop_head_special_fallMage {
background-image: url(spritesmith3.png);
- background-position: -1457px -656px;
+ background-position: -1431px -328px;
width: 40px;
height: 40px;
}
.shop_head_special_fallRogue {
background-image: url(spritesmith3.png);
- background-position: -1457px -779px;
+ background-position: -1472px -738px;
width: 40px;
height: 40px;
}
.shop_head_special_fallWarrior {
background-image: url(spritesmith3.png);
- background-position: -1457px -820px;
+ background-position: -1472px -779px;
width: 40px;
height: 40px;
}
.shop_shield_special_fallHealer {
background-image: url(spritesmith3.png);
- background-position: -1457px -1107px;
+ background-position: -1472px -984px;
width: 40px;
height: 40px;
}
.shop_shield_special_fallRogue {
background-image: url(spritesmith3.png);
- background-position: -1234px -1183px;
+ background-position: -1228px -1092px;
width: 40px;
height: 40px;
}
.shop_shield_special_fallWarrior {
background-image: url(spritesmith3.png);
- background-position: -1072px -910px;
+ background-position: -1269px -1092px;
width: 40px;
height: 40px;
}
.shop_weapon_special_fallHealer {
background-image: url(spritesmith3.png);
- background-position: -940px -819px;
+ background-position: -1122px -1001px;
width: 40px;
height: 40px;
}
.shop_weapon_special_fallMage {
background-image: url(spritesmith3.png);
- background-position: -890px -728px;
+ background-position: -1042px -910px;
width: 40px;
height: 40px;
}
.shop_weapon_special_fallRogue {
background-image: url(spritesmith3.png);
- background-position: -728px -1366px;
+ background-position: -587px -455px;
width: 40px;
height: 40px;
}
.shop_weapon_special_fallWarrior {
background-image: url(spritesmith3.png);
- background-position: -769px -1366px;
+ background-position: -455px -364px;
width: 40px;
height: 40px;
}
.slim_armor_special_fallHealer {
background-image: url(spritesmith3.png);
- background-position: -1122px -910px;
+ background-position: -379px -961px;
width: 90px;
height: 90px;
}
.slim_armor_special_fallMage {
background-image: url(spritesmith3.png);
- background-position: -224px -1052px;
+ background-position: -918px -961px;
width: 120px;
height: 90px;
}
.slim_armor_special_fallRogue {
background-image: url(spritesmith3.png);
- background-position: -345px -1052px;
+ background-position: -1122px 0px;
width: 105px;
height: 90px;
}
.slim_armor_special_fallWarrior {
background-image: url(spritesmith3.png);
- background-position: -182px -318px;
+ background-position: -1122px -91px;
width: 90px;
height: 90px;
}
.weapon_special_fallHealer {
background-image: url(spritesmith3.png);
- background-position: -273px -318px;
+ background-position: -1122px -182px;
width: 90px;
height: 90px;
}
.weapon_special_fallMage {
background-image: url(spritesmith3.png);
- background-position: -455px 0px;
+ background-position: -448px -1052px;
width: 120px;
height: 90px;
}
.weapon_special_fallRogue {
background-image: url(spritesmith3.png);
- background-position: -455px -91px;
+ background-position: -1122px -273px;
width: 105px;
height: 90px;
}
.weapon_special_fallWarrior {
background-image: url(spritesmith3.png);
- background-position: -455px -182px;
+ background-position: -1122px -364px;
width: 90px;
height: 90px;
}
.broad_armor_special_gaymerx {
background-image: url(spritesmith3.png);
- background-position: -455px -273px;
+ background-position: -1122px -455px;
width: 90px;
height: 90px;
}
.head_special_gaymerx {
background-image: url(spritesmith3.png);
- background-position: -364px -318px;
+ background-position: -1122px -546px;
width: 90px;
height: 90px;
}
.shop_armor_special_gaymerx {
background-image: url(spritesmith3.png);
- background-position: -1457px -1148px;
+ background-position: -1472px -1107px;
width: 40px;
height: 40px;
}
.shop_head_special_gaymerx {
background-image: url(spritesmith3.png);
- background-position: -1457px -1189px;
+ background-position: -1472px -1148px;
width: 40px;
height: 40px;
}
.slim_armor_special_gaymerx {
background-image: url(spritesmith3.png);
- background-position: 0px -415px;
+ background-position: -182px -318px;
width: 90px;
height: 90px;
}
.back_mystery_201402 {
background-image: url(spritesmith3.png);
- background-position: -91px -415px;
+ background-position: -273px -318px;
width: 90px;
height: 90px;
}
.broad_armor_mystery_201402 {
background-image: url(spritesmith3.png);
- background-position: -182px -415px;
+ background-position: -364px -318px;
width: 90px;
height: 90px;
}
.head_mystery_201402 {
background-image: url(spritesmith3.png);
- background-position: -273px -415px;
+ background-position: -455px 0px;
width: 90px;
height: 90px;
}
.shop_armor_mystery_201402 {
background-image: url(spritesmith3.png);
- background-position: -758px -637px;
+ background-position: -728px -637px;
width: 40px;
height: 40px;
}
.shop_back_mystery_201402 {
background-image: url(spritesmith3.png);
- background-position: -799px -637px;
+ background-position: -769px -637px;
width: 40px;
height: 40px;
}
.shop_head_mystery_201402 {
background-image: url(spritesmith3.png);
- background-position: -576px -455px;
+ background-position: -546px -455px;
width: 40px;
height: 40px;
}
.slim_armor_mystery_201402 {
background-image: url(spritesmith3.png);
- background-position: -364px -415px;
+ background-position: -455px -91px;
width: 90px;
height: 90px;
}
.broad_armor_mystery_201403 {
background-image: url(spritesmith3.png);
- background-position: -455px -415px;
+ background-position: -455px -182px;
width: 90px;
height: 90px;
}
.headAccessory_mystery_201403 {
background-image: url(spritesmith3.png);
- background-position: -576px 0px;
+ background-position: -455px -273px;
width: 90px;
height: 90px;
}
.shop_armor_mystery_201403 {
background-image: url(spritesmith3.png);
- background-position: -933px -1366px;
+ background-position: -1370px -1325px;
width: 40px;
height: 40px;
}
.shop_headAccessory_mystery_201403 {
background-image: url(spritesmith3.png);
- background-position: -1056px -1366px;
+ background-position: -1083px -1366px;
width: 40px;
height: 40px;
}
.slim_armor_mystery_201403 {
background-image: url(spritesmith3.png);
- background-position: -576px -91px;
+ background-position: 0px -415px;
width: 90px;
height: 90px;
}
.back_mystery_201404 {
background-image: url(spritesmith3.png);
- background-position: -576px -182px;
+ background-position: -91px -415px;
width: 90px;
height: 90px;
}
.headAccessory_mystery_201404 {
background-image: url(spritesmith3.png);
- background-position: -576px -273px;
+ background-position: -182px -415px;
width: 90px;
height: 90px;
}
.shop_back_mystery_201404 {
background-image: url(spritesmith3.png);
- background-position: -1302px -1366px;
+ background-position: -1329px -1366px;
width: 40px;
height: 40px;
}
.shop_headAccessory_mystery_201404 {
background-image: url(spritesmith3.png);
- background-position: -1343px -1366px;
+ background-position: -1370px -1366px;
width: 40px;
height: 40px;
}
.broad_armor_mystery_201405 {
background-image: url(spritesmith3.png);
- background-position: -576px -364px;
+ background-position: -273px -415px;
width: 90px;
height: 90px;
}
.head_mystery_201405 {
background-image: url(spritesmith3.png);
- background-position: 0px -506px;
+ background-position: -364px -415px;
width: 90px;
height: 90px;
}
.shop_armor_mystery_201405 {
background-image: url(spritesmith3.png);
- background-position: -1457px -574px;
+ background-position: -1431px -246px;
width: 40px;
height: 40px;
}
.shop_head_mystery_201405 {
background-image: url(spritesmith3.png);
- background-position: -1457px -615px;
+ background-position: -1431px -287px;
width: 40px;
height: 40px;
}
.slim_armor_mystery_201405 {
background-image: url(spritesmith3.png);
- background-position: -91px -506px;
+ background-position: -455px -415px;
width: 90px;
height: 90px;
}
@@ -396,13 +354,13 @@
}
.shop_armor_mystery_201406 {
background-image: url(spritesmith3.png);
- background-position: -1457px -861px;
+ background-position: -1472px -820px;
width: 40px;
height: 40px;
}
.shop_head_mystery_201406 {
background-image: url(spritesmith3.png);
- background-position: -1457px -902px;
+ background-position: -1472px -943px;
width: 40px;
height: 40px;
}
@@ -414,257 +372,311 @@
}
.broad_armor_mystery_201407 {
background-image: url(spritesmith3.png);
- background-position: -455px -506px;
+ background-position: -546px -182px;
width: 90px;
height: 90px;
}
.head_mystery_201407 {
background-image: url(spritesmith3.png);
- background-position: -546px -506px;
+ background-position: -546px -273px;
width: 90px;
height: 90px;
}
.shop_armor_mystery_201407 {
background-image: url(spritesmith3.png);
- background-position: -1457px -1230px;
+ background-position: -1472px -1189px;
width: 40px;
height: 40px;
}
.shop_head_mystery_201407 {
background-image: url(spritesmith3.png);
- background-position: -1366px -1274px;
+ background-position: -1472px -1230px;
width: 40px;
height: 40px;
}
.slim_armor_mystery_201407 {
background-image: url(spritesmith3.png);
- background-position: -667px 0px;
+ background-position: -546px -364px;
width: 90px;
height: 90px;
}
.broad_armor_mystery_201408 {
background-image: url(spritesmith3.png);
- background-position: -667px -91px;
+ background-position: -106px -506px;
width: 90px;
height: 90px;
}
.head_mystery_201408 {
background-image: url(spritesmith3.png);
- background-position: -667px -182px;
+ background-position: -197px -506px;
width: 90px;
height: 90px;
}
.shop_armor_mystery_201408 {
background-image: url(spritesmith3.png);
- background-position: -981px -819px;
+ background-position: -1163px -1001px;
width: 40px;
height: 40px;
}
.shop_head_mystery_201408 {
background-image: url(spritesmith3.png);
- background-position: -849px -728px;
+ background-position: -1001px -910px;
width: 40px;
height: 40px;
}
.slim_armor_mystery_201408 {
background-image: url(spritesmith3.png);
- background-position: -667px -273px;
+ background-position: -288px -506px;
width: 90px;
height: 90px;
}
.broad_armor_mystery_201409 {
background-image: url(spritesmith3.png);
- background-position: -667px -364px;
+ background-position: -379px -506px;
width: 90px;
height: 90px;
}
.headAccessory_mystery_201409 {
background-image: url(spritesmith3.png);
- background-position: -667px -455px;
+ background-position: -470px -506px;
width: 90px;
height: 90px;
}
.shop_armor_mystery_201409 {
background-image: url(spritesmith3.png);
- background-position: -667px -546px;
+ background-position: -637px -546px;
width: 40px;
height: 40px;
}
.shop_headAccessory_mystery_201409 {
background-image: url(spritesmith3.png);
- background-position: -708px -546px;
+ background-position: -678px -546px;
width: 40px;
height: 40px;
}
.slim_armor_mystery_201409 {
background-image: url(spritesmith3.png);
- background-position: 0px -597px;
+ background-position: -637px 0px;
width: 90px;
height: 90px;
}
.back_mystery_201410 {
background-image: url(spritesmith3.png);
- background-position: -91px -597px;
+ background-position: 0px -597px;
width: 93px;
height: 90px;
}
.broad_armor_mystery_201410 {
background-image: url(spritesmith3.png);
- background-position: -185px -597px;
+ background-position: -94px -597px;
width: 93px;
height: 90px;
}
.shop_armor_mystery_201410 {
background-image: url(spritesmith3.png);
- background-position: -810px -1366px;
+ background-position: -1247px -1325px;
width: 40px;
height: 40px;
}
.shop_back_mystery_201410 {
background-image: url(spritesmith3.png);
- background-position: -851px -1366px;
+ background-position: -1288px -1325px;
width: 40px;
height: 40px;
}
.slim_armor_mystery_201410 {
background-image: url(spritesmith3.png);
- background-position: -279px -597px;
+ background-position: -188px -597px;
width: 93px;
height: 90px;
}
.head_mystery_201411 {
background-image: url(spritesmith3.png);
- background-position: -373px -597px;
+ background-position: -637px -91px;
width: 90px;
height: 90px;
}
.shop_head_mystery_201411 {
background-image: url(spritesmith3.png);
- background-position: -974px -1366px;
+ background-position: -1001px -1366px;
width: 40px;
height: 40px;
}
.shop_weapon_mystery_201411 {
background-image: url(spritesmith3.png);
- background-position: -1015px -1366px;
+ background-position: -1042px -1366px;
width: 40px;
height: 40px;
}
.weapon_mystery_201411 {
background-image: url(spritesmith3.png);
- background-position: -464px -597px;
+ background-position: -637px -182px;
width: 90px;
height: 90px;
}
.broad_armor_mystery_201412 {
background-image: url(spritesmith3.png);
- background-position: -555px -597px;
+ background-position: -637px -273px;
width: 90px;
height: 90px;
}
.head_mystery_201412 {
background-image: url(spritesmith3.png);
- background-position: -646px -597px;
+ background-position: -637px -364px;
width: 90px;
height: 90px;
}
.shop_armor_mystery_201412 {
background-image: url(spritesmith3.png);
- background-position: -1179px -1366px;
+ background-position: -1206px -1366px;
width: 40px;
height: 40px;
}
.shop_head_mystery_201412 {
background-image: url(spritesmith3.png);
- background-position: -1220px -1366px;
+ background-position: -1247px -1366px;
width: 40px;
height: 40px;
}
.slim_armor_mystery_201412 {
background-image: url(spritesmith3.png);
- background-position: -758px 0px;
+ background-position: -637px -455px;
width: 90px;
height: 90px;
}
.broad_armor_mystery_201501 {
background-image: url(spritesmith3.png);
- background-position: -758px -91px;
+ background-position: -282px -597px;
width: 90px;
height: 90px;
}
.head_mystery_201501 {
background-image: url(spritesmith3.png);
- background-position: -758px -182px;
+ background-position: -373px -597px;
width: 90px;
height: 90px;
}
.shop_armor_mystery_201501 {
background-image: url(spritesmith3.png);
- background-position: -1416px 0px;
+ background-position: -1431px 0px;
width: 40px;
height: 40px;
}
.shop_head_mystery_201501 {
background-image: url(spritesmith3.png);
- background-position: -1416px -41px;
+ background-position: -1431px -41px;
width: 40px;
height: 40px;
}
.slim_armor_mystery_201501 {
background-image: url(spritesmith3.png);
- background-position: -758px -273px;
+ background-position: -464px -597px;
width: 90px;
height: 90px;
}
.headAccessory_mystery_201502 {
background-image: url(spritesmith3.png);
- background-position: -758px -364px;
+ background-position: -555px -597px;
width: 90px;
height: 90px;
}
.shop_headAccessory_mystery_201502 {
background-image: url(spritesmith3.png);
- background-position: -1457px -492px;
+ background-position: -1431px -164px;
width: 40px;
height: 40px;
}
.shop_weapon_mystery_201502 {
background-image: url(spritesmith3.png);
- background-position: -1457px -533px;
+ background-position: -1431px -205px;
width: 40px;
height: 40px;
}
.weapon_mystery_201502 {
background-image: url(spritesmith3.png);
- background-position: -758px -455px;
+ background-position: -728px 0px;
width: 90px;
height: 90px;
}
.broad_armor_mystery_201503 {
background-image: url(spritesmith3.png);
- background-position: -758px -546px;
+ background-position: -728px -91px;
width: 90px;
height: 90px;
}
.eyewear_mystery_201503 {
background-image: url(spritesmith3.png);
- background-position: 0px -688px;
+ background-position: -728px -182px;
width: 90px;
height: 90px;
}
.shop_armor_mystery_201503 {
background-image: url(spritesmith3.png);
- background-position: -1457px -697px;
+ background-position: -1472px -451px;
width: 40px;
height: 40px;
}
.shop_eyewear_mystery_201503 {
background-image: url(spritesmith3.png);
- background-position: -1457px -738px;
+ background-position: -1472px -697px;
width: 40px;
height: 40px;
}
.slim_armor_mystery_201503 {
+ background-image: url(spritesmith3.png);
+ background-position: -728px -273px;
+ width: 90px;
+ height: 90px;
+}
+.back_mystery_201504 {
+ background-image: url(spritesmith3.png);
+ background-position: -728px -364px;
+ width: 90px;
+ height: 90px;
+}
+.broad_armor_mystery_201504 {
+ background-image: url(spritesmith3.png);
+ background-position: -728px -455px;
+ width: 90px;
+ height: 90px;
+}
+.shop_armor_mystery_201504 {
+ background-image: url(spritesmith3.png);
+ background-position: -1472px -861px;
+ width: 40px;
+ height: 40px;
+}
+.shop_back_mystery_201504 {
+ background-image: url(spritesmith3.png);
+ background-position: -1472px -902px;
+ width: 40px;
+ height: 40px;
+}
+.slim_armor_mystery_201504 {
+ background-image: url(spritesmith3.png);
+ background-position: -728px -546px;
+ width: 90px;
+ height: 90px;
+}
+.head_mystery_201505 {
+ background-image: url(spritesmith3.png);
+ background-position: 0px -688px;
+ width: 90px;
+ height: 90px;
+}
+.shop_head_mystery_201505 {
+ background-image: url(spritesmith3.png);
+ background-position: -1472px -1025px;
+ width: 40px;
+ height: 40px;
+}
+.shop_weapon_mystery_201505 {
+ background-image: url(spritesmith3.png);
+ background-position: -1472px -1066px;
+ width: 40px;
+ height: 40px;
+}
+.weapon_mystery_201505 {
background-image: url(spritesmith3.png);
background-position: -91px -688px;
width: 90px;
@@ -690,25 +702,25 @@
}
.shop_armor_mystery_301404 {
background-image: url(spritesmith3.png);
- background-position: -1457px -943px;
+ background-position: -1472px -1271px;
width: 40px;
height: 40px;
}
.shop_eyewear_mystery_301404 {
background-image: url(spritesmith3.png);
- background-position: -1457px -984px;
+ background-position: -1472px -1312px;
width: 40px;
height: 40px;
}
.shop_head_mystery_301404 {
background-image: url(spritesmith3.png);
- background-position: -1457px -1025px;
+ background-position: -1340px -1274px;
width: 40px;
height: 40px;
}
.shop_weapon_mystery_301404 {
background-image: url(spritesmith3.png);
- background-position: -1457px -1066px;
+ background-position: -1381px -1274px;
width: 40px;
height: 40px;
}
@@ -738,73 +750,73 @@
}
.head_mystery_301405 {
background-image: url(spritesmith3.png);
- background-position: -849px 0px;
+ background-position: -819px 0px;
width: 90px;
height: 90px;
}
.shield_mystery_301405 {
background-image: url(spritesmith3.png);
- background-position: -849px -91px;
+ background-position: -819px -91px;
width: 90px;
height: 90px;
}
.shop_eyewear_mystery_301405 {
background-image: url(spritesmith3.png);
- background-position: -1275px -1183px;
+ background-position: -910px -819px;
width: 40px;
height: 40px;
}
.shop_headAccessory_mystery_301405 {
background-image: url(spritesmith3.png);
- background-position: -1122px -1001px;
+ background-position: -951px -819px;
width: 40px;
height: 40px;
}
.shop_head_mystery_301405 {
background-image: url(spritesmith3.png);
- background-position: -1163px -1001px;
+ background-position: -819px -728px;
width: 40px;
height: 40px;
}
.shop_shield_mystery_301405 {
background-image: url(spritesmith3.png);
- background-position: -1031px -910px;
+ background-position: -860px -728px;
width: 40px;
height: 40px;
}
.broad_armor_special_spring2015Healer {
background-image: url(spritesmith3.png);
- background-position: -849px -182px;
+ background-position: -819px -182px;
width: 90px;
height: 90px;
}
.broad_armor_special_spring2015Mage {
background-image: url(spritesmith3.png);
- background-position: -849px -273px;
+ background-position: -819px -273px;
width: 90px;
height: 90px;
}
.broad_armor_special_spring2015Rogue {
background-image: url(spritesmith3.png);
- background-position: -849px -364px;
+ background-position: -819px -364px;
width: 90px;
height: 90px;
}
.broad_armor_special_spring2015Warrior {
background-image: url(spritesmith3.png);
- background-position: -849px -455px;
+ background-position: -819px -455px;
width: 90px;
height: 90px;
}
.broad_armor_special_springHealer {
background-image: url(spritesmith3.png);
- background-position: -849px -546px;
+ background-position: -819px -546px;
width: 90px;
height: 90px;
}
.broad_armor_special_springMage {
background-image: url(spritesmith3.png);
- background-position: -849px -637px;
+ background-position: -819px -637px;
width: 90px;
height: 90px;
}
@@ -870,55 +882,55 @@
}
.head_special_spring2015Healer {
background-image: url(spritesmith3.png);
- background-position: -940px 0px;
+ background-position: -910px 0px;
width: 90px;
height: 90px;
}
.head_special_spring2015Mage {
background-image: url(spritesmith3.png);
- background-position: -940px -91px;
+ background-position: -910px -91px;
width: 90px;
height: 90px;
}
.head_special_spring2015Rogue {
background-image: url(spritesmith3.png);
- background-position: -940px -182px;
+ background-position: -910px -182px;
width: 90px;
height: 90px;
}
.head_special_spring2015Warrior {
background-image: url(spritesmith3.png);
- background-position: -940px -273px;
+ background-position: -910px -273px;
width: 90px;
height: 90px;
}
.head_special_springHealer {
background-image: url(spritesmith3.png);
- background-position: -940px -364px;
+ background-position: -910px -364px;
width: 90px;
height: 90px;
}
.head_special_springMage {
background-image: url(spritesmith3.png);
- background-position: -940px -455px;
+ background-position: -910px -455px;
width: 90px;
height: 90px;
}
.head_special_springRogue {
background-image: url(spritesmith3.png);
- background-position: -940px -546px;
+ background-position: -910px -546px;
width: 90px;
height: 90px;
}
.head_special_springWarrior {
background-image: url(spritesmith3.png);
- background-position: -940px -637px;
+ background-position: -910px -637px;
width: 90px;
height: 90px;
}
.shield_special_spring2015Healer {
background-image: url(spritesmith3.png);
- background-position: -940px -728px;
+ background-position: -910px -728px;
width: 90px;
height: 90px;
}
@@ -954,253 +966,253 @@
}
.shop_armor_special_spring2015Healer {
background-image: url(spritesmith3.png);
- background-position: -1416px -164px;
+ background-position: -1431px -369px;
width: 40px;
height: 40px;
}
.shop_armor_special_spring2015Mage {
background-image: url(spritesmith3.png);
- background-position: -1416px -205px;
+ background-position: -1431px -410px;
width: 40px;
height: 40px;
}
.shop_armor_special_spring2015Rogue {
background-image: url(spritesmith3.png);
- background-position: -1416px -246px;
+ background-position: -1431px -451px;
width: 40px;
height: 40px;
}
.shop_armor_special_spring2015Warrior {
background-image: url(spritesmith3.png);
- background-position: -1416px -287px;
+ background-position: -1431px -492px;
width: 40px;
height: 40px;
}
.shop_armor_special_springHealer {
background-image: url(spritesmith3.png);
- background-position: -1416px -328px;
+ background-position: -1431px -533px;
width: 40px;
height: 40px;
}
.shop_armor_special_springMage {
background-image: url(spritesmith3.png);
- background-position: -1416px -369px;
+ background-position: -1431px -574px;
width: 40px;
height: 40px;
}
.shop_armor_special_springRogue {
background-image: url(spritesmith3.png);
- background-position: -1416px -410px;
+ background-position: -1431px -615px;
width: 40px;
height: 40px;
}
.shop_armor_special_springWarrior {
background-image: url(spritesmith3.png);
- background-position: -1416px -451px;
+ background-position: -1431px -656px;
width: 40px;
height: 40px;
}
.shop_headAccessory_special_spring2015Healer {
background-image: url(spritesmith3.png);
- background-position: -1416px -492px;
+ background-position: -1431px -697px;
width: 40px;
height: 40px;
}
.shop_headAccessory_special_spring2015Mage {
background-image: url(spritesmith3.png);
- background-position: -1416px -533px;
+ background-position: -656px -1416px;
width: 40px;
height: 40px;
}
.shop_headAccessory_special_spring2015Rogue {
background-image: url(spritesmith3.png);
- background-position: -1416px -574px;
+ background-position: -697px -1416px;
width: 40px;
height: 40px;
}
.shop_headAccessory_special_spring2015Warrior {
background-image: url(spritesmith3.png);
- background-position: -1416px -615px;
+ background-position: -738px -1416px;
width: 40px;
height: 40px;
}
.shop_headAccessory_special_springHealer {
background-image: url(spritesmith3.png);
- background-position: -574px -1416px;
+ background-position: -779px -1416px;
width: 40px;
height: 40px;
}
.shop_headAccessory_special_springMage {
background-image: url(spritesmith3.png);
- background-position: -615px -1416px;
+ background-position: -820px -1416px;
width: 40px;
height: 40px;
}
.shop_headAccessory_special_springRogue {
background-image: url(spritesmith3.png);
- background-position: -656px -1416px;
+ background-position: -861px -1416px;
width: 40px;
height: 40px;
}
.shop_headAccessory_special_springWarrior {
background-image: url(spritesmith3.png);
- background-position: -697px -1416px;
+ background-position: -902px -1416px;
width: 40px;
height: 40px;
}
.shop_head_special_spring2015Healer {
background-image: url(spritesmith3.png);
- background-position: -738px -1416px;
+ background-position: -943px -1416px;
width: 40px;
height: 40px;
}
.shop_head_special_spring2015Mage {
background-image: url(spritesmith3.png);
- background-position: -779px -1416px;
+ background-position: -984px -1416px;
width: 40px;
height: 40px;
}
.shop_head_special_spring2015Rogue {
background-image: url(spritesmith3.png);
- background-position: -820px -1416px;
+ background-position: -1025px -1416px;
width: 40px;
height: 40px;
}
.shop_head_special_spring2015Warrior {
background-image: url(spritesmith3.png);
- background-position: -861px -1416px;
+ background-position: -1066px -1416px;
width: 40px;
height: 40px;
}
.shop_head_special_springHealer {
background-image: url(spritesmith3.png);
- background-position: -902px -1416px;
+ background-position: -1107px -1416px;
width: 40px;
height: 40px;
}
.shop_head_special_springMage {
background-image: url(spritesmith3.png);
- background-position: -943px -1416px;
+ background-position: -1148px -1416px;
width: 40px;
height: 40px;
}
.shop_head_special_springRogue {
background-image: url(spritesmith3.png);
- background-position: -984px -1416px;
+ background-position: -1189px -1416px;
width: 40px;
height: 40px;
}
.shop_head_special_springWarrior {
background-image: url(spritesmith3.png);
- background-position: -1025px -1416px;
+ background-position: -1230px -1416px;
width: 40px;
height: 40px;
}
.shop_shield_special_spring2015Healer {
background-image: url(spritesmith3.png);
- background-position: -1066px -1416px;
+ background-position: -1271px -1416px;
width: 40px;
height: 40px;
}
.shop_shield_special_spring2015Rogue {
background-image: url(spritesmith3.png);
- background-position: -1107px -1416px;
+ background-position: -1312px -1416px;
width: 40px;
height: 40px;
}
.shop_shield_special_spring2015Warrior {
background-image: url(spritesmith3.png);
- background-position: -1325px -1274px;
+ background-position: -1353px -1416px;
width: 40px;
height: 40px;
}
.shop_shield_special_springHealer {
background-image: url(spritesmith3.png);
- background-position: -1189px -1416px;
+ background-position: -1394px -1416px;
width: 40px;
height: 40px;
}
.shop_shield_special_springRogue {
background-image: url(spritesmith3.png);
- background-position: -1230px -1416px;
+ background-position: -1472px 0px;
width: 40px;
height: 40px;
}
.shop_shield_special_springWarrior {
background-image: url(spritesmith3.png);
- background-position: -1271px -1416px;
+ background-position: -1472px -41px;
width: 40px;
height: 40px;
}
.shop_weapon_special_spring2015Healer {
background-image: url(spritesmith3.png);
- background-position: -1312px -1416px;
+ background-position: -1472px -82px;
width: 40px;
height: 40px;
}
.shop_weapon_special_spring2015Mage {
background-image: url(spritesmith3.png);
- background-position: -1353px -1416px;
+ background-position: -1472px -123px;
width: 40px;
height: 40px;
}
.shop_weapon_special_spring2015Rogue {
background-image: url(spritesmith3.png);
- background-position: -1394px -1416px;
+ background-position: -615px -1457px;
width: 40px;
height: 40px;
}
.shop_weapon_special_spring2015Warrior {
background-image: url(spritesmith3.png);
- background-position: -1457px 0px;
+ background-position: -1472px -492px;
width: 40px;
height: 40px;
}
.shop_weapon_special_springHealer {
background-image: url(spritesmith3.png);
- background-position: -1457px -41px;
+ background-position: -1472px -533px;
width: 40px;
height: 40px;
}
.shop_weapon_special_springMage {
background-image: url(spritesmith3.png);
- background-position: -1457px -369px;
+ background-position: -1472px -574px;
width: 40px;
height: 40px;
}
.shop_weapon_special_springRogue {
background-image: url(spritesmith3.png);
- background-position: -1457px -410px;
+ background-position: -1472px -615px;
width: 40px;
height: 40px;
}
.shop_weapon_special_springWarrior {
background-image: url(spritesmith3.png);
- background-position: -1457px -451px;
+ background-position: -1472px -656px;
width: 40px;
height: 40px;
}
.slim_armor_special_spring2015Healer {
background-image: url(spritesmith3.png);
- background-position: -455px -870px;
+ background-position: -546px -870px;
width: 90px;
height: 90px;
}
.slim_armor_special_spring2015Mage {
background-image: url(spritesmith3.png);
- background-position: -546px -870px;
+ background-position: -637px -870px;
width: 90px;
height: 90px;
}
.slim_armor_special_spring2015Rogue {
background-image: url(spritesmith3.png);
- background-position: -637px -870px;
+ background-position: -728px -870px;
width: 90px;
height: 90px;
}
.slim_armor_special_spring2015Warrior {
background-image: url(spritesmith3.png);
- background-position: -728px -870px;
+ background-position: -819px -870px;
width: 90px;
height: 90px;
}
@@ -1212,67 +1224,67 @@
}
.slim_armor_special_springMage {
background-image: url(spritesmith3.png);
- background-position: -910px -870px;
+ background-position: -1001px -91px;
width: 90px;
height: 90px;
}
.slim_armor_special_springRogue {
background-image: url(spritesmith3.png);
- background-position: -1031px 0px;
+ background-position: -1001px -182px;
width: 90px;
height: 90px;
}
.slim_armor_special_springWarrior {
background-image: url(spritesmith3.png);
- background-position: -1031px -91px;
+ background-position: -1001px -273px;
width: 90px;
height: 90px;
}
.weapon_special_spring2015Healer {
background-image: url(spritesmith3.png);
- background-position: -1031px -182px;
+ background-position: -1001px -364px;
width: 90px;
height: 90px;
}
.weapon_special_spring2015Mage {
background-image: url(spritesmith3.png);
- background-position: -1031px -273px;
+ background-position: -1001px -455px;
width: 90px;
height: 90px;
}
.weapon_special_spring2015Rogue {
background-image: url(spritesmith3.png);
- background-position: -1031px -364px;
+ background-position: -1001px -546px;
width: 90px;
height: 90px;
}
.weapon_special_spring2015Warrior {
background-image: url(spritesmith3.png);
- background-position: -1031px -455px;
+ background-position: -1001px -637px;
width: 90px;
height: 90px;
}
.weapon_special_springHealer {
background-image: url(spritesmith3.png);
- background-position: -1031px -546px;
+ background-position: -1001px -728px;
width: 90px;
height: 90px;
}
.weapon_special_springMage {
background-image: url(spritesmith3.png);
- background-position: -1031px -637px;
+ background-position: -1001px -819px;
width: 90px;
height: 90px;
}
.weapon_special_springRogue {
background-image: url(spritesmith3.png);
- background-position: -1031px -728px;
+ background-position: -910px -870px;
width: 90px;
height: 90px;
}
.weapon_special_springWarrior {
background-image: url(spritesmith3.png);
- background-position: -1031px -819px;
+ background-position: 0px -961px;
width: 90px;
height: 90px;
}
@@ -1302,25 +1314,25 @@
}
.broad_armor_special_summerRogue {
background-image: url(spritesmith3.png);
- background-position: -409px -961px;
+ background-position: -470px -961px;
width: 111px;
height: 90px;
}
.broad_armor_special_summerWarrior {
background-image: url(spritesmith3.png);
- background-position: -521px -961px;
+ background-position: -582px -961px;
width: 111px;
height: 90px;
}
.eyewear_special_summerRogue {
background-image: url(spritesmith3.png);
- background-position: -633px -961px;
+ background-position: -694px -961px;
width: 111px;
height: 90px;
}
.eyewear_special_summerWarrior {
background-image: url(spritesmith3.png);
- background-position: -745px -961px;
+ background-position: -806px -961px;
width: 111px;
height: 90px;
}
@@ -1338,13 +1350,13 @@
}
.head_special_summerRogue {
background-image: url(spritesmith3.png);
- background-position: -1122px 0px;
+ background-position: 0px -1052px;
width: 111px;
height: 90px;
}
.head_special_summerWarrior {
background-image: url(spritesmith3.png);
- background-position: -1122px -91px;
+ background-position: -112px -1052px;
width: 111px;
height: 90px;
}
@@ -1362,13 +1374,13 @@
}
.SummerRogue14 {
background-image: url(spritesmith3.png);
- background-position: -1122px -364px;
+ background-position: -224px -1052px;
width: 111px;
height: 90px;
}
.SummerWarrior14 {
background-image: url(spritesmith3.png);
- background-position: -1122px -455px;
+ background-position: -336px -1052px;
width: 111px;
height: 90px;
}
@@ -1380,127 +1392,127 @@
}
.shield_special_summerRogue {
background-image: url(spritesmith3.png);
- background-position: -1122px -637px;
+ background-position: -569px -1052px;
width: 111px;
height: 90px;
}
.shield_special_summerWarrior {
background-image: url(spritesmith3.png);
- background-position: -1122px -728px;
+ background-position: -681px -1052px;
width: 111px;
height: 90px;
}
.shop_armor_special_summerHealer {
background-image: url(spritesmith3.png);
- background-position: -617px -455px;
+ background-position: -496px -364px;
width: 40px;
height: 40px;
}
.shop_armor_special_summerMage {
background-image: url(spritesmith3.png);
- background-position: -455px -364px;
+ background-position: -561px -506px;
width: 40px;
height: 40px;
}
.shop_armor_special_summerRogue {
background-image: url(spritesmith3.png);
- background-position: -496px -364px;
+ background-position: -561px -547px;
width: 40px;
height: 40px;
}
.shop_armor_special_summerWarrior {
background-image: url(spritesmith3.png);
- background-position: -728px -1325px;
+ background-position: -646px -597px;
width: 40px;
height: 40px;
}
.shop_body_special_summerHealer {
background-image: url(spritesmith3.png);
- background-position: -769px -1325px;
+ background-position: -687px -597px;
width: 40px;
height: 40px;
}
.shop_body_special_summerMage {
background-image: url(spritesmith3.png);
- background-position: -810px -1325px;
+ background-position: -646px -638px;
width: 40px;
height: 40px;
}
.shop_eyewear_special_summerRogue {
background-image: url(spritesmith3.png);
- background-position: -851px -1325px;
+ background-position: -687px -638px;
width: 40px;
height: 40px;
}
.shop_eyewear_special_summerWarrior {
background-image: url(spritesmith3.png);
- background-position: -892px -1325px;
+ background-position: -1039px -961px;
width: 40px;
height: 40px;
}
.shop_head_special_summerHealer {
background-image: url(spritesmith3.png);
- background-position: -933px -1325px;
+ background-position: -1080px -961px;
width: 40px;
height: 40px;
}
.shop_head_special_summerMage {
background-image: url(spritesmith3.png);
- background-position: -974px -1325px;
+ background-position: -1039px -1002px;
width: 40px;
height: 40px;
}
.shop_head_special_summerRogue {
background-image: url(spritesmith3.png);
- background-position: -1015px -1325px;
+ background-position: -1080px -1002px;
width: 40px;
height: 40px;
}
.shop_head_special_summerWarrior {
background-image: url(spritesmith3.png);
- background-position: -1056px -1325px;
+ background-position: -1280px -1234px;
width: 40px;
height: 40px;
}
.shop_shield_special_summerHealer {
background-image: url(spritesmith3.png);
- background-position: -1097px -1325px;
+ background-position: -1280px -1275px;
width: 40px;
height: 40px;
}
.shop_shield_special_summerRogue {
background-image: url(spritesmith3.png);
- background-position: -1138px -1325px;
+ background-position: -1001px -1325px;
width: 40px;
height: 40px;
}
.shop_shield_special_summerWarrior {
background-image: url(spritesmith3.png);
- background-position: -1179px -1325px;
+ background-position: -1042px -1325px;
width: 40px;
height: 40px;
}
.shop_weapon_special_summerHealer {
background-image: url(spritesmith3.png);
- background-position: -1220px -1325px;
+ background-position: -1083px -1325px;
width: 40px;
height: 40px;
}
.shop_weapon_special_summerMage {
background-image: url(spritesmith3.png);
- background-position: -1261px -1325px;
+ background-position: -1124px -1325px;
width: 40px;
height: 40px;
}
.shop_weapon_special_summerRogue {
background-image: url(spritesmith3.png);
- background-position: -1302px -1325px;
+ background-position: -1165px -1325px;
width: 40px;
height: 40px;
}
.shop_weapon_special_summerWarrior {
background-image: url(spritesmith3.png);
- background-position: -1343px -1325px;
+ background-position: -1206px -1325px;
width: 40px;
height: 40px;
}
@@ -1518,13 +1530,13 @@
}
.slim_armor_special_summerRogue {
background-image: url(spritesmith3.png);
- background-position: 0px -1052px;
+ background-position: -793px -1052px;
width: 111px;
height: 90px;
}
.slim_armor_special_summerWarrior {
background-image: url(spritesmith3.png);
- background-position: -112px -1052px;
+ background-position: -905px -1052px;
width: 111px;
height: 90px;
}
@@ -1542,685 +1554,775 @@
}
.weapon_special_summerRogue {
background-image: url(spritesmith3.png);
- background-position: -451px -1052px;
+ background-position: -1017px -1052px;
width: 111px;
height: 90px;
}
.weapon_special_summerWarrior {
background-image: url(spritesmith3.png);
- background-position: -563px -1052px;
+ background-position: -1228px 0px;
width: 111px;
height: 90px;
}
.broad_armor_special_candycane {
background-image: url(spritesmith3.png);
- background-position: -675px -1052px;
+ background-position: -1228px -91px;
width: 90px;
height: 90px;
}
.broad_armor_special_ski {
background-image: url(spritesmith3.png);
- background-position: -766px -1052px;
+ background-position: -1228px -182px;
width: 90px;
height: 90px;
}
.broad_armor_special_snowflake {
background-image: url(spritesmith3.png);
- background-position: -857px -1052px;
+ background-position: -1228px -273px;
width: 90px;
height: 90px;
}
.broad_armor_special_winter2015Healer {
background-image: url(spritesmith3.png);
- background-position: -948px -1052px;
+ background-position: -1228px -364px;
width: 90px;
height: 90px;
}
.broad_armor_special_winter2015Mage {
background-image: url(spritesmith3.png);
- background-position: -1039px -1052px;
+ background-position: -1228px -455px;
width: 90px;
height: 90px;
}
.broad_armor_special_winter2015Rogue {
background-image: url(spritesmith3.png);
- background-position: -1130px -1052px;
+ background-position: -1228px -546px;
width: 96px;
height: 90px;
}
.broad_armor_special_winter2015Warrior {
background-image: url(spritesmith3.png);
- background-position: 0px -1143px;
+ background-position: -1228px -637px;
width: 90px;
height: 90px;
}
.broad_armor_special_yeti {
background-image: url(spritesmith3.png);
- background-position: -91px -1143px;
+ background-position: -1228px -728px;
width: 90px;
height: 90px;
}
.head_special_candycane {
background-image: url(spritesmith3.png);
- background-position: -182px -1143px;
+ background-position: -1228px -819px;
width: 90px;
height: 90px;
}
.head_special_nye {
background-image: url(spritesmith3.png);
- background-position: -273px -1143px;
+ background-position: -1228px -910px;
width: 90px;
height: 90px;
}
.head_special_nye2014 {
background-image: url(spritesmith3.png);
- background-position: -364px -1143px;
+ background-position: -1228px -1001px;
width: 90px;
height: 90px;
}
.head_special_ski {
background-image: url(spritesmith3.png);
- background-position: -455px -1143px;
+ background-position: -1122px -637px;
width: 90px;
height: 90px;
}
.head_special_snowflake {
background-image: url(spritesmith3.png);
- background-position: -546px -1143px;
+ background-position: -1122px -728px;
width: 90px;
height: 90px;
}
.head_special_winter2015Healer {
background-image: url(spritesmith3.png);
- background-position: -637px -1143px;
+ background-position: -1122px -819px;
width: 90px;
height: 90px;
}
.head_special_winter2015Mage {
background-image: url(spritesmith3.png);
- background-position: -728px -1143px;
+ background-position: -1122px -910px;
width: 90px;
height: 90px;
}
.head_special_winter2015Rogue {
background-image: url(spritesmith3.png);
- background-position: -819px -1143px;
+ background-position: -1129px -1052px;
width: 96px;
height: 90px;
}
.head_special_winter2015Warrior {
background-image: url(spritesmith3.png);
- background-position: -916px -1143px;
+ background-position: 0px -1143px;
width: 90px;
height: 90px;
}
.head_special_yeti {
background-image: url(spritesmith3.png);
- background-position: -1007px -1143px;
+ background-position: -91px -1143px;
width: 90px;
height: 90px;
}
.shield_special_ski {
background-image: url(spritesmith3.png);
- background-position: -1098px -1143px;
+ background-position: -182px -1143px;
width: 104px;
height: 90px;
}
.shield_special_snowflake {
background-image: url(spritesmith3.png);
- background-position: -1234px 0px;
+ background-position: -287px -1143px;
width: 90px;
height: 90px;
}
.shield_special_winter2015Healer {
background-image: url(spritesmith3.png);
- background-position: -1234px -91px;
+ background-position: -378px -1143px;
width: 90px;
height: 90px;
}
.shield_special_winter2015Rogue {
background-image: url(spritesmith3.png);
- background-position: 0px -1234px;
+ background-position: -469px -1143px;
width: 96px;
height: 90px;
}
.shield_special_winter2015Warrior {
background-image: url(spritesmith3.png);
- background-position: -1234px -182px;
+ background-position: -566px -1143px;
width: 90px;
height: 90px;
}
.shield_special_yeti {
background-image: url(spritesmith3.png);
- background-position: -1234px -273px;
+ background-position: -657px -1143px;
width: 90px;
height: 90px;
}
.shop_armor_special_candycane {
background-image: url(spritesmith3.png);
- background-position: -1416px -656px;
+ background-position: -1431px -738px;
width: 40px;
height: 40px;
}
.shop_armor_special_ski {
background-image: url(spritesmith3.png);
- background-position: -1416px -697px;
+ background-position: -1431px -779px;
width: 40px;
height: 40px;
}
.shop_armor_special_snowflake {
background-image: url(spritesmith3.png);
- background-position: -1416px -738px;
+ background-position: -1431px -820px;
width: 40px;
height: 40px;
}
.shop_armor_special_winter2015Healer {
background-image: url(spritesmith3.png);
- background-position: -1416px -779px;
+ background-position: -1431px -861px;
width: 40px;
height: 40px;
}
.shop_armor_special_winter2015Mage {
background-image: url(spritesmith3.png);
- background-position: -1416px -820px;
+ background-position: -1431px -902px;
width: 40px;
height: 40px;
}
.shop_armor_special_winter2015Rogue {
background-image: url(spritesmith3.png);
- background-position: -1416px -861px;
+ background-position: -1431px -943px;
width: 40px;
height: 40px;
}
.shop_armor_special_winter2015Warrior {
background-image: url(spritesmith3.png);
- background-position: -1416px -902px;
+ background-position: -1431px -984px;
width: 40px;
height: 40px;
}
.shop_armor_special_yeti {
background-image: url(spritesmith3.png);
- background-position: -1416px -943px;
+ background-position: -1431px -1025px;
width: 40px;
height: 40px;
}
.shop_head_special_candycane {
background-image: url(spritesmith3.png);
- background-position: -1416px -984px;
+ background-position: -1431px -1066px;
width: 40px;
height: 40px;
}
.shop_head_special_nye {
background-image: url(spritesmith3.png);
- background-position: -1416px -1025px;
+ background-position: -1431px -1107px;
width: 40px;
height: 40px;
}
.shop_head_special_nye2014 {
background-image: url(spritesmith3.png);
- background-position: -1416px -1066px;
+ background-position: -1431px -1148px;
width: 40px;
height: 40px;
}
.shop_head_special_ski {
background-image: url(spritesmith3.png);
- background-position: -1416px -1107px;
+ background-position: -1431px -1189px;
width: 40px;
height: 40px;
}
.shop_head_special_snowflake {
background-image: url(spritesmith3.png);
- background-position: -1416px -1148px;
+ background-position: -1431px -1230px;
width: 40px;
height: 40px;
}
.shop_head_special_winter2015Healer {
background-image: url(spritesmith3.png);
- background-position: -1416px -1189px;
+ background-position: -1431px -1271px;
width: 40px;
height: 40px;
}
.shop_head_special_winter2015Mage {
background-image: url(spritesmith3.png);
- background-position: -1416px -1230px;
+ background-position: -1431px -1312px;
width: 40px;
height: 40px;
}
.shop_head_special_winter2015Rogue {
background-image: url(spritesmith3.png);
- background-position: -1416px -1271px;
+ background-position: -1431px -1353px;
width: 40px;
height: 40px;
}
.shop_head_special_winter2015Warrior {
background-image: url(spritesmith3.png);
- background-position: -1416px -1312px;
+ background-position: 0px -1416px;
width: 40px;
height: 40px;
}
.shop_head_special_yeti {
background-image: url(spritesmith3.png);
- background-position: -1416px -1353px;
+ background-position: -41px -1416px;
width: 40px;
height: 40px;
}
.shop_shield_special_ski {
background-image: url(spritesmith3.png);
- background-position: 0px -1416px;
+ background-position: -82px -1416px;
width: 40px;
height: 40px;
}
.shop_shield_special_snowflake {
background-image: url(spritesmith3.png);
- background-position: -41px -1416px;
+ background-position: -123px -1416px;
width: 40px;
height: 40px;
}
.shop_shield_special_winter2015Healer {
background-image: url(spritesmith3.png);
- background-position: -82px -1416px;
+ background-position: -164px -1416px;
width: 40px;
height: 40px;
}
.shop_shield_special_winter2015Rogue {
background-image: url(spritesmith3.png);
- background-position: -123px -1416px;
+ background-position: -205px -1416px;
width: 40px;
height: 40px;
}
.shop_shield_special_winter2015Warrior {
background-image: url(spritesmith3.png);
- background-position: -164px -1416px;
+ background-position: -246px -1416px;
width: 40px;
height: 40px;
}
.shop_shield_special_yeti {
background-image: url(spritesmith3.png);
- background-position: -205px -1416px;
+ background-position: -287px -1416px;
width: 40px;
height: 40px;
}
.shop_weapon_special_candycane {
background-image: url(spritesmith3.png);
- background-position: -246px -1416px;
+ background-position: -328px -1416px;
width: 40px;
height: 40px;
}
.shop_weapon_special_ski {
background-image: url(spritesmith3.png);
- background-position: -287px -1416px;
+ background-position: -369px -1416px;
width: 40px;
height: 40px;
}
.shop_weapon_special_snowflake {
background-image: url(spritesmith3.png);
- background-position: -328px -1416px;
+ background-position: -410px -1416px;
width: 40px;
height: 40px;
}
.shop_weapon_special_winter2015Healer {
background-image: url(spritesmith3.png);
- background-position: -369px -1416px;
+ background-position: -451px -1416px;
width: 40px;
height: 40px;
}
.shop_weapon_special_winter2015Mage {
background-image: url(spritesmith3.png);
- background-position: -410px -1416px;
+ background-position: -492px -1416px;
width: 40px;
height: 40px;
}
.shop_weapon_special_winter2015Rogue {
background-image: url(spritesmith3.png);
- background-position: -451px -1416px;
+ background-position: -533px -1416px;
width: 40px;
height: 40px;
}
.shop_weapon_special_winter2015Warrior {
background-image: url(spritesmith3.png);
- background-position: -492px -1416px;
+ background-position: -574px -1416px;
width: 40px;
height: 40px;
}
.shop_weapon_special_yeti {
background-image: url(spritesmith3.png);
- background-position: -533px -1416px;
+ background-position: -615px -1416px;
width: 40px;
height: 40px;
}
.slim_armor_special_candycane {
background-image: url(spritesmith3.png);
- background-position: -1234px -364px;
+ background-position: -748px -1143px;
width: 90px;
height: 90px;
}
.slim_armor_special_ski {
background-image: url(spritesmith3.png);
- background-position: -1234px -455px;
+ background-position: -839px -1143px;
width: 90px;
height: 90px;
}
.slim_armor_special_snowflake {
background-image: url(spritesmith3.png);
- background-position: -1234px -546px;
+ background-position: -930px -1143px;
width: 90px;
height: 90px;
}
.slim_armor_special_winter2015Healer {
background-image: url(spritesmith3.png);
- background-position: -1234px -637px;
+ background-position: -1021px -1143px;
width: 90px;
height: 90px;
}
.slim_armor_special_winter2015Mage {
background-image: url(spritesmith3.png);
- background-position: -1234px -728px;
+ background-position: -1112px -1143px;
width: 90px;
height: 90px;
}
.slim_armor_special_winter2015Rogue {
background-image: url(spritesmith3.png);
- background-position: -97px -1234px;
+ background-position: -1203px -1143px;
width: 96px;
height: 90px;
}
.slim_armor_special_winter2015Warrior {
background-image: url(spritesmith3.png);
- background-position: -1234px -819px;
+ background-position: 0px -1234px;
width: 90px;
height: 90px;
}
.slim_armor_special_yeti {
background-image: url(spritesmith3.png);
- background-position: -1234px -910px;
+ background-position: -91px -1234px;
width: 90px;
height: 90px;
}
.weapon_special_candycane {
background-image: url(spritesmith3.png);
- background-position: -1234px -1001px;
+ background-position: -182px -1234px;
width: 90px;
height: 90px;
}
.weapon_special_ski {
background-image: url(spritesmith3.png);
- background-position: -1234px -1092px;
+ background-position: -273px -1234px;
width: 90px;
height: 90px;
}
.weapon_special_snowflake {
background-image: url(spritesmith3.png);
- background-position: -194px -1234px;
+ background-position: -364px -1234px;
width: 90px;
height: 90px;
}
.weapon_special_winter2015Healer {
background-image: url(spritesmith3.png);
- background-position: -285px -1234px;
+ background-position: -455px -1234px;
width: 90px;
height: 90px;
}
.weapon_special_winter2015Mage {
background-image: url(spritesmith3.png);
- background-position: -376px -1234px;
+ background-position: -546px -1234px;
width: 90px;
height: 90px;
}
.weapon_special_winter2015Rogue {
background-image: url(spritesmith3.png);
- background-position: -467px -1234px;
+ background-position: -637px -1234px;
width: 96px;
height: 90px;
}
.weapon_special_winter2015Warrior {
background-image: url(spritesmith3.png);
- background-position: -564px -1234px;
+ background-position: -734px -1234px;
width: 90px;
height: 90px;
}
.weapon_special_yeti {
background-image: url(spritesmith3.png);
- background-position: -655px -1234px;
+ background-position: -825px -1234px;
width: 90px;
height: 90px;
}
.back_special_wondercon_black {
background-image: url(spritesmith3.png);
- background-position: -746px -1234px;
+ background-position: -916px -1234px;
width: 90px;
height: 90px;
}
.back_special_wondercon_red {
background-image: url(spritesmith3.png);
- background-position: -837px -1234px;
+ background-position: -1007px -1234px;
width: 90px;
height: 90px;
}
.body_special_wondercon_black {
background-image: url(spritesmith3.png);
- background-position: -928px -1234px;
+ background-position: -1098px -1234px;
width: 90px;
height: 90px;
}
.body_special_wondercon_gold {
background-image: url(spritesmith3.png);
- background-position: -1019px -1234px;
+ background-position: -1189px -1234px;
width: 90px;
height: 90px;
}
.body_special_wondercon_red {
background-image: url(spritesmith3.png);
- background-position: -1110px -1234px;
+ background-position: -1340px 0px;
width: 90px;
height: 90px;
}
.eyewear_special_wondercon_black {
background-image: url(spritesmith3.png);
- background-position: -1201px -1234px;
+ background-position: -1340px -91px;
width: 90px;
height: 90px;
}
.eyewear_special_wondercon_red {
background-image: url(spritesmith3.png);
- background-position: -1325px 0px;
+ background-position: -1340px -182px;
width: 90px;
height: 90px;
}
.shop_back_special_wondercon_black {
background-image: url(spritesmith3.png);
- background-position: -1457px -82px;
+ background-position: -1472px -164px;
width: 40px;
height: 40px;
}
.shop_back_special_wondercon_red {
background-image: url(spritesmith3.png);
- background-position: -1457px -123px;
+ background-position: -1472px -205px;
width: 40px;
height: 40px;
}
.shop_body_special_wondercon_black {
background-image: url(spritesmith3.png);
- background-position: -1457px -164px;
+ background-position: -1472px -246px;
width: 40px;
height: 40px;
}
.shop_body_special_wondercon_gold {
background-image: url(spritesmith3.png);
- background-position: -1457px -205px;
+ background-position: -1472px -287px;
width: 40px;
height: 40px;
}
.shop_body_special_wondercon_red {
background-image: url(spritesmith3.png);
- background-position: -1457px -246px;
+ background-position: -1472px -328px;
width: 40px;
height: 40px;
}
.shop_eyewear_special_wondercon_black {
background-image: url(spritesmith3.png);
- background-position: -1457px -287px;
+ background-position: -1472px -369px;
width: 40px;
height: 40px;
}
.shop_eyewear_special_wondercon_red {
background-image: url(spritesmith3.png);
- background-position: -1457px -328px;
+ background-position: -1472px -410px;
width: 40px;
height: 40px;
}
.head_0 {
background-image: url(spritesmith3.png);
- background-position: -1325px -91px;
+ background-position: -1340px -273px;
width: 90px;
height: 90px;
}
.customize-option.head_0 {
background-image: url(spritesmith3.png);
- background-position: -1350px -106px;
+ background-position: -1365px -288px;
width: 60px;
height: 60px;
}
.head_healer_1 {
background-image: url(spritesmith3.png);
- background-position: -1325px -182px;
+ background-position: -1340px -364px;
width: 90px;
height: 90px;
}
.head_healer_2 {
background-image: url(spritesmith3.png);
- background-position: -1325px -273px;
+ background-position: -1340px -455px;
width: 90px;
height: 90px;
}
.head_healer_3 {
background-image: url(spritesmith3.png);
- background-position: -1325px -364px;
+ background-position: -1340px -546px;
width: 90px;
height: 90px;
}
.head_healer_4 {
background-image: url(spritesmith3.png);
- background-position: -1325px -455px;
+ background-position: -1340px -637px;
width: 90px;
height: 90px;
}
.head_healer_5 {
background-image: url(spritesmith3.png);
- background-position: -1325px -546px;
+ background-position: -1340px -728px;
width: 90px;
height: 90px;
}
.head_rogue_1 {
background-image: url(spritesmith3.png);
- background-position: -1325px -637px;
+ background-position: -1340px -819px;
width: 90px;
height: 90px;
}
.head_rogue_2 {
background-image: url(spritesmith3.png);
- background-position: -1325px -728px;
+ background-position: -1340px -910px;
width: 90px;
height: 90px;
}
.head_rogue_3 {
background-image: url(spritesmith3.png);
- background-position: -1325px -819px;
+ background-position: -1340px -1001px;
width: 90px;
height: 90px;
}
.head_rogue_4 {
background-image: url(spritesmith3.png);
- background-position: -1325px -910px;
+ background-position: -1340px -1092px;
width: 90px;
height: 90px;
}
.head_rogue_5 {
background-image: url(spritesmith3.png);
- background-position: -1325px -1001px;
+ background-position: -1340px -1183px;
width: 90px;
height: 90px;
}
.head_special_2 {
background-image: url(spritesmith3.png);
- background-position: -1325px -1092px;
+ background-position: 0px -1325px;
width: 90px;
height: 90px;
}
.head_warrior_1 {
background-image: url(spritesmith3.png);
- background-position: -1325px -1183px;
+ background-position: -91px -1325px;
width: 90px;
height: 90px;
}
.head_warrior_2 {
background-image: url(spritesmith3.png);
- background-position: 0px -1325px;
+ background-position: -182px -1325px;
width: 90px;
height: 90px;
}
.head_warrior_3 {
background-image: url(spritesmith3.png);
- background-position: -91px -1325px;
+ background-position: -273px -1325px;
width: 90px;
height: 90px;
}
.head_warrior_4 {
background-image: url(spritesmith3.png);
- background-position: -182px -1325px;
+ background-position: -364px -1325px;
width: 90px;
height: 90px;
}
.head_warrior_5 {
background-image: url(spritesmith3.png);
- background-position: -273px -1325px;
+ background-position: -455px -1325px;
width: 90px;
height: 90px;
}
.head_wizard_1 {
background-image: url(spritesmith3.png);
- background-position: -364px -1325px;
+ background-position: -546px -1325px;
width: 90px;
height: 90px;
}
.head_wizard_2 {
background-image: url(spritesmith3.png);
- background-position: -455px -1325px;
+ background-position: -637px -1325px;
width: 90px;
height: 90px;
}
.head_wizard_3 {
background-image: url(spritesmith3.png);
- background-position: -546px -1325px;
+ background-position: -728px -1325px;
width: 90px;
height: 90px;
}
.head_wizard_4 {
background-image: url(spritesmith3.png);
- background-position: -637px -1325px;
+ background-position: -819px -1325px;
width: 90px;
height: 90px;
}
.head_wizard_5 {
background-image: url(spritesmith3.png);
- background-position: -182px -506px;
+ background-position: -910px -1325px;
width: 90px;
height: 90px;
}
.shop_head_healer_1 {
background-image: url(spritesmith3.png);
- background-position: -1457px -1271px;
+ background-position: -1472px -1353px;
width: 40px;
height: 40px;
}
.shop_head_healer_2 {
background-image: url(spritesmith3.png);
- background-position: -1457px -1312px;
+ background-position: -1472px -1394px;
width: 40px;
height: 40px;
}
.shop_head_healer_3 {
background-image: url(spritesmith3.png);
- background-position: -1457px -1353px;
+ background-position: 0px -1457px;
+ width: 40px;
+ height: 40px;
+}
+.shop_head_healer_4 {
+ background-image: url(spritesmith3.png);
+ background-position: -41px -1457px;
+ width: 40px;
+ height: 40px;
+}
+.shop_head_healer_5 {
+ background-image: url(spritesmith3.png);
+ background-position: -82px -1457px;
+ width: 40px;
+ height: 40px;
+}
+.shop_head_rogue_1 {
+ background-image: url(spritesmith3.png);
+ background-position: -123px -1457px;
+ width: 40px;
+ height: 40px;
+}
+.shop_head_rogue_2 {
+ background-image: url(spritesmith3.png);
+ background-position: -164px -1457px;
+ width: 40px;
+ height: 40px;
+}
+.shop_head_rogue_3 {
+ background-image: url(spritesmith3.png);
+ background-position: -205px -1457px;
+ width: 40px;
+ height: 40px;
+}
+.shop_head_rogue_4 {
+ background-image: url(spritesmith3.png);
+ background-position: -246px -1457px;
+ width: 40px;
+ height: 40px;
+}
+.shop_head_rogue_5 {
+ background-image: url(spritesmith3.png);
+ background-position: -287px -1457px;
+ width: 40px;
+ height: 40px;
+}
+.shop_head_special_0 {
+ background-image: url(spritesmith3.png);
+ background-position: -328px -1457px;
+ width: 40px;
+ height: 40px;
+}
+.shop_head_special_1 {
+ background-image: url(spritesmith3.png);
+ background-position: -369px -1457px;
+ width: 40px;
+ height: 40px;
+}
+.shop_head_special_2 {
+ background-image: url(spritesmith3.png);
+ background-position: -410px -1457px;
+ width: 40px;
+ height: 40px;
+}
+.shop_head_warrior_1 {
+ background-image: url(spritesmith3.png);
+ background-position: -451px -1457px;
+ width: 40px;
+ height: 40px;
+}
+.shop_head_warrior_2 {
+ background-image: url(spritesmith3.png);
+ background-position: -492px -1457px;
+ width: 40px;
+ height: 40px;
+}
+.shop_head_warrior_3 {
+ background-image: url(spritesmith3.png);
+ background-position: -533px -1457px;
+ width: 40px;
+ height: 40px;
+}
+.shop_head_warrior_4 {
+ background-image: url(spritesmith3.png);
+ background-position: -574px -1457px;
+ width: 40px;
+ height: 40px;
+}
+.shop_head_warrior_5 {
+ background-image: url(spritesmith3.png);
+ background-position: -1329px -1325px;
width: 40px;
height: 40px;
}
diff --git a/common/dist/sprites/spritesmith3.png b/common/dist/sprites/spritesmith3.png
index 9286a71bbd..04e3ed621b 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 c2ed4c867f..34081fe399 100644
--- a/common/dist/sprites/spritesmith4.css
+++ b/common/dist/sprites/spritesmith4.css
@@ -1,1440 +1,1620 @@
-.shop_head_healer_4 {
- background-image: url(spritesmith4.png);
- background-position: -1786px -1460px;
- width: 40px;
- height: 40px;
-}
-.shop_head_healer_5 {
- background-image: url(spritesmith4.png);
- background-position: -1704px -1214px;
- width: 40px;
- height: 40px;
-}
-.shop_head_rogue_1 {
- background-image: url(spritesmith4.png);
- background-position: -1827px -1460px;
- width: 40px;
- height: 40px;
-}
-.shop_head_rogue_2 {
- background-image: url(spritesmith4.png);
- background-position: -1827px -1214px;
- width: 40px;
- height: 40px;
-}
-.shop_head_rogue_3 {
- background-image: url(spritesmith4.png);
- background-position: -1827px -1255px;
- width: 40px;
- height: 40px;
-}
-.shop_head_rogue_4 {
- background-image: url(spritesmith4.png);
- background-position: -1950px -1255px;
- width: 40px;
- height: 40px;
-}
-.shop_head_rogue_5 {
- background-image: url(spritesmith4.png);
- background-position: -1868px -1296px;
- width: 40px;
- height: 40px;
-}
-.shop_head_special_0 {
- background-image: url(spritesmith4.png);
- background-position: -1704px -1419px;
- width: 40px;
- height: 40px;
-}
-.shop_head_special_1 {
- background-image: url(spritesmith4.png);
- background-position: -1786px -1419px;
- width: 40px;
- height: 40px;
-}
-.shop_head_special_2 {
- background-image: url(spritesmith4.png);
- background-position: -1950px -1419px;
- width: 40px;
- height: 40px;
-}
-.shop_head_warrior_1 {
- background-image: url(spritesmith4.png);
- background-position: -1991px -1419px;
- width: 40px;
- height: 40px;
-}
-.shop_head_warrior_2 {
- background-image: url(spritesmith4.png);
- background-position: -1704px -1460px;
- width: 40px;
- height: 40px;
-}
-.shop_head_warrior_3 {
- background-image: url(spritesmith4.png);
- background-position: -1745px -1460px;
- width: 40px;
- height: 40px;
-}
-.shop_head_warrior_4 {
- background-image: url(spritesmith4.png);
- background-position: -1950px -1583px;
- width: 40px;
- height: 40px;
-}
-.shop_head_warrior_5 {
- background-image: url(spritesmith4.png);
- background-position: -1909px -1583px;
- width: 40px;
- height: 40px;
-}
.shop_head_wizard_1 {
background-image: url(spritesmith4.png);
- background-position: -1868px -1583px;
+ background-position: -1756px -1915px;
width: 40px;
height: 40px;
}
.shop_head_wizard_2 {
background-image: url(spritesmith4.png);
- background-position: -1827px -1583px;
+ background-position: -690px -1915px;
width: 40px;
height: 40px;
}
.shop_head_wizard_3 {
background-image: url(spritesmith4.png);
- background-position: -1786px -1583px;
+ background-position: -1928px -1329px;
width: 40px;
height: 40px;
}
.shop_head_wizard_4 {
background-image: url(spritesmith4.png);
- background-position: -1745px -1583px;
+ background-position: -813px -1915px;
width: 40px;
height: 40px;
}
.shop_head_wizard_5 {
background-image: url(spritesmith4.png);
- background-position: -1704px -1583px;
+ background-position: -1928px -1206px;
+ width: 40px;
+ height: 40px;
+}
+.headAccessory_special_bearEars {
+ background-image: url(spritesmith4.png);
+ background-position: -819px -1590px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.headAccessory_special_bearEars {
+ background-image: url(spritesmith4.png);
+ background-position: -844px -1605px;
+ width: 60px;
+ height: 60px;
+}
+.headAccessory_special_cactusEars {
+ background-image: url(spritesmith4.png);
+ background-position: -1001px -1590px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.headAccessory_special_cactusEars {
+ background-image: url(spritesmith4.png);
+ background-position: -1026px -1605px;
+ width: 60px;
+ height: 60px;
+}
+.headAccessory_special_foxEars {
+ background-image: url(spritesmith4.png);
+ background-position: -471px -1681px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.headAccessory_special_foxEars {
+ background-image: url(spritesmith4.png);
+ background-position: -496px -1696px;
+ width: 60px;
+ height: 60px;
+}
+.headAccessory_special_lionEars {
+ background-image: url(spritesmith4.png);
+ background-position: -653px -1681px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.headAccessory_special_lionEars {
+ background-image: url(spritesmith4.png);
+ background-position: -678px -1696px;
+ width: 60px;
+ height: 60px;
+}
+.headAccessory_special_pandaEars {
+ background-image: url(spritesmith4.png);
+ background-position: -1053px -1681px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.headAccessory_special_pandaEars {
+ background-image: url(spritesmith4.png);
+ background-position: -1078px -1696px;
+ width: 60px;
+ height: 60px;
+}
+.headAccessory_special_pigEars {
+ background-image: url(spritesmith4.png);
+ background-position: -1326px -1681px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.headAccessory_special_pigEars {
+ background-image: url(spritesmith4.png);
+ background-position: -1351px -1696px;
+ width: 60px;
+ height: 60px;
+}
+.headAccessory_special_tigerEars {
+ background-image: url(spritesmith4.png);
+ background-position: -1788px -819px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.headAccessory_special_tigerEars {
+ background-image: url(spritesmith4.png);
+ background-position: -1813px -834px;
+ width: 60px;
+ height: 60px;
+}
+.headAccessory_special_wolfEars {
+ background-image: url(spritesmith4.png);
+ background-position: -1788px -728px;
+ width: 90px;
+ height: 90px;
+}
+.customize-option.headAccessory_special_wolfEars {
+ background-image: url(spritesmith4.png);
+ background-position: -1813px -743px;
+ width: 60px;
+ height: 60px;
+}
+.shop_headAccessory_special_bearEars {
+ background-image: url(spritesmith4.png);
+ background-position: -854px -1915px;
+ width: 40px;
+ height: 40px;
+}
+.shop_headAccessory_special_cactusEars {
+ background-image: url(spritesmith4.png);
+ background-position: -1928px -1575px;
+ width: 40px;
+ height: 40px;
+}
+.shop_headAccessory_special_foxEars {
+ background-image: url(spritesmith4.png);
+ background-position: -239px -1915px;
+ width: 40px;
+ height: 40px;
+}
+.shop_headAccessory_special_lionEars {
+ background-image: url(spritesmith4.png);
+ background-position: -321px -1915px;
+ width: 40px;
+ height: 40px;
+}
+.shop_headAccessory_special_pandaEars {
+ background-image: url(spritesmith4.png);
+ background-position: -485px -1915px;
+ width: 40px;
+ height: 40px;
+}
+.shop_headAccessory_special_pigEars {
+ background-image: url(spritesmith4.png);
+ background-position: -526px -1915px;
+ width: 40px;
+ height: 40px;
+}
+.shop_headAccessory_special_tigerEars {
+ background-image: url(spritesmith4.png);
+ background-position: -567px -1915px;
+ width: 40px;
+ height: 40px;
+}
+.shop_headAccessory_special_wolfEars {
+ background-image: url(spritesmith4.png);
+ background-position: -608px -1915px;
width: 40px;
height: 40px;
}
.shield_healer_1 {
background-image: url(spritesmith4.png);
- background-position: -1613px -1183px;
+ background-position: -1788px -637px;
width: 90px;
height: 90px;
}
.shield_healer_2 {
background-image: url(spritesmith4.png);
- background-position: -1613px -1274px;
+ background-position: -1788px -455px;
width: 90px;
height: 90px;
}
.shield_healer_3 {
background-image: url(spritesmith4.png);
- background-position: -1613px -1365px;
+ background-position: -562px -1681px;
width: 90px;
height: 90px;
}
.shield_healer_4 {
background-image: url(spritesmith4.png);
- background-position: -1613px -1456px;
+ background-position: -1183px -1590px;
width: 90px;
height: 90px;
}
.shield_healer_5 {
background-image: url(spritesmith4.png);
- background-position: -810px -1602px;
+ background-position: -1092px -1590px;
width: 90px;
height: 90px;
}
.shield_rogue_0 {
background-image: url(spritesmith4.png);
- background-position: -901px -1602px;
+ background-position: -660px -576px;
width: 90px;
height: 90px;
}
.shield_rogue_1 {
background-image: url(spritesmith4.png);
- background-position: -992px -1602px;
+ background-position: -1334px -1399px;
width: 103px;
height: 90px;
}
.shield_rogue_2 {
background-image: url(spritesmith4.png);
- background-position: -780px -1405px;
+ background-position: -1230px -1399px;
width: 103px;
height: 90px;
}
.shield_rogue_3 {
background-image: url(spritesmith4.png);
- background-position: -884px -1405px;
+ background-position: -1115px -1399px;
width: 114px;
height: 90px;
}
.shield_rogue_4 {
background-image: url(spritesmith4.png);
- background-position: -1420px -1050px;
+ background-position: -1018px -1399px;
width: 96px;
height: 90px;
}
.shield_rogue_5 {
background-image: url(spritesmith4.png);
- background-position: -999px -1405px;
+ background-position: -903px -1399px;
width: 114px;
height: 90px;
}
.shield_rogue_6 {
background-image: url(spritesmith4.png);
- background-position: -1114px -1405px;
+ background-position: 0px -1772px;
width: 114px;
height: 90px;
}
.shield_special_1 {
background-image: url(spritesmith4.png);
- background-position: -1613px -273px;
+ background-position: -1788px 0px;
width: 90px;
height: 90px;
}
.shield_special_goldenknight {
background-image: url(spritesmith4.png);
- background-position: 0px -1602px;
+ background-position: -1599px -1681px;
width: 111px;
height: 90px;
}
.shield_warrior_1 {
background-image: url(spritesmith4.png);
- background-position: -1613px -364px;
+ background-position: -380px -1681px;
width: 90px;
height: 90px;
}
.shield_warrior_2 {
background-image: url(spritesmith4.png);
- background-position: -1613px -455px;
+ background-position: -289px -1681px;
width: 90px;
height: 90px;
}
.shield_warrior_3 {
background-image: url(spritesmith4.png);
- background-position: -1613px -546px;
+ background-position: -1654px -1590px;
width: 90px;
height: 90px;
}
.shield_warrior_4 {
background-image: url(spritesmith4.png);
- background-position: -1613px -728px;
+ background-position: -910px -1590px;
width: 90px;
height: 90px;
}
.shield_warrior_5 {
background-image: url(spritesmith4.png);
- background-position: -1613px -1001px;
+ background-position: -1563px -1590px;
width: 90px;
height: 90px;
}
.shop_shield_healer_1 {
background-image: url(spritesmith4.png);
- background-position: -1991px -1542px;
+ background-position: -1715px -1915px;
width: 40px;
height: 40px;
}
.shop_shield_healer_2 {
background-image: url(spritesmith4.png);
- background-position: -1950px -1542px;
+ background-position: -1674px -1915px;
width: 40px;
height: 40px;
}
.shop_shield_healer_3 {
background-image: url(spritesmith4.png);
- background-position: -1909px -1542px;
+ background-position: -1633px -1915px;
width: 40px;
height: 40px;
}
.shop_shield_healer_4 {
background-image: url(spritesmith4.png);
- background-position: -1868px -1542px;
+ background-position: -1592px -1915px;
width: 40px;
height: 40px;
}
.shop_shield_healer_5 {
background-image: url(spritesmith4.png);
- background-position: -1827px -1542px;
+ background-position: -1551px -1915px;
width: 40px;
height: 40px;
}
.shop_shield_rogue_0 {
background-image: url(spritesmith4.png);
- background-position: -1786px -1542px;
+ background-position: -1510px -1915px;
width: 40px;
height: 40px;
}
.shop_shield_rogue_1 {
background-image: url(spritesmith4.png);
- background-position: -1745px -1542px;
+ background-position: -1469px -1915px;
width: 40px;
height: 40px;
}
.shop_shield_rogue_2 {
background-image: url(spritesmith4.png);
- background-position: -1704px -1542px;
+ background-position: -1428px -1915px;
width: 40px;
height: 40px;
}
.shop_shield_rogue_3 {
background-image: url(spritesmith4.png);
- background-position: -1991px -1501px;
+ background-position: -1387px -1915px;
width: 40px;
height: 40px;
}
.shop_shield_rogue_4 {
background-image: url(spritesmith4.png);
- background-position: -1950px -1501px;
+ background-position: -1346px -1915px;
width: 40px;
height: 40px;
}
.shop_shield_rogue_5 {
background-image: url(spritesmith4.png);
- background-position: -1909px -1501px;
+ background-position: -1305px -1915px;
width: 40px;
height: 40px;
}
.shop_shield_rogue_6 {
background-image: url(spritesmith4.png);
- background-position: -1868px -1501px;
+ background-position: -1264px -1915px;
width: 40px;
height: 40px;
}
.shop_shield_special_0 {
background-image: url(spritesmith4.png);
- background-position: -1827px -1501px;
+ background-position: -1223px -1915px;
width: 40px;
height: 40px;
}
.shop_shield_special_1 {
background-image: url(spritesmith4.png);
- background-position: -1786px -1501px;
+ background-position: -1182px -1915px;
width: 40px;
height: 40px;
}
.shop_shield_special_goldenknight {
background-image: url(spritesmith4.png);
- background-position: -1745px -1501px;
+ background-position: -1141px -1915px;
width: 40px;
height: 40px;
}
.shop_shield_warrior_1 {
background-image: url(spritesmith4.png);
- background-position: -1704px -1501px;
+ background-position: -1100px -1915px;
width: 40px;
height: 40px;
}
.shop_shield_warrior_2 {
background-image: url(spritesmith4.png);
- background-position: -1991px -1460px;
+ background-position: -1059px -1915px;
width: 40px;
height: 40px;
}
.shop_shield_warrior_3 {
background-image: url(spritesmith4.png);
- background-position: -1950px -1460px;
+ background-position: -1018px -1915px;
width: 40px;
height: 40px;
}
.shop_shield_warrior_4 {
background-image: url(spritesmith4.png);
- background-position: -1909px -1460px;
+ background-position: -977px -1915px;
width: 40px;
height: 40px;
}
.shop_shield_warrior_5 {
background-image: url(spritesmith4.png);
- background-position: -1991px -1378px;
+ background-position: -936px -1915px;
width: 40px;
height: 40px;
}
.shop_weapon_healer_0 {
background-image: url(spritesmith4.png);
- background-position: -1909px -1378px;
+ background-position: -895px -1915px;
width: 40px;
height: 40px;
}
.shop_weapon_healer_1 {
background-image: url(spritesmith4.png);
- background-position: -1991px -1583px;
+ background-position: -198px -1915px;
width: 40px;
height: 40px;
}
.shop_weapon_healer_2 {
background-image: url(spritesmith4.png);
- background-position: -1827px -1378px;
+ background-position: -116px -1915px;
width: 40px;
height: 40px;
}
.shop_weapon_healer_3 {
background-image: url(spritesmith4.png);
- background-position: -1786px -1378px;
+ background-position: -1745px -1631px;
width: 40px;
height: 40px;
}
.shop_weapon_healer_4 {
background-image: url(spritesmith4.png);
- background-position: -1745px -1378px;
+ background-position: -1745px -1590px;
width: 40px;
height: 40px;
}
.shop_weapon_healer_5 {
background-image: url(spritesmith4.png);
- background-position: -1704px -1378px;
+ background-position: -1741px -1540px;
width: 40px;
height: 40px;
}
.shop_weapon_healer_6 {
background-image: url(spritesmith4.png);
- background-position: -1991px -1337px;
+ background-position: -1928px -919px;
width: 40px;
height: 40px;
}
.shop_weapon_rogue_0 {
background-image: url(spritesmith4.png);
- background-position: -1950px -1337px;
+ background-position: -971px -845px;
width: 40px;
height: 40px;
}
.shop_weapon_rogue_1 {
background-image: url(spritesmith4.png);
- background-position: -1909px -1337px;
+ background-position: -758px -364px;
width: 40px;
height: 40px;
}
.shop_weapon_rogue_2 {
background-image: url(spritesmith4.png);
- background-position: -1868px -1337px;
+ background-position: -1386px -961px;
width: 40px;
height: 40px;
}
.shop_weapon_rogue_3 {
background-image: url(spritesmith4.png);
- background-position: -1827px -1337px;
+ background-position: -1712px -1332px;
width: 40px;
height: 40px;
}
.shop_weapon_rogue_4 {
background-image: url(spritesmith4.png);
- background-position: -1786px -1337px;
+ background-position: -1837px -1414px;
width: 40px;
height: 40px;
}
.shop_weapon_rogue_5 {
background-image: url(spritesmith4.png);
- background-position: -1745px -1337px;
+ background-position: -1879px -1820px;
width: 40px;
height: 40px;
}
.shop_weapon_rogue_6 {
background-image: url(spritesmith4.png);
- background-position: -1704px -1337px;
+ background-position: -1928px -1862px;
width: 40px;
height: 40px;
}
.shop_weapon_special_0 {
background-image: url(spritesmith4.png);
- background-position: -1991px -1296px;
+ background-position: -1928px -1821px;
width: 40px;
height: 40px;
}
.shop_weapon_special_1 {
background-image: url(spritesmith4.png);
- background-position: -1950px -1296px;
+ background-position: -1928px -1780px;
width: 40px;
height: 40px;
}
.shop_weapon_special_2 {
background-image: url(spritesmith4.png);
- background-position: -1909px -1296px;
+ background-position: -1928px -1739px;
width: 40px;
height: 40px;
}
.shop_weapon_special_3 {
background-image: url(spritesmith4.png);
- background-position: -1827px -1296px;
+ background-position: -1928px -1698px;
width: 40px;
height: 40px;
}
.shop_weapon_special_critical {
background-image: url(spritesmith4.png);
- background-position: -1786px -1296px;
+ background-position: -1928px -1657px;
width: 40px;
height: 40px;
}
.shop_weapon_warrior_0 {
background-image: url(spritesmith4.png);
- background-position: -1745px -1296px;
+ background-position: -1928px -1616px;
width: 40px;
height: 40px;
}
.shop_weapon_warrior_1 {
background-image: url(spritesmith4.png);
- background-position: -1704px -1296px;
+ background-position: -1928px -1534px;
width: 40px;
height: 40px;
}
.shop_weapon_warrior_2 {
background-image: url(spritesmith4.png);
- background-position: -1991px -1255px;
+ background-position: -1928px -1493px;
width: 40px;
height: 40px;
}
.shop_weapon_warrior_3 {
background-image: url(spritesmith4.png);
- background-position: -1909px -1255px;
+ background-position: -1928px -1452px;
width: 40px;
height: 40px;
}
.shop_weapon_warrior_4 {
background-image: url(spritesmith4.png);
- background-position: -1868px -1255px;
+ background-position: -1928px -1411px;
width: 40px;
height: 40px;
}
.shop_weapon_warrior_5 {
background-image: url(spritesmith4.png);
- background-position: -1786px -1255px;
+ background-position: -1928px -1370px;
width: 40px;
height: 40px;
}
.shop_weapon_warrior_6 {
background-image: url(spritesmith4.png);
- background-position: -1745px -1255px;
+ background-position: -1928px -1288px;
width: 40px;
height: 40px;
}
.shop_weapon_wizard_0 {
background-image: url(spritesmith4.png);
- background-position: -1704px -1255px;
+ background-position: -1928px -1247px;
width: 40px;
height: 40px;
}
.shop_weapon_wizard_1 {
background-image: url(spritesmith4.png);
- background-position: -1991px -1214px;
+ background-position: -1928px -1165px;
width: 40px;
height: 40px;
}
.shop_weapon_wizard_2 {
background-image: url(spritesmith4.png);
- background-position: -1950px -1214px;
+ background-position: -1928px -1124px;
width: 40px;
height: 40px;
}
.shop_weapon_wizard_3 {
background-image: url(spritesmith4.png);
- background-position: -1909px -1214px;
+ background-position: -1928px -1083px;
width: 40px;
height: 40px;
}
.shop_weapon_wizard_4 {
background-image: url(spritesmith4.png);
- background-position: -1868px -1214px;
+ background-position: -1928px -1042px;
width: 40px;
height: 40px;
}
.shop_weapon_wizard_5 {
background-image: url(spritesmith4.png);
- background-position: -1786px -1214px;
+ background-position: -1928px -1001px;
width: 40px;
height: 40px;
}
.shop_weapon_wizard_6 {
background-image: url(spritesmith4.png);
- background-position: -1745px -1214px;
+ background-position: -1928px -960px;
width: 40px;
height: 40px;
}
.weapon_healer_0 {
background-image: url(spritesmith4.png);
- background-position: -1218px -1037px;
+ background-position: -1438px -1399px;
width: 90px;
height: 90px;
}
.weapon_healer_1 {
background-image: url(spritesmith4.png);
- background-position: -1229px -1405px;
+ background-position: -1529px -1399px;
width: 90px;
height: 90px;
}
.weapon_healer_2 {
background-image: url(spritesmith4.png);
- background-position: -1320px -1405px;
+ background-position: -1620px -1399px;
width: 90px;
height: 90px;
}
.weapon_healer_3 {
background-image: url(spritesmith4.png);
- background-position: -1411px -1405px;
+ background-position: 0px -1499px;
width: 90px;
height: 90px;
}
.weapon_healer_4 {
background-image: url(spritesmith4.png);
- background-position: -1522px 0px;
+ background-position: -91px -1499px;
width: 90px;
height: 90px;
}
.weapon_healer_5 {
background-image: url(spritesmith4.png);
- background-position: -1522px -91px;
+ background-position: -182px -1499px;
width: 90px;
height: 90px;
}
.weapon_healer_6 {
background-image: url(spritesmith4.png);
- background-position: -1522px -182px;
+ background-position: -273px -1499px;
width: 90px;
height: 90px;
}
.weapon_rogue_0 {
background-image: url(spritesmith4.png);
- background-position: -1522px -273px;
+ background-position: -364px -1499px;
width: 90px;
height: 90px;
}
.weapon_rogue_1 {
background-image: url(spritesmith4.png);
- background-position: -1522px -364px;
+ background-position: -455px -1499px;
width: 90px;
height: 90px;
}
.weapon_rogue_2 {
background-image: url(spritesmith4.png);
- background-position: -1522px -455px;
+ background-position: -546px -1499px;
width: 90px;
height: 90px;
}
.weapon_rogue_3 {
background-image: url(spritesmith4.png);
- background-position: -1522px -546px;
+ background-position: -637px -1499px;
width: 90px;
height: 90px;
}
.weapon_rogue_4 {
background-image: url(spritesmith4.png);
- background-position: -1522px -637px;
+ background-position: -728px -1499px;
width: 90px;
height: 90px;
}
.weapon_rogue_5 {
background-image: url(spritesmith4.png);
- background-position: -1522px -728px;
+ background-position: -819px -1499px;
width: 90px;
height: 90px;
}
.weapon_rogue_6 {
background-image: url(spritesmith4.png);
- background-position: -1522px -819px;
+ background-position: -910px -1499px;
width: 90px;
height: 90px;
}
.weapon_special_1 {
background-image: url(spritesmith4.png);
- background-position: 0px -1511px;
+ background-position: -1001px -1499px;
width: 102px;
height: 90px;
}
.weapon_special_2 {
background-image: url(spritesmith4.png);
- background-position: -1522px -910px;
+ background-position: -1104px -1499px;
width: 90px;
height: 90px;
}
.weapon_special_3 {
background-image: url(spritesmith4.png);
- background-position: -1522px -1001px;
+ background-position: -1195px -1499px;
width: 90px;
height: 90px;
}
.weapon_warrior_0 {
background-image: url(spritesmith4.png);
- background-position: -1522px -1092px;
+ background-position: -1286px -1499px;
width: 90px;
height: 90px;
}
.weapon_warrior_1 {
background-image: url(spritesmith4.png);
- background-position: -1522px -1183px;
+ background-position: -1377px -1499px;
width: 90px;
height: 90px;
}
.weapon_warrior_2 {
background-image: url(spritesmith4.png);
- background-position: -1522px -1274px;
+ background-position: -1468px -1499px;
width: 90px;
height: 90px;
}
.weapon_warrior_3 {
background-image: url(spritesmith4.png);
- background-position: -1522px -1365px;
+ background-position: -1559px -1499px;
width: 90px;
height: 90px;
}
.weapon_warrior_4 {
background-image: url(spritesmith4.png);
- background-position: -103px -1511px;
+ background-position: -1650px -1499px;
width: 90px;
height: 90px;
}
.weapon_warrior_5 {
background-image: url(spritesmith4.png);
- background-position: -194px -1511px;
+ background-position: 0px -1590px;
width: 90px;
height: 90px;
}
.weapon_warrior_6 {
background-image: url(spritesmith4.png);
- background-position: -285px -1511px;
+ background-position: -91px -1590px;
width: 90px;
height: 90px;
}
.weapon_wizard_0 {
background-image: url(spritesmith4.png);
- background-position: -376px -1511px;
+ background-position: -182px -1590px;
width: 90px;
height: 90px;
}
.weapon_wizard_1 {
background-image: url(spritesmith4.png);
- background-position: -467px -1511px;
+ background-position: -273px -1590px;
width: 90px;
height: 90px;
}
.weapon_wizard_2 {
background-image: url(spritesmith4.png);
- background-position: -558px -1511px;
+ background-position: -364px -1590px;
width: 90px;
height: 90px;
}
.weapon_wizard_3 {
background-image: url(spritesmith4.png);
- background-position: -649px -1511px;
+ background-position: -455px -1590px;
width: 90px;
height: 90px;
}
.weapon_wizard_4 {
background-image: url(spritesmith4.png);
- background-position: -740px -1511px;
+ background-position: -546px -1590px;
width: 90px;
height: 90px;
}
.weapon_wizard_5 {
background-image: url(spritesmith4.png);
- background-position: -831px -1511px;
+ background-position: -637px -1590px;
width: 90px;
height: 90px;
}
.weapon_wizard_6 {
background-image: url(spritesmith4.png);
- background-position: -922px -1511px;
+ background-position: -728px -1590px;
width: 90px;
height: 90px;
}
.GrimReaper {
background-image: url(spritesmith4.png);
- background-position: -1704px -160px;
+ background-position: -1788px -1283px;
width: 57px;
height: 66px;
}
.Pet_Currency_Gem {
background-image: url(spritesmith4.png);
- background-position: -1704px -1624px;
+ background-position: -1834px -1915px;
width: 45px;
height: 39px;
}
.Pet_Currency_Gem1x {
background-image: url(spritesmith4.png);
- background-position: -1994px -268px;
+ background-position: -1849px -1001px;
width: 15px;
height: 13px;
}
.Pet_Currency_Gem2x {
background-image: url(spritesmith4.png);
- background-position: -1998px -597px;
+ background-position: -1846px -1588px;
width: 30px;
height: 26px;
}
.PixelPaw-Gold {
background-image: url(spritesmith4.png);
- background-position: -1820px -282px;
+ background-position: -1532px -1772px;
width: 51px;
height: 51px;
}
.PixelPaw {
background-image: url(spritesmith4.png);
- background-position: -1802px -337px;
+ background-position: -1480px -1772px;
width: 51px;
height: 51px;
}
.PixelPaw002 {
background-image: url(spritesmith4.png);
- background-position: -1970px -282px;
+ background-position: -1428px -1772px;
width: 51px;
height: 51px;
}
.avatar_floral_healer {
background-image: url(spritesmith4.png);
- background-position: -1420px -838px;
+ background-position: 0px -1399px;
width: 99px;
height: 99px;
}
.avatar_floral_rogue {
background-image: url(spritesmith4.png);
- background-position: -1420px -732px;
+ background-position: -100px -1399px;
width: 99px;
height: 99px;
}
.avatar_floral_warrior {
background-image: url(spritesmith4.png);
- background-position: -1420px -626px;
+ background-position: -200px -1399px;
width: 99px;
height: 99px;
}
.avatar_floral_wizard {
background-image: url(spritesmith4.png);
- background-position: -1420px -520px;
+ background-position: -300px -1399px;
width: 99px;
height: 99px;
}
.inventory_present {
background-image: url(spritesmith4.png);
- background-position: -1872px -282px;
+ background-position: -1379px -1772px;
+ width: 48px;
+ height: 51px;
+}
+.inventory_present_01 {
+ background-image: url(spritesmith4.png);
+ background-position: -1711px -1681px;
+ width: 48px;
+ height: 51px;
+}
+.inventory_present_02 {
+ background-image: url(spritesmith4.png);
+ background-position: -1711px -1399px;
+ width: 48px;
+ height: 51px;
+}
+.inventory_present_03 {
+ background-image: url(spritesmith4.png);
+ background-position: -1400px -1248px;
+ width: 48px;
+ height: 51px;
+}
+.inventory_present_04 {
+ background-image: url(spritesmith4.png);
+ background-position: -971px -793px;
+ width: 48px;
+ height: 51px;
+}
+.inventory_present_05 {
+ background-image: url(spritesmith4.png);
+ background-position: -965px -724px;
+ width: 48px;
+ height: 51px;
+}
+.inventory_present_06 {
+ background-image: url(spritesmith4.png);
+ background-position: -965px -672px;
+ width: 48px;
+ height: 51px;
+}
+.inventory_present_07 {
+ background-image: url(spritesmith4.png);
+ background-position: -751px -576px;
+ width: 48px;
+ height: 51px;
+}
+.inventory_present_08 {
+ background-image: url(spritesmith4.png);
+ background-position: -709px -364px;
+ width: 48px;
+ height: 51px;
+}
+.inventory_present_09 {
+ background-image: url(spritesmith4.png);
+ background-position: -660px -364px;
+ width: 48px;
+ height: 51px;
+}
+.inventory_present_10 {
+ background-image: url(spritesmith4.png);
+ background-position: -1178px -811px;
+ width: 48px;
+ height: 51px;
+}
+.inventory_present_11 {
+ background-image: url(spritesmith4.png);
+ background-position: -1392px -1005px;
+ width: 48px;
+ height: 51px;
+}
+.inventory_present_12 {
+ background-image: url(spritesmith4.png);
+ background-position: -1343px -1005px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll {
background-image: url(spritesmith4.png);
- background-position: -1985px -160px;
+ background-position: -1245px -1005px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_locked {
background-image: url(spritesmith4.png);
- background-position: -1851px -649px;
+ background-position: -1386px -909px;
width: 48px;
height: 51px;
}
.inventory_special_fortify {
background-image: url(spritesmith4.png);
- background-position: -1927px -160px;
+ background-position: -1402px -709px;
width: 57px;
height: 54px;
}
.inventory_special_nye {
background-image: url(spritesmith4.png);
- background-position: -1704px -227px;
+ background-position: -1712px -1277px;
width: 57px;
height: 54px;
}
.inventory_special_opaquePotion {
background-image: url(spritesmith4.png);
- background-position: -1868px -1460px;
+ background-position: -772px -1915px;
width: 40px;
height: 40px;
}
.inventory_special_shinySeed {
background-image: url(spritesmith4.png);
- background-position: -1762px -227px;
+ background-position: -1788px -1698px;
width: 57px;
height: 54px;
}
.inventory_special_snowball {
background-image: url(spritesmith4.png);
- background-position: -1820px -227px;
+ background-position: -1788px -1643px;
width: 57px;
height: 54px;
}
.inventory_special_spookDust {
background-image: url(spritesmith4.png);
- background-position: -1878px -227px;
+ background-position: -1788px -1588px;
width: 57px;
height: 54px;
}
.inventory_special_trinket {
background-image: url(spritesmith4.png);
- background-position: -1704px -337px;
+ background-position: -1294px -1005px;
width: 48px;
height: 51px;
}
.inventory_special_valentine {
background-image: url(spritesmith4.png);
- background-position: -1704px -282px;
+ background-position: -1788px -1533px;
width: 57px;
height: 54px;
}
.pet_key {
background-image: url(spritesmith4.png);
- background-position: -1936px -227px;
+ background-position: -1788px -1478px;
width: 57px;
height: 54px;
}
.rebirth_orb {
background-image: url(spritesmith4.png);
- background-position: -1762px -282px;
+ background-position: -1402px -764px;
width: 57px;
height: 54px;
}
+.shop_armoire {
+ background-image: url(spritesmith4.png);
+ background-position: -649px -1915px;
+ width: 40px;
+ height: 40px;
+}
.snowman {
background-image: url(spritesmith4.png);
- background-position: -628px -1602px;
+ background-position: -1788px -910px;
width: 90px;
height: 90px;
}
.spookman {
background-image: url(spritesmith4.png);
- background-position: -719px -1602px;
+ background-position: -1788px -182px;
width: 90px;
height: 90px;
}
+.welcome_to_Habit_1 {
+ background-image: url(spritesmith4.png);
+ background-position: -400px -1399px;
+ width: 502px;
+ height: 99px;
+}
+.welcome_to_Habit_2 {
+ background-image: url(spritesmith4.png);
+ background-position: 0px -1076px;
+ width: 500px;
+ height: 171px;
+}
+.welcome_to_Habit_3 {
+ background-image: url(spritesmith4.png);
+ background-position: -220px 0px;
+ width: 584px;
+ height: 220px;
+}
+.welcome_to_Habit_4 {
+ background-image: url(spritesmith4.png);
+ background-position: -501px -1076px;
+ width: 423px;
+ height: 171px;
+}
.zzz {
background-image: url(spritesmith4.png);
- background-position: -1994px -227px;
+ background-position: -1741px -1499px;
width: 40px;
height: 40px;
}
.zzz_light {
background-image: url(spritesmith4.png);
- background-position: -1868px -1378px;
+ background-position: -731px -1915px;
width: 40px;
height: 40px;
}
.npc_alex {
background-image: url(spritesmith4.png);
- background-position: -753px -1037px;
+ background-position: -1065px -892px;
width: 162px;
height: 138px;
}
.npc_bailey {
background-image: url(spritesmith4.png);
- background-position: -1857px -84px;
+ background-position: -1788px -1001px;
width: 60px;
height: 72px;
}
.npc_daniel {
background-image: url(spritesmith4.png);
- background-position: -1314px -275px;
+ background-position: -660px -452px;
width: 135px;
height: 123px;
}
-.npc_ian {
- background-image: url(spritesmith4.png);
- background-position: -1314px -139px;
- width: 75px;
- height: 135px;
-}
.npc_justin {
background-image: url(spritesmith4.png);
- background-position: -1314px -399px;
+ background-position: -880px -672px;
width: 84px;
height: 120px;
}
.npc_justin_head {
background-image: url(spritesmith4.png);
- background-position: -1998px -389px;
+ background-position: -1797px -1915px;
width: 36px;
height: 39px;
}
.npc_matt {
background-image: url(spritesmith4.png);
- background-position: -916px -1037px;
+ background-position: -1204px -1248px;
width: 195px;
height: 138px;
}
.npc_timetravelers {
background-image: url(spritesmith4.png);
- background-position: -1100px -465px;
+ background-position: -800px -1248px;
width: 195px;
height: 138px;
}
.npc_timetravelers_active {
background-image: url(spritesmith4.png);
- background-position: -1100px -604px;
+ background-position: -604px -1248px;
width: 195px;
height: 138px;
}
.npc_tyler {
background-image: url(spritesmith4.png);
- background-position: -1613px -1092px;
+ background-position: -1788px -546px;
width: 90px;
height: 90px;
}
.seasonalshop_closed {
background-image: url(spritesmith4.png);
- background-position: -1100px -743px;
- width: 162px;
- height: 138px;
-}
-.seasonalshop_spring2015 {
- background-image: url(spritesmith4.png);
- background-position: -1100px -882px;
+ background-position: -441px -1248px;
width: 162px;
height: 138px;
}
.2014_Fall_HealerPROMO2 {
background-image: url(spritesmith4.png);
- background-position: -1613px -910px;
+ background-position: -1788px -364px;
width: 90px;
height: 90px;
}
.2014_Fall_Mage_PROMO9 {
background-image: url(spritesmith4.png);
- background-position: -218px -1602px;
+ background-position: -221px -1772px;
width: 120px;
height: 90px;
}
.2014_Fall_RoguePROMO3 {
background-image: url(spritesmith4.png);
- background-position: -112px -1602px;
+ background-position: -115px -1772px;
width: 105px;
height: 90px;
}
.2014_Fall_Warrior_PROMO {
background-image: url(spritesmith4.png);
- background-position: -1613px -819px;
+ background-position: -1788px -273px;
width: 90px;
height: 90px;
}
+.promo_enchanted_armoire {
+ background-image: url(spritesmith4.png);
+ background-position: -1004px -1772px;
+ width: 374px;
+ height: 76px;
+}
.promo_item_notif {
background-image: url(spritesmith4.png);
- background-position: -530px -1405px;
+ background-position: -1462px -1277px;
width: 249px;
height: 102px;
}
.promo_mystery_201405 {
background-image: url(spritesmith4.png);
- background-position: -1613px -637px;
+ background-position: -1788px -91px;
width: 90px;
height: 90px;
}
.promo_mystery_201406 {
background-image: url(spritesmith4.png);
- background-position: -1420px -944px;
+ background-position: -880px -793px;
width: 90px;
height: 96px;
}
.promo_mystery_201407 {
background-image: url(spritesmith4.png);
- background-position: -1884px -160px;
+ background-position: -1831px -1216px;
width: 42px;
height: 62px;
}
.promo_mystery_201408 {
background-image: url(spritesmith4.png);
- background-position: -1918px -84px;
+ background-position: -1788px -1074px;
width: 60px;
height: 71px;
}
.promo_mystery_201409 {
background-image: url(spritesmith4.png);
- background-position: -1613px -182px;
+ background-position: -1508px -1681px;
width: 90px;
height: 90px;
}
.promo_mystery_201410 {
background-image: url(spritesmith4.png);
- background-position: -1762px -160px;
+ background-position: -1788px -1350px;
width: 72px;
height: 63px;
}
.promo_mystery_201411 {
background-image: url(spritesmith4.png);
- background-position: -1613px -91px;
+ background-position: -1417px -1681px;
width: 90px;
height: 90px;
}
.promo_mystery_201412 {
background-image: url(spritesmith4.png);
- background-position: -1979px -84px;
+ background-position: -1788px -1216px;
width: 42px;
height: 66px;
}
.promo_mystery_201501 {
background-image: url(spritesmith4.png);
- background-position: -1835px -160px;
+ background-position: -1788px -1414px;
width: 48px;
height: 63px;
}
.promo_mystery_201502 {
background-image: url(spritesmith4.png);
- background-position: -1613px 0px;
+ background-position: -1235px -1681px;
width: 90px;
height: 90px;
}
.promo_mystery_201503 {
background-image: url(spritesmith4.png);
- background-position: -1520px -1511px;
+ background-position: -1144px -1681px;
+ width: 90px;
+ height: 90px;
+}
+.promo_mystery_201504 {
+ background-image: url(spritesmith4.png);
+ background-position: -1788px -1146px;
+ width: 60px;
+ height: 69px;
+}
+.promo_mystery_201505 {
+ background-image: url(spritesmith4.png);
+ background-position: -962px -1681px;
width: 90px;
height: 90px;
}
.promo_mystery_3014 {
background-image: url(spritesmith4.png);
- background-position: -1302px -1511px;
+ background-position: -744px -1681px;
width: 217px;
height: 90px;
}
.promo_partyhats {
background-image: url(spritesmith4.png);
- background-position: -1796px -1117px;
+ background-position: 0px -1915px;
width: 115px;
height: 47px;
}
.promo_pastel_skin {
background-image: url(spritesmith4.png);
- background-position: -1704px 0px;
+ background-position: -342px -1772px;
width: 330px;
height: 83px;
}
.customize-option.promo_pastel_skin {
background-image: url(spritesmith4.png);
- background-position: -1729px -15px;
+ background-position: -367px -1787px;
+ width: 60px;
+ height: 60px;
+}
+.promo_pet_skins {
+ background-image: url(spritesmith4.png);
+ background-position: -1245px -857px;
+ width: 140px;
+ height: 147px;
+}
+.customize-option.promo_pet_skins {
+ background-image: url(spritesmith4.png);
+ background-position: -1270px -872px;
width: 60px;
height: 60px;
}
.promo_shimmer_hair {
background-image: url(spritesmith4.png);
- background-position: -1096px -1602px;
+ background-position: -673px -1772px;
width: 330px;
height: 83px;
}
.customize-option.promo_shimmer_hair {
background-image: url(spritesmith4.png);
- background-position: -1121px -1617px;
+ background-position: -698px -1787px;
width: 60px;
height: 60px;
}
.promo_springclasses2014 {
background-image: url(spritesmith4.png);
- background-position: -1013px -1511px;
+ background-position: 0px -1681px;
width: 288px;
height: 90px;
}
.promo_springclasses2015 {
background-image: url(spritesmith4.png);
- background-position: -339px -1602px;
+ background-position: -1274px -1590px;
width: 288px;
height: 90px;
}
.promo_updos {
background-image: url(spritesmith4.png);
- background-position: -1100px -175px;
+ background-position: -1245px -709px;
width: 156px;
height: 147px;
}
.promo_winterclasses2015 {
background-image: url(spritesmith4.png);
- background-position: 0px -1188px;
+ background-position: -1462px 0px;
width: 325px;
height: 110px;
}
.promo_winteryhair {
background-image: url(spritesmith4.png);
- background-position: -1704px -84px;
+ background-position: -1025px -811px;
width: 152px;
height: 75px;
}
.customize-option.promo_winteryhair {
background-image: url(spritesmith4.png);
- background-position: -1729px -99px;
+ background-position: -1050px -826px;
width: 60px;
height: 60px;
}
.inventory_quest_scroll_atom1 {
background-image: url(spritesmith4.png);
- background-position: -1854px -337px;
+ background-position: -1584px -1772px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_atom2 {
background-image: url(spritesmith4.png);
- background-position: -1903px -337px;
+ background-position: -1633px -1772px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_atom2_locked {
background-image: url(spritesmith4.png);
- background-position: -1952px -337px;
+ background-position: -1682px -1772px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_atom3 {
background-image: url(spritesmith4.png);
- background-position: -1704px -389px;
+ background-position: -1731px -1772px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_atom3_locked {
background-image: url(spritesmith4.png);
- background-position: -1753px -389px;
+ background-position: -1780px -1772px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_basilist {
background-image: url(spritesmith4.png);
- background-position: -1802px -389px;
+ background-position: -1829px -1772px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_bunny {
background-image: url(spritesmith4.png);
- background-position: -1851px -389px;
+ background-position: -1879px 0px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_dilatory_derby {
background-image: url(spritesmith4.png);
- background-position: -1900px -389px;
+ background-position: -1879px -52px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_egg {
background-image: url(spritesmith4.png);
- background-position: -1949px -389px;
+ background-position: -1879px -104px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_evilsanta {
background-image: url(spritesmith4.png);
- background-position: -1704px -441px;
+ background-position: -1879px -156px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_evilsanta2 {
background-image: url(spritesmith4.png);
- background-position: -1753px -441px;
+ background-position: -1879px -208px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_ghost_stag {
background-image: url(spritesmith4.png);
- background-position: -1802px -441px;
+ background-position: -1879px -260px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_goldenknight1 {
background-image: url(spritesmith4.png);
- background-position: -1851px -441px;
+ background-position: -1879px -312px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_goldenknight2 {
background-image: url(spritesmith4.png);
- background-position: -1900px -441px;
+ background-position: -1879px -364px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_goldenknight2_locked {
background-image: url(spritesmith4.png);
- background-position: -1949px -441px;
+ background-position: -1879px -416px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_goldenknight3 {
background-image: url(spritesmith4.png);
- background-position: -1704px -493px;
+ background-position: -1879px -468px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_goldenknight3_locked {
background-image: url(spritesmith4.png);
- background-position: -1753px -493px;
+ background-position: -1879px -520px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_gryphon {
background-image: url(spritesmith4.png);
- background-position: -1802px -493px;
+ background-position: -1879px -572px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_harpy {
background-image: url(spritesmith4.png);
- background-position: -1851px -493px;
+ background-position: -1879px -624px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_hedgehog {
background-image: url(spritesmith4.png);
- background-position: -1900px -493px;
+ background-position: -1879px -676px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_moonstone1 {
background-image: url(spritesmith4.png);
- background-position: -1949px -493px;
+ background-position: -1879px -728px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_moonstone2 {
background-image: url(spritesmith4.png);
- background-position: -1704px -545px;
+ background-position: -1879px -780px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_moonstone2_locked {
background-image: url(spritesmith4.png);
- background-position: -1753px -545px;
+ background-position: -1879px -832px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_moonstone3 {
background-image: url(spritesmith4.png);
- background-position: -1802px -545px;
+ background-position: -1879px -884px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_moonstone3_locked {
background-image: url(spritesmith4.png);
- background-position: -1851px -545px;
+ background-position: -1879px -936px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_octopus {
background-image: url(spritesmith4.png);
- background-position: -1900px -545px;
+ background-position: -1879px -988px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_owl {
background-image: url(spritesmith4.png);
- background-position: -1949px -545px;
+ background-position: -1879px -1040px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_penguin {
background-image: url(spritesmith4.png);
- background-position: -1704px -597px;
+ background-position: -1879px -1092px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_rat {
background-image: url(spritesmith4.png);
- background-position: -1753px -597px;
+ background-position: -1879px -1144px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_rock {
background-image: url(spritesmith4.png);
- background-position: -1802px -597px;
+ background-position: -1879px -1196px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_rooster {
background-image: url(spritesmith4.png);
- background-position: -1851px -597px;
+ background-position: -1879px -1248px;
+ width: 48px;
+ height: 51px;
+}
+.inventory_quest_scroll_sheep {
+ background-image: url(spritesmith4.png);
+ background-position: -1879px -1300px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_slime {
background-image: url(spritesmith4.png);
- background-position: -1900px -597px;
+ background-position: -1879px -1352px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_spider {
background-image: url(spritesmith4.png);
- background-position: -1949px -597px;
+ background-position: -1879px -1404px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_trex {
background-image: url(spritesmith4.png);
- background-position: -1704px -649px;
+ background-position: -1879px -1456px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_trex_undead {
background-image: url(spritesmith4.png);
- background-position: -1753px -649px;
+ background-position: -1386px -857px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_vice1 {
background-image: url(spritesmith4.png);
- background-position: -1802px -649px;
+ background-position: -1879px -1560px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_vice2 {
background-image: url(spritesmith4.png);
- background-position: -1704px -1117px;
+ background-position: -1879px -1612px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_vice2_locked {
background-image: url(spritesmith4.png);
- background-position: -1900px -649px;
+ background-position: -1879px -1664px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_vice3 {
background-image: url(spritesmith4.png);
- background-position: -1949px -649px;
+ background-position: -1879px -1716px;
width: 48px;
height: 51px;
}
.inventory_quest_scroll_vice3_locked {
background-image: url(spritesmith4.png);
- background-position: -1704px -701px;
+ background-position: -1879px -1768px;
width: 48px;
height: 51px;
}
.quest_atom1 {
background-image: url(spritesmith4.png);
- background-position: -251px -1037px;
+ background-position: 0px -1248px;
width: 250px;
height: 150px;
}
.quest_atom2 {
background-image: url(spritesmith4.png);
- background-position: -1314px 0px;
+ background-position: -996px -1248px;
width: 207px;
height: 138px;
}
.quest_atom3 {
background-image: url(spritesmith4.png);
- background-position: -622px -672px;
+ background-position: -191px -892px;
width: 216px;
height: 180px;
}
.quest_basilist {
background-image: url(spritesmith4.png);
- background-position: -1100px -323px;
+ background-position: -251px -1248px;
width: 189px;
height: 141px;
}
.quest_bunny {
background-image: url(spritesmith4.png);
- background-position: 0px -672px;
+ background-position: -1025px -437px;
width: 210px;
height: 186px;
}
.quest_dilatory {
background-image: url(spritesmith4.png);
- background-position: -660px 0px;
+ background-position: -660px -672px;
width: 219px;
height: 219px;
}
.quest_dilatory_derby {
background-image: url(spritesmith4.png);
- background-position: -660px -220px;
+ background-position: -440px -672px;
width: 219px;
height: 219px;
}
.quest_egg_plainEgg {
background-image: url(spritesmith4.png);
- background-position: -1753px -701px;
+ background-position: 0px -1863px;
width: 48px;
height: 51px;
}
.quest_evilsanta {
background-image: url(spritesmith4.png);
- background-position: -1390px -139px;
+ background-position: -660px -232px;
width: 118px;
height: 131px;
}
@@ -1446,13 +1626,13 @@
}
.quest_goldenknight1_testimony {
background-image: url(spritesmith4.png);
- background-position: -1802px -701px;
+ background-position: -49px -1863px;
width: 48px;
height: 51px;
}
.quest_goldenknight2 {
background-image: url(spritesmith4.png);
- background-position: -502px -1037px;
+ background-position: -925px -1076px;
width: 250px;
height: 150px;
}
@@ -1464,769 +1644,751 @@
}
.quest_gryphon {
background-image: url(spritesmith4.png);
- background-position: -839px -672px;
+ background-position: -1245px 0px;
width: 216px;
height: 177px;
}
.quest_harpy {
background-image: url(spritesmith4.png);
- background-position: -880px 0px;
+ background-position: -220px -672px;
width: 219px;
height: 219px;
}
.quest_hedgehog {
background-image: url(spritesmith4.png);
- background-position: -211px -672px;
+ background-position: -1025px -624px;
width: 219px;
height: 186px;
}
.quest_moonstone1_moonstone {
background-image: url(spritesmith4.png);
- background-position: -1998px -545px;
+ background-position: -1846px -1533px;
width: 30px;
height: 30px;
}
.quest_moonstone2 {
background-image: url(spritesmith4.png);
- background-position: -880px -220px;
+ background-position: -1025px 0px;
width: 219px;
height: 219px;
}
.quest_moonstone3 {
background-image: url(spritesmith4.png);
- background-position: -220px 0px;
+ background-position: 0px -232px;
width: 219px;
height: 219px;
}
.quest_octopus {
background-image: url(spritesmith4.png);
- background-position: 0px -859px;
+ background-position: -408px -892px;
width: 222px;
height: 177px;
}
.quest_owl {
background-image: url(spritesmith4.png);
- background-position: -660px -452px;
+ background-position: -220px -232px;
width: 219px;
height: 219px;
}
.quest_penguin {
background-image: url(spritesmith4.png);
- background-position: -431px -672px;
+ background-position: 0px -892px;
width: 190px;
height: 183px;
}
.quest_rat {
background-image: url(spritesmith4.png);
- background-position: -220px -452px;
+ background-position: -440px -232px;
width: 219px;
height: 219px;
}
.quest_rock {
background-image: url(spritesmith4.png);
- background-position: -880px -440px;
+ background-position: -1025px -220px;
width: 216px;
height: 216px;
}
.quest_rooster {
background-image: url(spritesmith4.png);
- background-position: -1100px 0px;
+ background-position: -1245px -534px;
width: 213px;
height: 174px;
}
+.quest_sheep {
+ background-image: url(spritesmith4.png);
+ background-position: -220px -452px;
+ width: 219px;
+ height: 219px;
+}
.quest_slime {
- background-image: url(spritesmith4.png);
- background-position: -440px -232px;
- width: 219px;
- height: 219px;
-}
-.quest_spider {
- background-image: url(spritesmith4.png);
- background-position: 0px -1037px;
- width: 250px;
- height: 150px;
-}
-.quest_stressbeast {
- background-image: url(spritesmith4.png);
- background-position: -220px -232px;
- width: 219px;
- height: 219px;
-}
-.quest_stressbeast_bailey {
- background-image: url(spritesmith4.png);
- background-position: 0px -232px;
- width: 219px;
- height: 219px;
-}
-.quest_stressbeast_guide {
background-image: url(spritesmith4.png);
background-position: -440px -452px;
width: 219px;
height: 219px;
}
+.quest_spider {
+ background-image: url(spritesmith4.png);
+ background-position: -1176px -1076px;
+ width: 250px;
+ height: 150px;
+}
+.quest_stressbeast {
+ background-image: url(spritesmith4.png);
+ background-position: -805px 0px;
+ width: 219px;
+ height: 219px;
+}
+.quest_stressbeast_bailey {
+ background-image: url(spritesmith4.png);
+ background-position: -805px -220px;
+ width: 219px;
+ height: 219px;
+}
+.quest_stressbeast_guide {
+ background-image: url(spritesmith4.png);
+ background-position: -805px -440px;
+ width: 219px;
+ height: 219px;
+}
.quest_stressbeast_stables {
background-image: url(spritesmith4.png);
- background-position: -440px 0px;
+ background-position: 0px -672px;
width: 219px;
height: 219px;
}
.quest_trex {
background-image: url(spritesmith4.png);
- background-position: -440px -859px;
+ background-position: -1245px -356px;
width: 204px;
height: 177px;
}
.quest_trex_undead {
background-image: url(spritesmith4.png);
- background-position: -223px -859px;
+ background-position: -631px -892px;
width: 216px;
height: 177px;
}
.quest_vice1 {
background-image: url(spritesmith4.png);
- background-position: -862px -859px;
+ background-position: -848px -892px;
width: 216px;
height: 177px;
}
.quest_vice2_lightCrystal {
background-image: url(spritesmith4.png);
- background-position: -1950px -1378px;
+ background-position: -157px -1915px;
width: 40px;
height: 40px;
}
.quest_vice3 {
background-image: url(spritesmith4.png);
- background-position: -645px -859px;
+ background-position: -1245px -178px;
width: 216px;
height: 177px;
}
.shop_copper {
background-image: url(spritesmith4.png);
- background-position: -1998px -624px;
+ background-position: -1837px -1455px;
width: 32px;
height: 22px;
}
.shop_eyes {
background-image: url(spritesmith4.png);
- background-position: -1745px -1419px;
+ background-position: -280px -1915px;
width: 40px;
height: 40px;
}
.shop_gold {
background-image: url(spritesmith4.png);
- background-position: -1998px -649px;
+ background-position: -1846px -1564px;
width: 32px;
height: 22px;
}
.shop_opaquePotion {
background-image: url(spritesmith4.png);
- background-position: -1827px -1419px;
+ background-position: -362px -1915px;
width: 40px;
height: 40px;
}
.shop_potion {
background-image: url(spritesmith4.png);
- background-position: -1868px -1419px;
+ background-position: -403px -1915px;
width: 40px;
height: 40px;
}
.shop_reroll {
background-image: url(spritesmith4.png);
- background-position: -1909px -1419px;
+ background-position: -444px -1915px;
width: 40px;
height: 40px;
}
.shop_shinySeed {
background-image: url(spritesmith4.png);
- background-position: -2001px -337px;
+ background-position: -1846px -1283px;
width: 32px;
height: 32px;
}
.shop_silver {
background-image: url(spritesmith4.png);
- background-position: -1998px -672px;
+ background-position: -1846px -1615px;
width: 32px;
height: 22px;
}
.shop_snowball {
background-image: url(spritesmith4.png);
- background-position: -1998px -493px;
+ background-position: -1846px -1478px;
width: 32px;
height: 32px;
}
.shop_spookDust {
background-image: url(spritesmith4.png);
- background-position: -1998px -441px;
+ background-position: -1846px -1316px;
width: 32px;
height: 32px;
}
.Pet_Egg_BearCub {
background-image: url(spritesmith4.png);
- background-position: -1851px -701px;
+ background-position: -98px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_Bunny {
background-image: url(spritesmith4.png);
- background-position: -1900px -701px;
+ background-position: -147px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_Cactus {
background-image: url(spritesmith4.png);
- background-position: -1949px -701px;
+ background-position: -196px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_Deer {
background-image: url(spritesmith4.png);
- background-position: -1704px -753px;
+ background-position: -245px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_Dragon {
background-image: url(spritesmith4.png);
- background-position: -1753px -753px;
+ background-position: -294px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_Egg {
background-image: url(spritesmith4.png);
- background-position: -1802px -753px;
+ background-position: -343px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_FlyingPig {
background-image: url(spritesmith4.png);
- background-position: -1851px -753px;
+ background-position: -392px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_Fox {
background-image: url(spritesmith4.png);
- background-position: -1900px -753px;
+ background-position: -441px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_Gryphon {
background-image: url(spritesmith4.png);
- background-position: -1949px -753px;
+ background-position: -490px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_Hedgehog {
background-image: url(spritesmith4.png);
- background-position: -1704px -805px;
+ background-position: -539px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_LionCub {
background-image: url(spritesmith4.png);
- background-position: -1753px -805px;
+ background-position: -588px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_Octopus {
background-image: url(spritesmith4.png);
- background-position: -1802px -805px;
+ background-position: -637px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_Owl {
background-image: url(spritesmith4.png);
- background-position: -1851px -805px;
+ background-position: -686px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_PandaCub {
background-image: url(spritesmith4.png);
- background-position: -1900px -805px;
+ background-position: -735px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_Parrot {
background-image: url(spritesmith4.png);
- background-position: -1949px -805px;
+ background-position: -784px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_Penguin {
background-image: url(spritesmith4.png);
- background-position: -1704px -857px;
+ background-position: -833px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_PolarBear {
background-image: url(spritesmith4.png);
- background-position: -1753px -857px;
+ background-position: -882px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_Rat {
background-image: url(spritesmith4.png);
- background-position: -1802px -857px;
+ background-position: -931px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_Rock {
background-image: url(spritesmith4.png);
- background-position: -1851px -857px;
+ background-position: -980px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_Rooster {
background-image: url(spritesmith4.png);
- background-position: -1900px -857px;
+ background-position: -1029px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_Seahorse {
background-image: url(spritesmith4.png);
- background-position: -1949px -857px;
+ background-position: -1078px -1863px;
+ width: 48px;
+ height: 51px;
+}
+.Pet_Egg_Sheep {
+ background-image: url(spritesmith4.png);
+ background-position: -1127px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_Slime {
background-image: url(spritesmith4.png);
- background-position: -1704px -909px;
+ background-position: -1176px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_Spider {
background-image: url(spritesmith4.png);
- background-position: -1753px -909px;
+ background-position: -1225px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_TRex {
background-image: url(spritesmith4.png);
- background-position: -1802px -909px;
+ background-position: -1274px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_TigerCub {
background-image: url(spritesmith4.png);
- background-position: -1851px -909px;
+ background-position: -1323px -1863px;
width: 48px;
height: 51px;
}
.Pet_Egg_Wolf {
background-image: url(spritesmith4.png);
- background-position: -1900px -909px;
+ background-position: -1372px -1863px;
width: 48px;
height: 51px;
}
.Pet_Food_Cake_Base {
background-image: url(spritesmith4.png);
- background-position: -1926px -1169px;
+ background-position: -1928px -832px;
width: 43px;
height: 43px;
}
.Pet_Food_Cake_CottonCandyBlue {
background-image: url(spritesmith4.png);
- background-position: -1839px -1169px;
+ background-position: -1928px -787px;
width: 42px;
height: 44px;
}
.Pet_Food_Cake_CottonCandyPink {
background-image: url(spritesmith4.png);
- background-position: -1912px -1117px;
+ background-position: -1928px -516px;
width: 43px;
height: 45px;
}
.Pet_Food_Cake_Desert {
background-image: url(spritesmith4.png);
- background-position: -1882px -1169px;
+ background-position: -1928px -562px;
width: 43px;
height: 44px;
}
.Pet_Food_Cake_Golden {
background-image: url(spritesmith4.png);
- background-position: -1970px -1169px;
+ background-position: -1928px -876px;
width: 43px;
height: 42px;
}
.Pet_Food_Cake_Red {
background-image: url(spritesmith4.png);
- background-position: -1956px -1117px;
+ background-position: -1928px -607px;
width: 43px;
height: 44px;
}
.Pet_Food_Cake_Shade {
background-image: url(spritesmith4.png);
- background-position: -1795px -1169px;
+ background-position: -1928px -742px;
width: 43px;
height: 44px;
}
.Pet_Food_Cake_Skeleton {
background-image: url(spritesmith4.png);
- background-position: -1753px -1117px;
+ background-position: -1928px -468px;
width: 42px;
height: 47px;
}
.Pet_Food_Cake_White {
background-image: url(spritesmith4.png);
- background-position: -1750px -1169px;
+ background-position: -1928px -697px;
width: 44px;
height: 44px;
}
.Pet_Food_Cake_Zombie {
background-image: url(spritesmith4.png);
- background-position: -1704px -1169px;
+ background-position: -1928px -652px;
width: 45px;
height: 44px;
}
.Pet_Food_Candy_Base {
background-image: url(spritesmith4.png);
- background-position: -1851px -1013px;
+ background-position: -1928px 0px;
width: 48px;
height: 51px;
}
.Pet_Food_Candy_CottonCandyBlue {
background-image: url(spritesmith4.png);
- background-position: -1900px -1013px;
+ background-position: -1928px -52px;
width: 48px;
height: 51px;
}
.Pet_Food_Candy_CottonCandyPink {
background-image: url(spritesmith4.png);
- background-position: -1949px -1013px;
+ background-position: -1928px -104px;
width: 48px;
height: 51px;
}
.Pet_Food_Candy_Desert {
background-image: url(spritesmith4.png);
- background-position: -1704px -1065px;
+ background-position: -1928px -156px;
width: 48px;
height: 51px;
}
.Pet_Food_Candy_Golden {
background-image: url(spritesmith4.png);
- background-position: -1753px -1065px;
+ background-position: -1928px -208px;
width: 48px;
height: 51px;
}
.Pet_Food_Candy_Red {
background-image: url(spritesmith4.png);
- background-position: -1802px -1065px;
+ background-position: -1928px -260px;
width: 48px;
height: 51px;
}
.Pet_Food_Candy_Shade {
background-image: url(spritesmith4.png);
- background-position: -1851px -1065px;
+ background-position: -1928px -312px;
width: 48px;
height: 51px;
}
.Pet_Food_Candy_Skeleton {
background-image: url(spritesmith4.png);
- background-position: -1900px -1065px;
+ background-position: -1928px -364px;
width: 48px;
height: 51px;
}
.Pet_Food_Candy_White {
background-image: url(spritesmith4.png);
- background-position: -1949px -1065px;
+ background-position: -1928px -416px;
width: 48px;
height: 51px;
}
.Pet_Food_Candy_Zombie {
background-image: url(spritesmith4.png);
- background-position: -1802px -1013px;
+ background-position: -1862px -1863px;
width: 48px;
height: 51px;
}
.Pet_Food_Chocolate {
background-image: url(spritesmith4.png);
- background-position: -1753px -1013px;
+ background-position: -1813px -1863px;
width: 48px;
height: 51px;
}
.Pet_Food_CottonCandyBlue {
background-image: url(spritesmith4.png);
- background-position: -1704px -1013px;
+ background-position: -1764px -1863px;
width: 48px;
height: 51px;
}
.Pet_Food_CottonCandyPink {
background-image: url(spritesmith4.png);
- background-position: -1949px -961px;
+ background-position: -1715px -1863px;
width: 48px;
height: 51px;
}
.Pet_Food_Fish {
background-image: url(spritesmith4.png);
- background-position: -1900px -961px;
+ background-position: -1666px -1863px;
width: 48px;
height: 51px;
}
.Pet_Food_Honey {
background-image: url(spritesmith4.png);
- background-position: -1851px -961px;
+ background-position: -1617px -1863px;
width: 48px;
height: 51px;
}
.Pet_Food_Meat {
background-image: url(spritesmith4.png);
- background-position: -1802px -961px;
+ background-position: -1568px -1863px;
width: 48px;
height: 51px;
}
.Pet_Food_Milk {
background-image: url(spritesmith4.png);
- background-position: -1753px -961px;
+ background-position: -1519px -1863px;
width: 48px;
height: 51px;
}
.Pet_Food_Potatoe {
background-image: url(spritesmith4.png);
- background-position: -1704px -961px;
+ background-position: -1470px -1863px;
width: 48px;
height: 51px;
}
.Pet_Food_RottenMeat {
background-image: url(spritesmith4.png);
- background-position: -1949px -909px;
+ background-position: -1421px -1863px;
width: 48px;
height: 51px;
}
.Pet_Food_Saddle {
background-image: url(spritesmith4.png);
- background-position: -1921px -282px;
+ background-position: -1400px -1300px;
width: 48px;
height: 51px;
}
.Pet_Food_Strawberry {
background-image: url(spritesmith4.png);
- background-position: -1753px -337px;
+ background-position: -1879px -1508px;
width: 48px;
height: 51px;
}
.Mount_Body_BearCub-Base {
background-image: url(spritesmith4.png);
- background-position: -848px -1299px;
+ background-position: -1568px -535px;
width: 105px;
height: 105px;
}
.Mount_Body_BearCub-CottonCandyBlue {
background-image: url(spritesmith4.png);
- background-position: 0px -1299px;
+ background-position: -1462px -535px;
width: 105px;
height: 105px;
}
.Mount_Body_BearCub-CottonCandyPink {
background-image: url(spritesmith4.png);
- background-position: -1060px -1299px;
+ background-position: -1674px -429px;
width: 105px;
height: 105px;
}
.Mount_Body_BearCub-Desert {
background-image: url(spritesmith4.png);
- background-position: -1166px -1299px;
+ background-position: -1568px -429px;
width: 105px;
height: 105px;
}
.Mount_Body_BearCub-Golden {
background-image: url(spritesmith4.png);
- background-position: -1272px -1299px;
+ background-position: -1462px -429px;
width: 105px;
height: 105px;
}
.Mount_Body_BearCub-Polar {
background-image: url(spritesmith4.png);
- background-position: -1314px -520px;
+ background-position: -1674px -323px;
width: 105px;
height: 105px;
}
.Mount_Body_BearCub-Red {
background-image: url(spritesmith4.png);
- background-position: -1314px -626px;
+ background-position: -1568px -323px;
width: 105px;
height: 105px;
}
.Mount_Body_BearCub-Shade {
background-image: url(spritesmith4.png);
- background-position: -1314px -732px;
+ background-position: -1462px -323px;
width: 105px;
height: 105px;
}
.Mount_Body_BearCub-Skeleton {
background-image: url(spritesmith4.png);
- background-position: -1314px -838px;
+ background-position: -1674px -217px;
width: 105px;
height: 105px;
}
.Mount_Body_BearCub-White {
background-image: url(spritesmith4.png);
- background-position: -1314px -944px;
+ background-position: -1568px -217px;
width: 105px;
height: 105px;
}
.Mount_Body_BearCub-Zombie {
background-image: url(spritesmith4.png);
- background-position: -1314px -1050px;
+ background-position: -1462px -217px;
width: 105px;
height: 105px;
}
.Mount_Body_Bunny-Base {
background-image: url(spritesmith4.png);
- background-position: -1112px -1037px;
+ background-position: -1674px -111px;
width: 105px;
height: 105px;
}
.Mount_Body_Bunny-CottonCandyBlue {
background-image: url(spritesmith4.png);
- background-position: -326px -1188px;
+ background-position: -1568px -111px;
width: 105px;
height: 105px;
}
.Mount_Body_Bunny-CottonCandyPink {
background-image: url(spritesmith4.png);
- background-position: -432px -1188px;
+ background-position: -1462px -111px;
width: 105px;
height: 105px;
}
.Mount_Body_Bunny-Desert {
background-image: url(spritesmith4.png);
- background-position: -538px -1188px;
+ background-position: -1674px -1171px;
width: 105px;
height: 105px;
}
.Mount_Body_Bunny-Golden {
background-image: url(spritesmith4.png);
- background-position: -644px -1188px;
+ background-position: -1568px -1171px;
width: 105px;
height: 105px;
}
.Mount_Body_Bunny-Red {
background-image: url(spritesmith4.png);
- background-position: -750px -1188px;
+ background-position: -1462px -1171px;
width: 105px;
height: 105px;
}
.Mount_Body_Bunny-Shade {
background-image: url(spritesmith4.png);
- background-position: -856px -1188px;
+ background-position: -1674px -1065px;
width: 105px;
height: 105px;
}
.Mount_Body_Bunny-Skeleton {
background-image: url(spritesmith4.png);
- background-position: -962px -1188px;
+ background-position: -1568px -1065px;
width: 105px;
height: 105px;
}
.Mount_Body_Bunny-White {
background-image: url(spritesmith4.png);
- background-position: -1068px -1188px;
+ background-position: -1462px -1065px;
width: 105px;
height: 105px;
}
.Mount_Body_Bunny-Zombie {
background-image: url(spritesmith4.png);
- background-position: -1174px -1188px;
+ background-position: -1674px -959px;
width: 105px;
height: 105px;
}
.Mount_Body_Cactus-Base {
background-image: url(spritesmith4.png);
- background-position: -1280px -1188px;
+ background-position: -1674px -641px;
width: 105px;
height: 105px;
}
.Mount_Body_Cactus-CottonCandyBlue {
background-image: url(spritesmith4.png);
- background-position: -1386px -1188px;
+ background-position: -1568px -641px;
width: 105px;
height: 105px;
}
.Mount_Body_Cactus-CottonCandyPink {
background-image: url(spritesmith4.png);
- background-position: -106px -1299px;
+ background-position: -1462px -641px;
width: 105px;
height: 105px;
}
.Mount_Body_Cactus-Desert {
background-image: url(spritesmith4.png);
- background-position: -212px -1299px;
+ background-position: -1674px -535px;
width: 105px;
height: 105px;
}
.Mount_Body_Cactus-Golden {
background-image: url(spritesmith4.png);
- background-position: -318px -1299px;
+ background-position: -1568px -959px;
width: 105px;
height: 105px;
}
.Mount_Body_Cactus-Red {
background-image: url(spritesmith4.png);
- background-position: -424px -1299px;
+ background-position: -1462px -959px;
width: 105px;
height: 105px;
}
.Mount_Body_Cactus-Shade {
background-image: url(spritesmith4.png);
- background-position: -530px -1299px;
+ background-position: -1674px -853px;
width: 105px;
height: 105px;
}
.Mount_Body_Cactus-Skeleton {
background-image: url(spritesmith4.png);
- background-position: -636px -1299px;
+ background-position: -1568px -853px;
width: 105px;
height: 105px;
}
.Mount_Body_Cactus-White {
background-image: url(spritesmith4.png);
- background-position: -742px -1299px;
+ background-position: -1462px -747px;
width: 105px;
height: 105px;
}
.Mount_Body_Cactus-Zombie {
background-image: url(spritesmith4.png);
- background-position: -954px -1299px;
+ background-position: -1462px -853px;
width: 105px;
height: 105px;
}
.Mount_Body_Deer-Base {
background-image: url(spritesmith4.png);
- background-position: -212px -1405px;
+ background-position: -1674px -747px;
width: 105px;
height: 105px;
}
.Mount_Body_Deer-CottonCandyBlue {
background-image: url(spritesmith4.png);
- background-position: -318px -1405px;
- width: 105px;
- height: 105px;
-}
-.Mount_Body_Deer-CottonCandyPink {
- background-image: url(spritesmith4.png);
- background-position: -106px -1405px;
- width: 105px;
- height: 105px;
-}
-.Mount_Body_Deer-Desert {
- background-image: url(spritesmith4.png);
- background-position: 0px -1405px;
- width: 105px;
- height: 105px;
-}
-.Mount_Body_Deer-Golden {
- background-image: url(spritesmith4.png);
- background-position: -1378px -1299px;
- width: 105px;
- height: 105px;
-}
-.Mount_Body_Deer-Red {
- background-image: url(spritesmith4.png);
- background-position: -1399px -399px;
- width: 105px;
- height: 105px;
-}
-.Mount_Body_Deer-Shade {
- background-image: url(spritesmith4.png);
- background-position: -424px -1405px;
+ background-position: -1568px -747px;
width: 105px;
height: 105px;
}
diff --git a/common/dist/sprites/spritesmith4.png b/common/dist/sprites/spritesmith4.png
index 925395e9b9..35e2cd0476 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 97f40b180f..f8ad1a7bb2 100644
--- a/common/dist/sprites/spritesmith5.css
+++ b/common/dist/sprites/spritesmith5.css
@@ -1,1122 +1,1212 @@
+.Mount_Body_Deer-CottonCandyPink {
+ background-image: url(spritesmith5.png);
+ background-position: -998px -742px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Body_Deer-Desert {
+ background-image: url(spritesmith5.png);
+ background-position: -1528px -742px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Body_Deer-Golden {
+ background-image: url(spritesmith5.png);
+ background-position: -106px -1516px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Body_Deer-Red {
+ background-image: url(spritesmith5.png);
+ background-position: -212px -1516px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Body_Deer-Shade {
+ background-image: url(spritesmith5.png);
+ background-position: -318px -1516px;
+ width: 105px;
+ height: 105px;
+}
.Mount_Body_Deer-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -968px -530px;
+ background-position: -424px -1516px;
width: 105px;
height: 105px;
}
.Mount_Body_Deer-White {
background-image: url(spritesmith5.png);
- background-position: -1498px -530px;
+ background-position: -530px -1516px;
width: 105px;
height: 105px;
}
.Mount_Body_Deer-Zombie {
background-image: url(spritesmith5.png);
- background-position: -1498px -742px;
+ background-position: -636px -1516px;
width: 105px;
height: 105px;
}
.Mount_Body_Dragon-Base {
background-image: url(spritesmith5.png);
- background-position: -1498px -848px;
+ background-position: -742px -1516px;
width: 105px;
height: 105px;
}
.Mount_Body_Dragon-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -1498px -954px;
+ background-position: -848px -1516px;
width: 105px;
height: 105px;
}
.Mount_Body_Dragon-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -1498px -1060px;
+ background-position: -954px -1516px;
width: 105px;
height: 105px;
}
.Mount_Body_Dragon-Desert {
background-image: url(spritesmith5.png);
- background-position: -1498px -1166px;
+ background-position: -1060px -1516px;
width: 105px;
height: 105px;
}
.Mount_Body_Dragon-Golden {
background-image: url(spritesmith5.png);
- background-position: -1498px -1272px;
+ background-position: -1634px -742px;
width: 105px;
height: 105px;
}
.Mount_Body_Dragon-Red {
background-image: url(spritesmith5.png);
- background-position: 0px -1468px;
+ background-position: -1634px -848px;
width: 105px;
height: 105px;
}
.Mount_Body_Dragon-Shade {
background-image: url(spritesmith5.png);
- background-position: -106px -1468px;
+ background-position: -1634px -954px;
width: 105px;
height: 105px;
}
.Mount_Body_Dragon-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -212px -1468px;
+ background-position: -1634px -1060px;
width: 105px;
height: 105px;
}
.Mount_Body_Dragon-White {
background-image: url(spritesmith5.png);
- background-position: -318px -1468px;
+ background-position: -1634px -1166px;
width: 105px;
height: 105px;
}
.Mount_Body_Dragon-Zombie {
background-image: url(spritesmith5.png);
- background-position: -954px -1892px;
+ background-position: -1634px -1272px;
width: 105px;
height: 105px;
}
.Mount_Body_Egg-Base {
background-image: url(spritesmith5.png);
- background-position: -106px -408px;
+ background-position: -1634px -1378px;
width: 105px;
height: 105px;
}
.Mount_Body_Egg-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -212px -408px;
+ background-position: -1634px -1484px;
width: 105px;
height: 105px;
}
.Mount_Body_Egg-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -318px -408px;
+ background-position: 0px -1622px;
width: 105px;
height: 105px;
}
.Mount_Body_Egg-Desert {
background-image: url(spritesmith5.png);
- background-position: -424px -408px;
+ background-position: -106px -1622px;
width: 105px;
height: 105px;
}
.Mount_Body_Egg-Golden {
background-image: url(spritesmith5.png);
- background-position: -544px 0px;
+ background-position: -954px -1940px;
width: 105px;
height: 105px;
}
.Mount_Body_Egg-Red {
background-image: url(spritesmith5.png);
- background-position: -544px -106px;
+ background-position: -1272px -1940px;
width: 105px;
height: 105px;
}
.Mount_Body_Egg-Shade {
background-image: url(spritesmith5.png);
- background-position: -544px -212px;
+ background-position: -424px -544px;
width: 105px;
height: 105px;
}
.Mount_Body_Egg-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -544px -318px;
+ background-position: -530px -544px;
width: 105px;
height: 105px;
}
.Mount_Body_Egg-White {
background-image: url(spritesmith5.png);
- background-position: 0px -514px;
+ background-position: -680px 0px;
width: 105px;
height: 105px;
}
.Mount_Body_Egg-Zombie {
background-image: url(spritesmith5.png);
- background-position: -106px -514px;
+ background-position: -680px -106px;
width: 105px;
height: 105px;
}
.Mount_Body_FlyingPig-Base {
background-image: url(spritesmith5.png);
- background-position: -212px -514px;
+ background-position: -680px -212px;
width: 105px;
height: 105px;
}
.Mount_Body_FlyingPig-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -318px -514px;
+ background-position: -680px -318px;
width: 105px;
height: 105px;
}
.Mount_Body_FlyingPig-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -424px -514px;
+ background-position: -680px -424px;
width: 105px;
height: 105px;
}
.Mount_Body_FlyingPig-Desert {
background-image: url(spritesmith5.png);
- background-position: -530px -514px;
+ background-position: -680px -530px;
width: 105px;
height: 105px;
}
.Mount_Body_FlyingPig-Golden {
background-image: url(spritesmith5.png);
- background-position: -650px 0px;
+ background-position: 0px -668px;
width: 105px;
height: 105px;
}
.Mount_Body_FlyingPig-Red {
background-image: url(spritesmith5.png);
- background-position: -650px -106px;
+ background-position: -106px -668px;
width: 105px;
height: 105px;
}
.Mount_Body_FlyingPig-Shade {
background-image: url(spritesmith5.png);
- background-position: -650px -212px;
+ background-position: -212px -668px;
width: 105px;
height: 105px;
}
.Mount_Body_FlyingPig-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -650px -318px;
+ background-position: -318px -668px;
width: 105px;
height: 105px;
}
.Mount_Body_FlyingPig-White {
background-image: url(spritesmith5.png);
- background-position: -650px -424px;
+ background-position: -424px -668px;
width: 105px;
height: 105px;
}
.Mount_Body_FlyingPig-Zombie {
background-image: url(spritesmith5.png);
- background-position: 0px -620px;
+ background-position: -530px -668px;
width: 105px;
height: 105px;
}
.Mount_Body_Fox-Base {
background-image: url(spritesmith5.png);
- background-position: -106px -620px;
+ background-position: -636px -668px;
width: 105px;
height: 105px;
}
.Mount_Body_Fox-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -212px -620px;
+ background-position: -786px 0px;
width: 105px;
height: 105px;
}
.Mount_Body_Fox-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -318px -620px;
+ background-position: -786px -106px;
width: 105px;
height: 105px;
}
.Mount_Body_Fox-Desert {
background-image: url(spritesmith5.png);
- background-position: -424px -620px;
+ background-position: -786px -212px;
width: 105px;
height: 105px;
}
.Mount_Body_Fox-Golden {
background-image: url(spritesmith5.png);
- background-position: -530px -620px;
+ background-position: -786px -318px;
width: 105px;
height: 105px;
}
.Mount_Body_Fox-Red {
background-image: url(spritesmith5.png);
- background-position: -636px -620px;
+ background-position: -786px -424px;
width: 105px;
height: 105px;
}
.Mount_Body_Fox-Shade {
background-image: url(spritesmith5.png);
- background-position: -756px 0px;
+ background-position: -786px -530px;
width: 105px;
height: 105px;
}
.Mount_Body_Fox-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -756px -106px;
+ background-position: -786px -636px;
width: 105px;
height: 105px;
}
.Mount_Body_Fox-White {
background-image: url(spritesmith5.png);
- background-position: -756px -212px;
+ background-position: 0px -774px;
width: 105px;
height: 105px;
}
.Mount_Body_Fox-Zombie {
background-image: url(spritesmith5.png);
- background-position: -756px -318px;
+ background-position: -106px -774px;
width: 105px;
height: 105px;
}
.Mount_Body_Gryphon-Base {
background-image: url(spritesmith5.png);
- background-position: -756px -424px;
+ background-position: -212px -774px;
width: 105px;
height: 105px;
}
.Mount_Body_Gryphon-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -756px -530px;
+ background-position: -318px -774px;
width: 105px;
height: 105px;
}
.Mount_Body_Gryphon-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: 0px -726px;
+ background-position: -424px -774px;
width: 105px;
height: 105px;
}
.Mount_Body_Gryphon-Desert {
background-image: url(spritesmith5.png);
- background-position: -106px -726px;
+ background-position: -530px -774px;
width: 105px;
height: 105px;
}
.Mount_Body_Gryphon-Golden {
background-image: url(spritesmith5.png);
- background-position: -212px -726px;
+ background-position: -636px -774px;
width: 105px;
height: 105px;
}
.Mount_Body_Gryphon-Red {
background-image: url(spritesmith5.png);
- background-position: -318px -726px;
+ background-position: -742px -774px;
width: 105px;
height: 105px;
}
.Mount_Body_Gryphon-Shade {
background-image: url(spritesmith5.png);
- background-position: -424px -726px;
+ background-position: -892px 0px;
width: 105px;
height: 105px;
}
.Mount_Body_Gryphon-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -530px -726px;
+ background-position: -892px -106px;
width: 105px;
height: 105px;
}
.Mount_Body_Gryphon-White {
background-image: url(spritesmith5.png);
- background-position: -636px -726px;
+ background-position: -892px -212px;
width: 105px;
height: 105px;
}
.Mount_Body_Gryphon-Zombie {
background-image: url(spritesmith5.png);
- background-position: -742px -726px;
+ background-position: -892px -318px;
width: 105px;
height: 105px;
}
.Mount_Body_Hedgehog-Base {
background-image: url(spritesmith5.png);
- background-position: -862px 0px;
+ background-position: -892px -424px;
width: 105px;
height: 105px;
}
.Mount_Body_Hedgehog-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -862px -106px;
+ background-position: -892px -530px;
width: 105px;
height: 105px;
}
.Mount_Body_Hedgehog-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -862px -212px;
+ background-position: -892px -636px;
width: 105px;
height: 105px;
}
.Mount_Body_Hedgehog-Desert {
background-image: url(spritesmith5.png);
- background-position: -862px -318px;
+ background-position: -892px -742px;
width: 105px;
height: 105px;
}
.Mount_Body_Hedgehog-Golden {
background-image: url(spritesmith5.png);
- background-position: -862px -424px;
+ background-position: 0px -880px;
width: 105px;
height: 105px;
}
.Mount_Body_Hedgehog-Red {
background-image: url(spritesmith5.png);
- background-position: -862px -530px;
+ background-position: -106px -880px;
width: 105px;
height: 105px;
}
.Mount_Body_Hedgehog-Shade {
background-image: url(spritesmith5.png);
- background-position: -862px -636px;
+ background-position: -212px -880px;
width: 105px;
height: 105px;
}
.Mount_Body_Hedgehog-Skeleton {
background-image: url(spritesmith5.png);
- background-position: 0px -832px;
+ background-position: -318px -880px;
width: 105px;
height: 105px;
}
.Mount_Body_Hedgehog-White {
background-image: url(spritesmith5.png);
- background-position: -106px -832px;
+ background-position: -424px -880px;
width: 105px;
height: 105px;
}
.Mount_Body_Hedgehog-Zombie {
background-image: url(spritesmith5.png);
- background-position: -212px -832px;
+ background-position: -530px -880px;
width: 105px;
height: 105px;
}
.Mount_Body_LionCub-Base {
background-image: url(spritesmith5.png);
- background-position: -318px -832px;
+ background-position: -636px -880px;
width: 105px;
height: 105px;
}
.Mount_Body_LionCub-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -424px -832px;
+ background-position: -742px -880px;
width: 105px;
height: 105px;
}
.Mount_Body_LionCub-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -530px -832px;
+ background-position: -848px -880px;
width: 105px;
height: 105px;
}
.Mount_Body_LionCub-Desert {
background-image: url(spritesmith5.png);
- background-position: -636px -832px;
+ background-position: -998px 0px;
width: 105px;
height: 105px;
}
.Mount_Body_LionCub-Ethereal {
background-image: url(spritesmith5.png);
- background-position: -742px -832px;
+ background-position: -998px -106px;
width: 105px;
height: 105px;
}
.Mount_Body_LionCub-Golden {
background-image: url(spritesmith5.png);
- background-position: -848px -832px;
+ background-position: -998px -212px;
width: 105px;
height: 105px;
}
.Mount_Body_LionCub-Red {
background-image: url(spritesmith5.png);
- background-position: -968px 0px;
+ background-position: -998px -318px;
width: 105px;
height: 105px;
}
.Mount_Body_LionCub-Shade {
background-image: url(spritesmith5.png);
- background-position: -968px -106px;
+ background-position: -998px -424px;
width: 105px;
height: 105px;
}
.Mount_Body_LionCub-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -968px -212px;
- width: 105px;
+ background-position: 0px -986px;
+ width: 111px;
height: 105px;
}
.Mount_Body_LionCub-White {
background-image: url(spritesmith5.png);
- background-position: -968px -318px;
+ background-position: -998px -530px;
width: 105px;
height: 105px;
}
.Mount_Body_LionCub-Zombie {
background-image: url(spritesmith5.png);
- background-position: -968px -424px;
+ background-position: -998px -636px;
width: 105px;
height: 105px;
}
.Mount_Body_Mammoth-Base {
background-image: url(spritesmith5.png);
- background-position: -408px -136px;
+ background-position: 0px -544px;
width: 105px;
height: 123px;
}
.Mount_Body_MantisShrimp-Base {
background-image: url(spritesmith5.png);
- background-position: 0px -938px;
+ background-position: -112px -986px;
width: 108px;
height: 105px;
}
.Mount_Body_Octopus-Base {
background-image: url(spritesmith5.png);
- background-position: -968px -636px;
+ background-position: -998px -848px;
width: 105px;
height: 105px;
}
.Mount_Body_Octopus-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -968px -742px;
+ background-position: -221px -986px;
width: 105px;
height: 105px;
}
.Mount_Body_Octopus-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -109px -938px;
+ background-position: -327px -986px;
width: 105px;
height: 105px;
}
.Mount_Body_Octopus-Desert {
background-image: url(spritesmith5.png);
- background-position: -215px -938px;
+ background-position: -433px -986px;
width: 105px;
height: 105px;
}
.Mount_Body_Octopus-Golden {
background-image: url(spritesmith5.png);
- background-position: -321px -938px;
+ background-position: -539px -986px;
width: 105px;
height: 105px;
}
.Mount_Body_Octopus-Red {
background-image: url(spritesmith5.png);
- background-position: -427px -938px;
+ background-position: -645px -986px;
width: 105px;
height: 105px;
}
.Mount_Body_Octopus-Shade {
background-image: url(spritesmith5.png);
- background-position: -533px -938px;
+ background-position: -751px -986px;
width: 105px;
height: 105px;
}
.Mount_Body_Octopus-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -639px -938px;
+ background-position: -857px -986px;
width: 105px;
height: 105px;
}
.Mount_Body_Octopus-White {
background-image: url(spritesmith5.png);
- background-position: -745px -938px;
+ background-position: -963px -986px;
width: 105px;
height: 105px;
}
.Mount_Body_Octopus-Zombie {
background-image: url(spritesmith5.png);
- background-position: -851px -938px;
+ background-position: -1104px 0px;
width: 105px;
height: 105px;
}
.Mount_Body_Owl-Base {
background-image: url(spritesmith5.png);
- background-position: -957px -938px;
+ background-position: -1104px -106px;
width: 105px;
height: 105px;
}
.Mount_Body_Owl-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -1074px 0px;
+ background-position: -1104px -212px;
width: 105px;
height: 105px;
}
.Mount_Body_Owl-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -1074px -106px;
+ background-position: -1104px -318px;
width: 105px;
height: 105px;
}
.Mount_Body_Owl-Desert {
background-image: url(spritesmith5.png);
- background-position: -1074px -212px;
+ background-position: -1104px -424px;
width: 105px;
height: 105px;
}
.Mount_Body_Owl-Golden {
background-image: url(spritesmith5.png);
- background-position: -1074px -318px;
+ background-position: -1104px -530px;
width: 105px;
height: 105px;
}
.Mount_Body_Owl-Red {
background-image: url(spritesmith5.png);
- background-position: -1074px -424px;
+ background-position: -1104px -636px;
width: 105px;
height: 105px;
}
.Mount_Body_Owl-Shade {
background-image: url(spritesmith5.png);
- background-position: -1074px -530px;
+ background-position: -1104px -742px;
width: 105px;
height: 105px;
}
.Mount_Body_Owl-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -1074px -636px;
+ background-position: -1104px -848px;
width: 105px;
height: 105px;
}
.Mount_Body_Owl-White {
background-image: url(spritesmith5.png);
- background-position: -1074px -742px;
+ background-position: -1104px -954px;
width: 105px;
height: 105px;
}
.Mount_Body_Owl-Zombie {
background-image: url(spritesmith5.png);
- background-position: -1074px -848px;
+ background-position: 0px -1092px;
width: 105px;
height: 105px;
}
.Mount_Body_PandaCub-Base {
background-image: url(spritesmith5.png);
- background-position: 0px -1044px;
+ background-position: -106px -1092px;
width: 105px;
height: 105px;
}
.Mount_Body_PandaCub-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -106px -1044px;
+ background-position: -212px -1092px;
width: 105px;
height: 105px;
}
.Mount_Body_PandaCub-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -212px -1044px;
+ background-position: -318px -1092px;
width: 105px;
height: 105px;
}
.Mount_Body_PandaCub-Desert {
background-image: url(spritesmith5.png);
- background-position: -318px -1044px;
+ background-position: -424px -1092px;
width: 105px;
height: 105px;
}
.Mount_Body_PandaCub-Golden {
background-image: url(spritesmith5.png);
- background-position: -424px -1044px;
+ background-position: -530px -1092px;
width: 105px;
height: 105px;
}
.Mount_Body_PandaCub-Red {
background-image: url(spritesmith5.png);
- background-position: -530px -1044px;
+ background-position: -636px -1092px;
width: 105px;
height: 105px;
}
.Mount_Body_PandaCub-Shade {
background-image: url(spritesmith5.png);
- background-position: -636px -1044px;
+ background-position: -742px -1092px;
width: 105px;
height: 105px;
}
.Mount_Body_PandaCub-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -742px -1044px;
+ background-position: -848px -1092px;
width: 105px;
height: 105px;
}
.Mount_Body_PandaCub-White {
background-image: url(spritesmith5.png);
- background-position: -848px -1044px;
+ background-position: -954px -1092px;
width: 105px;
height: 105px;
}
.Mount_Body_PandaCub-Zombie {
background-image: url(spritesmith5.png);
- background-position: -954px -1044px;
+ background-position: -1060px -1092px;
width: 105px;
height: 105px;
}
.Mount_Body_Parrot-Base {
background-image: url(spritesmith5.png);
- background-position: -1060px -1044px;
+ background-position: -1210px 0px;
width: 105px;
height: 105px;
}
.Mount_Body_Parrot-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -1180px 0px;
+ background-position: -1210px -106px;
width: 105px;
height: 105px;
}
.Mount_Body_Parrot-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -1180px -106px;
+ background-position: -1210px -212px;
width: 105px;
height: 105px;
}
.Mount_Body_Parrot-Desert {
background-image: url(spritesmith5.png);
- background-position: -1180px -212px;
+ background-position: -1210px -318px;
width: 105px;
height: 105px;
}
.Mount_Body_Parrot-Golden {
background-image: url(spritesmith5.png);
- background-position: -1180px -318px;
+ background-position: -1210px -424px;
width: 105px;
height: 105px;
}
.Mount_Body_Parrot-Red {
background-image: url(spritesmith5.png);
- background-position: -1180px -424px;
+ background-position: -1210px -530px;
width: 105px;
height: 105px;
}
.Mount_Body_Parrot-Shade {
background-image: url(spritesmith5.png);
- background-position: -1180px -530px;
+ background-position: -1210px -636px;
width: 105px;
height: 105px;
}
.Mount_Body_Parrot-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -1180px -636px;
+ background-position: -1210px -742px;
width: 105px;
height: 105px;
}
.Mount_Body_Parrot-White {
background-image: url(spritesmith5.png);
- background-position: -1180px -742px;
+ background-position: -1210px -848px;
width: 105px;
height: 105px;
}
.Mount_Body_Parrot-Zombie {
background-image: url(spritesmith5.png);
- background-position: -1180px -848px;
+ background-position: -1210px -954px;
width: 105px;
height: 105px;
}
.Mount_Body_Penguin-Base {
background-image: url(spritesmith5.png);
- background-position: -1180px -954px;
+ background-position: -1210px -1060px;
width: 105px;
height: 105px;
}
.Mount_Body_Penguin-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: 0px -1150px;
+ background-position: 0px -1198px;
width: 105px;
height: 105px;
}
.Mount_Body_Penguin-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -106px -1150px;
+ background-position: -106px -1198px;
width: 105px;
height: 105px;
}
.Mount_Body_Penguin-Desert {
background-image: url(spritesmith5.png);
- background-position: -212px -1150px;
+ background-position: -212px -1198px;
width: 105px;
height: 105px;
}
.Mount_Body_Penguin-Golden {
background-image: url(spritesmith5.png);
- background-position: -318px -1150px;
+ background-position: -318px -1198px;
width: 105px;
height: 105px;
}
.Mount_Body_Penguin-Red {
background-image: url(spritesmith5.png);
- background-position: -424px -1150px;
+ background-position: -424px -1198px;
width: 105px;
height: 105px;
}
.Mount_Body_Penguin-Shade {
background-image: url(spritesmith5.png);
- background-position: -530px -1150px;
+ background-position: -530px -1198px;
width: 105px;
height: 105px;
}
.Mount_Body_Penguin-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -636px -1150px;
+ background-position: -636px -1198px;
width: 105px;
height: 105px;
}
.Mount_Body_Penguin-White {
background-image: url(spritesmith5.png);
- background-position: -742px -1150px;
+ background-position: -742px -1198px;
width: 105px;
height: 105px;
}
.Mount_Body_Penguin-Zombie {
background-image: url(spritesmith5.png);
- background-position: -848px -1150px;
+ background-position: -848px -1198px;
width: 105px;
height: 105px;
}
.Mount_Body_Rat-Base {
background-image: url(spritesmith5.png);
- background-position: -954px -1150px;
+ background-position: -954px -1198px;
width: 105px;
height: 105px;
}
.Mount_Body_Rat-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -1060px -1150px;
+ background-position: -1060px -1198px;
width: 105px;
height: 105px;
}
.Mount_Body_Rat-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -1166px -1150px;
+ background-position: -1166px -1198px;
width: 105px;
height: 105px;
}
.Mount_Body_Rat-Desert {
background-image: url(spritesmith5.png);
- background-position: -1286px 0px;
+ background-position: -1316px 0px;
width: 105px;
height: 105px;
}
.Mount_Body_Rat-Golden {
background-image: url(spritesmith5.png);
- background-position: -1286px -106px;
+ background-position: -1316px -106px;
width: 105px;
height: 105px;
}
.Mount_Body_Rat-Red {
background-image: url(spritesmith5.png);
- background-position: -1286px -212px;
+ background-position: -1316px -212px;
width: 105px;
height: 105px;
}
.Mount_Body_Rat-Shade {
background-image: url(spritesmith5.png);
- background-position: -1286px -318px;
+ background-position: -1316px -318px;
width: 105px;
height: 105px;
}
.Mount_Body_Rat-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -1286px -424px;
+ background-position: -1316px -424px;
width: 105px;
height: 105px;
}
.Mount_Body_Rat-White {
background-image: url(spritesmith5.png);
- background-position: -1286px -530px;
+ background-position: -1316px -530px;
width: 105px;
height: 105px;
}
.Mount_Body_Rat-Zombie {
background-image: url(spritesmith5.png);
- background-position: -1286px -636px;
+ background-position: -1316px -636px;
width: 105px;
height: 105px;
}
.Mount_Body_Rock-Base {
background-image: url(spritesmith5.png);
- background-position: -1286px -742px;
+ background-position: -1316px -742px;
width: 105px;
height: 105px;
}
.Mount_Body_Rock-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -1286px -848px;
+ background-position: -1316px -848px;
width: 105px;
height: 105px;
}
.Mount_Body_Rock-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -1286px -954px;
+ background-position: -1316px -954px;
width: 105px;
height: 105px;
}
.Mount_Body_Rock-Desert {
background-image: url(spritesmith5.png);
- background-position: -1286px -1060px;
+ background-position: -1316px -1060px;
width: 105px;
height: 105px;
}
.Mount_Body_Rock-Golden {
background-image: url(spritesmith5.png);
- background-position: 0px -1256px;
+ background-position: -1316px -1166px;
width: 105px;
height: 105px;
}
.Mount_Body_Rock-Red {
background-image: url(spritesmith5.png);
- background-position: -106px -1256px;
+ background-position: 0px -1304px;
width: 105px;
height: 105px;
}
.Mount_Body_Rock-Shade {
background-image: url(spritesmith5.png);
- background-position: -212px -1256px;
+ background-position: -106px -1304px;
width: 105px;
height: 105px;
}
.Mount_Body_Rock-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -318px -1256px;
+ background-position: -212px -1304px;
width: 105px;
height: 105px;
}
.Mount_Body_Rock-White {
background-image: url(spritesmith5.png);
- background-position: -424px -1256px;
+ background-position: -318px -1304px;
width: 105px;
height: 105px;
}
.Mount_Body_Rock-Zombie {
background-image: url(spritesmith5.png);
- background-position: -530px -1256px;
+ background-position: -424px -1304px;
width: 105px;
height: 105px;
}
.Mount_Body_Rooster-Base {
background-image: url(spritesmith5.png);
- background-position: -636px -1256px;
+ background-position: -530px -1304px;
width: 105px;
height: 105px;
}
.Mount_Body_Rooster-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -742px -1256px;
+ background-position: -636px -1304px;
width: 105px;
height: 105px;
}
.Mount_Body_Rooster-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -848px -1256px;
+ background-position: -742px -1304px;
width: 105px;
height: 105px;
}
.Mount_Body_Rooster-Desert {
background-image: url(spritesmith5.png);
- background-position: -954px -1256px;
+ background-position: -848px -1304px;
width: 105px;
height: 105px;
}
.Mount_Body_Rooster-Golden {
background-image: url(spritesmith5.png);
- background-position: -1060px -1256px;
+ background-position: -954px -1304px;
width: 105px;
height: 105px;
}
.Mount_Body_Rooster-Red {
background-image: url(spritesmith5.png);
- background-position: -1166px -1256px;
+ background-position: -1060px -1304px;
width: 105px;
height: 105px;
}
.Mount_Body_Rooster-Shade {
background-image: url(spritesmith5.png);
- background-position: -1272px -1256px;
+ background-position: -1166px -1304px;
width: 105px;
height: 105px;
}
.Mount_Body_Rooster-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -1392px 0px;
+ background-position: -1272px -1304px;
width: 105px;
height: 105px;
}
.Mount_Body_Rooster-White {
background-image: url(spritesmith5.png);
- background-position: -1392px -106px;
+ background-position: -1422px 0px;
width: 105px;
height: 105px;
}
.Mount_Body_Rooster-Zombie {
background-image: url(spritesmith5.png);
- background-position: -1392px -212px;
+ background-position: -1422px -106px;
width: 105px;
height: 105px;
}
.Mount_Body_Seahorse-Base {
background-image: url(spritesmith5.png);
- background-position: -1392px -318px;
+ background-position: -1422px -212px;
width: 105px;
height: 105px;
}
.Mount_Body_Seahorse-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -1392px -424px;
+ background-position: -1422px -318px;
width: 105px;
height: 105px;
}
.Mount_Body_Seahorse-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -1392px -530px;
+ background-position: -1422px -424px;
width: 105px;
height: 105px;
}
.Mount_Body_Seahorse-Desert {
background-image: url(spritesmith5.png);
- background-position: -1392px -636px;
+ background-position: -1422px -530px;
width: 105px;
height: 105px;
}
.Mount_Body_Seahorse-Golden {
background-image: url(spritesmith5.png);
- background-position: -1392px -742px;
+ background-position: -1422px -636px;
width: 105px;
height: 105px;
}
.Mount_Body_Seahorse-Red {
background-image: url(spritesmith5.png);
- background-position: -1392px -848px;
+ background-position: -1422px -742px;
width: 105px;
height: 105px;
}
.Mount_Body_Seahorse-Shade {
background-image: url(spritesmith5.png);
- background-position: -1392px -954px;
+ background-position: -1422px -848px;
width: 105px;
height: 105px;
}
.Mount_Body_Seahorse-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -1392px -1060px;
+ background-position: -1422px -954px;
width: 105px;
height: 105px;
}
.Mount_Body_Seahorse-White {
background-image: url(spritesmith5.png);
- background-position: -1392px -1166px;
+ background-position: -1422px -1060px;
width: 105px;
height: 105px;
}
.Mount_Body_Seahorse-Zombie {
background-image: url(spritesmith5.png);
- background-position: 0px -1362px;
+ background-position: -1422px -1166px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Body_Sheep-Base {
+ background-image: url(spritesmith5.png);
+ background-position: -1422px -1272px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Body_Sheep-CottonCandyBlue {
+ background-image: url(spritesmith5.png);
+ background-position: 0px -1410px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Body_Sheep-CottonCandyPink {
+ background-image: url(spritesmith5.png);
+ background-position: -106px -1410px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Body_Sheep-Desert {
+ background-image: url(spritesmith5.png);
+ background-position: -212px -1410px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Body_Sheep-Golden {
+ background-image: url(spritesmith5.png);
+ background-position: -318px -1410px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Body_Sheep-Red {
+ background-image: url(spritesmith5.png);
+ background-position: -424px -1410px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Body_Sheep-Shade {
+ background-image: url(spritesmith5.png);
+ background-position: -530px -1410px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Body_Sheep-Skeleton {
+ background-image: url(spritesmith5.png);
+ background-position: -636px -1410px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Body_Sheep-White {
+ background-image: url(spritesmith5.png);
+ background-position: -742px -1410px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Body_Sheep-Zombie {
+ background-image: url(spritesmith5.png);
+ background-position: -848px -1410px;
width: 105px;
height: 105px;
}
.Mount_Body_Slime-Base {
background-image: url(spritesmith5.png);
- background-position: -106px -1362px;
+ background-position: -954px -1410px;
width: 105px;
height: 105px;
}
.Mount_Body_Slime-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -212px -1362px;
+ background-position: -1060px -1410px;
width: 105px;
height: 105px;
}
.Mount_Body_Slime-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -318px -1362px;
+ background-position: -1166px -1410px;
width: 105px;
height: 105px;
}
.Mount_Body_Slime-Desert {
background-image: url(spritesmith5.png);
- background-position: -424px -1362px;
+ background-position: -1272px -1410px;
width: 105px;
height: 105px;
}
.Mount_Body_Slime-Golden {
background-image: url(spritesmith5.png);
- background-position: -530px -1362px;
+ background-position: -1378px -1410px;
width: 105px;
height: 105px;
}
.Mount_Body_Slime-Red {
background-image: url(spritesmith5.png);
- background-position: -636px -1362px;
+ background-position: -1528px 0px;
width: 105px;
height: 105px;
}
.Mount_Body_Slime-Shade {
background-image: url(spritesmith5.png);
- background-position: -742px -1362px;
+ background-position: -1528px -106px;
width: 105px;
height: 105px;
}
.Mount_Body_Slime-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -848px -1362px;
+ background-position: -1528px -212px;
width: 105px;
height: 105px;
}
.Mount_Body_Slime-White {
background-image: url(spritesmith5.png);
- background-position: -954px -1362px;
+ background-position: -1528px -318px;
width: 105px;
height: 105px;
}
.Mount_Body_Slime-Zombie {
background-image: url(spritesmith5.png);
- background-position: -1060px -1362px;
+ background-position: -1528px -424px;
width: 105px;
height: 105px;
}
.Mount_Body_Spider-Base {
background-image: url(spritesmith5.png);
- background-position: -1166px -1362px;
+ background-position: -1528px -530px;
width: 105px;
height: 105px;
}
.Mount_Body_Spider-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -1272px -1362px;
+ background-position: -1528px -636px;
width: 105px;
height: 105px;
}
.Mount_Body_Spider-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -1378px -1362px;
+ background-position: -318px -544px;
width: 105px;
height: 105px;
}
.Mount_Body_Spider-Desert {
background-image: url(spritesmith5.png);
- background-position: -1498px 0px;
+ background-position: -1528px -848px;
width: 105px;
height: 105px;
}
.Mount_Body_Spider-Golden {
background-image: url(spritesmith5.png);
- background-position: -1498px -106px;
+ background-position: -1528px -954px;
width: 105px;
height: 105px;
}
.Mount_Body_Spider-Red {
background-image: url(spritesmith5.png);
- background-position: -1498px -212px;
+ background-position: -1528px -1060px;
width: 105px;
height: 105px;
}
.Mount_Body_Spider-Shade {
background-image: url(spritesmith5.png);
- background-position: -1498px -318px;
+ background-position: -1528px -1166px;
width: 105px;
height: 105px;
}
.Mount_Body_Spider-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -1498px -424px;
+ background-position: -1528px -1272px;
width: 105px;
height: 105px;
}
.Mount_Body_Spider-White {
background-image: url(spritesmith5.png);
- background-position: 0px -408px;
+ background-position: -1528px -1378px;
width: 105px;
height: 105px;
}
.Mount_Body_Spider-Zombie {
background-image: url(spritesmith5.png);
- background-position: -1498px -636px;
+ background-position: 0px -1516px;
width: 105px;
height: 105px;
}
.Mount_Body_TRex-Base {
background-image: url(spritesmith5.png);
- background-position: -136px 0px;
+ background-position: -408px -136px;
width: 135px;
height: 135px;
}
@@ -1140,1075 +1230,1093 @@
}
.Mount_Body_TRex-Golden {
background-image: url(spritesmith5.png);
- background-position: 0px 0px;
+ background-position: -272px -136px;
width: 135px;
height: 135px;
}
.Mount_Body_TRex-Red {
background-image: url(spritesmith5.png);
- background-position: -272px -136px;
+ background-position: 0px -272px;
width: 135px;
height: 135px;
}
.Mount_Body_TRex-Shade {
background-image: url(spritesmith5.png);
- background-position: 0px -272px;
+ background-position: -136px -272px;
width: 135px;
height: 135px;
}
.Mount_Body_TRex-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -136px -272px;
+ background-position: -272px -272px;
width: 135px;
height: 135px;
}
.Mount_Body_TRex-White {
background-image: url(spritesmith5.png);
- background-position: -272px -272px;
+ background-position: -408px 0px;
width: 135px;
height: 135px;
}
.Mount_Body_TRex-Zombie {
background-image: url(spritesmith5.png);
- background-position: -408px 0px;
+ background-position: 0px 0px;
width: 135px;
height: 135px;
}
.Mount_Body_TigerCub-Base {
background-image: url(spritesmith5.png);
- background-position: -424px -1468px;
+ background-position: -1166px -1516px;
width: 105px;
height: 105px;
}
.Mount_Body_TigerCub-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -530px -1468px;
+ background-position: -1272px -1516px;
width: 105px;
height: 105px;
}
.Mount_Body_TigerCub-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -636px -1468px;
+ background-position: -1378px -1516px;
width: 105px;
height: 105px;
}
.Mount_Body_TigerCub-Desert {
background-image: url(spritesmith5.png);
- background-position: -742px -1468px;
+ background-position: -1484px -1516px;
width: 105px;
height: 105px;
}
.Mount_Body_TigerCub-Golden {
background-image: url(spritesmith5.png);
- background-position: -848px -1468px;
+ background-position: -1634px 0px;
width: 105px;
height: 105px;
}
.Mount_Body_TigerCub-Red {
background-image: url(spritesmith5.png);
- background-position: -954px -1468px;
+ background-position: -1634px -106px;
width: 105px;
height: 105px;
}
.Mount_Body_TigerCub-Shade {
background-image: url(spritesmith5.png);
- background-position: -1060px -1468px;
+ background-position: -1634px -212px;
width: 105px;
height: 105px;
}
.Mount_Body_TigerCub-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -1166px -1468px;
+ background-position: -1634px -318px;
width: 105px;
height: 105px;
}
.Mount_Body_TigerCub-White {
background-image: url(spritesmith5.png);
- background-position: -1272px -1468px;
+ background-position: -1634px -424px;
width: 105px;
height: 105px;
}
.Mount_Body_TigerCub-Zombie {
background-image: url(spritesmith5.png);
- background-position: -1378px -1468px;
+ background-position: -1634px -530px;
width: 105px;
height: 105px;
}
.Mount_Body_Turkey-Base {
background-image: url(spritesmith5.png);
- background-position: -1484px -1468px;
+ background-position: -1634px -636px;
width: 105px;
height: 105px;
}
.Mount_Body_Wolf-Base {
background-image: url(spritesmith5.png);
- background-position: -1604px 0px;
- width: 105px;
- height: 105px;
+ background-position: -136px 0px;
+ width: 135px;
+ height: 135px;
}
.Mount_Body_Wolf-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -1604px -106px;
- width: 105px;
- height: 105px;
+ background-position: -408px -272px;
+ width: 135px;
+ height: 135px;
}
.Mount_Body_Wolf-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -1604px -212px;
- width: 105px;
- height: 105px;
+ background-position: 0px -408px;
+ width: 135px;
+ height: 135px;
}
.Mount_Body_Wolf-Desert {
background-image: url(spritesmith5.png);
- background-position: -1604px -318px;
- width: 105px;
- height: 105px;
+ background-position: -136px -408px;
+ width: 135px;
+ height: 135px;
}
.Mount_Body_Wolf-Golden {
background-image: url(spritesmith5.png);
- background-position: -1604px -424px;
- width: 105px;
- height: 105px;
+ background-position: -272px -408px;
+ width: 135px;
+ height: 135px;
}
.Mount_Body_Wolf-Red {
background-image: url(spritesmith5.png);
- background-position: -1604px -530px;
- width: 105px;
- height: 105px;
+ background-position: -408px -408px;
+ width: 135px;
+ height: 135px;
}
.Mount_Body_Wolf-Shade {
background-image: url(spritesmith5.png);
- background-position: -1604px -636px;
- width: 105px;
- height: 105px;
+ background-position: -544px 0px;
+ width: 135px;
+ height: 135px;
}
.Mount_Body_Wolf-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -1604px -742px;
- width: 105px;
- height: 105px;
+ background-position: -544px -136px;
+ width: 135px;
+ height: 135px;
}
.Mount_Body_Wolf-White {
background-image: url(spritesmith5.png);
- background-position: -1604px -848px;
- width: 105px;
- height: 105px;
+ background-position: -544px -272px;
+ width: 135px;
+ height: 135px;
}
.Mount_Body_Wolf-Zombie {
background-image: url(spritesmith5.png);
- background-position: -1604px -954px;
- width: 105px;
- height: 105px;
+ background-position: -544px -408px;
+ width: 135px;
+ height: 135px;
}
.Mount_Head_BearCub-Base {
background-image: url(spritesmith5.png);
- background-position: -1604px -1060px;
+ background-position: -212px -1622px;
width: 105px;
height: 105px;
}
.Mount_Head_BearCub-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -1604px -1166px;
+ background-position: -318px -1622px;
width: 105px;
height: 105px;
}
.Mount_Head_BearCub-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -1604px -1272px;
+ background-position: -424px -1622px;
width: 105px;
height: 105px;
}
.Mount_Head_BearCub-Desert {
background-image: url(spritesmith5.png);
- background-position: -1604px -1378px;
+ background-position: -530px -1622px;
width: 105px;
height: 105px;
}
.Mount_Head_BearCub-Golden {
background-image: url(spritesmith5.png);
- background-position: 0px -1574px;
+ background-position: -636px -1622px;
width: 105px;
height: 105px;
}
.Mount_Head_BearCub-Polar {
background-image: url(spritesmith5.png);
- background-position: -106px -1574px;
+ background-position: -742px -1622px;
width: 105px;
height: 105px;
}
.Mount_Head_BearCub-Red {
background-image: url(spritesmith5.png);
- background-position: -212px -1574px;
+ background-position: -848px -1622px;
width: 105px;
height: 105px;
}
.Mount_Head_BearCub-Shade {
background-image: url(spritesmith5.png);
- background-position: -318px -1574px;
+ background-position: -954px -1622px;
width: 105px;
height: 105px;
}
.Mount_Head_BearCub-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -424px -1574px;
+ background-position: -1060px -1622px;
width: 105px;
height: 105px;
}
.Mount_Head_BearCub-White {
background-image: url(spritesmith5.png);
- background-position: -530px -1574px;
+ background-position: -1166px -1622px;
width: 105px;
height: 105px;
}
.Mount_Head_BearCub-Zombie {
background-image: url(spritesmith5.png);
- background-position: -636px -1574px;
+ background-position: -1272px -1622px;
width: 105px;
height: 105px;
}
.Mount_Head_Bunny-Base {
background-image: url(spritesmith5.png);
- background-position: -742px -1574px;
+ background-position: -1378px -1622px;
width: 105px;
height: 105px;
}
.Mount_Head_Bunny-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -848px -1574px;
+ background-position: -1484px -1622px;
width: 105px;
height: 105px;
}
.Mount_Head_Bunny-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -954px -1574px;
+ background-position: -1590px -1622px;
width: 105px;
height: 105px;
}
.Mount_Head_Bunny-Desert {
background-image: url(spritesmith5.png);
- background-position: -1060px -1574px;
+ background-position: -1740px 0px;
width: 105px;
height: 105px;
}
.Mount_Head_Bunny-Golden {
background-image: url(spritesmith5.png);
- background-position: -1166px -1574px;
+ background-position: -1740px -106px;
width: 105px;
height: 105px;
}
.Mount_Head_Bunny-Red {
background-image: url(spritesmith5.png);
- background-position: -1272px -1574px;
+ background-position: -1740px -212px;
width: 105px;
height: 105px;
}
.Mount_Head_Bunny-Shade {
background-image: url(spritesmith5.png);
- background-position: -1378px -1574px;
+ background-position: -1740px -318px;
width: 105px;
height: 105px;
}
.Mount_Head_Bunny-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -1484px -1574px;
+ background-position: -1740px -424px;
width: 105px;
height: 105px;
}
.Mount_Head_Bunny-White {
background-image: url(spritesmith5.png);
- background-position: -1590px -1574px;
+ background-position: -1740px -530px;
width: 105px;
height: 105px;
}
.Mount_Head_Bunny-Zombie {
background-image: url(spritesmith5.png);
- background-position: -1710px 0px;
+ background-position: -1740px -636px;
width: 105px;
height: 105px;
}
.Mount_Head_Cactus-Base {
background-image: url(spritesmith5.png);
- background-position: -1710px -106px;
+ background-position: -1740px -742px;
width: 105px;
height: 105px;
}
.Mount_Head_Cactus-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -1710px -212px;
+ background-position: -1740px -848px;
width: 105px;
height: 105px;
}
.Mount_Head_Cactus-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -1710px -318px;
+ background-position: -1740px -954px;
width: 105px;
height: 105px;
}
.Mount_Head_Cactus-Desert {
background-image: url(spritesmith5.png);
- background-position: -1710px -424px;
+ background-position: -1740px -1060px;
width: 105px;
height: 105px;
}
.Mount_Head_Cactus-Golden {
background-image: url(spritesmith5.png);
- background-position: -1710px -530px;
+ background-position: -1740px -1166px;
width: 105px;
height: 105px;
}
.Mount_Head_Cactus-Red {
background-image: url(spritesmith5.png);
- background-position: -1710px -636px;
+ background-position: -1740px -1272px;
width: 105px;
height: 105px;
}
.Mount_Head_Cactus-Shade {
background-image: url(spritesmith5.png);
- background-position: -1710px -742px;
+ background-position: -1740px -1378px;
width: 105px;
height: 105px;
}
.Mount_Head_Cactus-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -1710px -848px;
+ background-position: -1740px -1484px;
width: 105px;
height: 105px;
}
.Mount_Head_Cactus-White {
background-image: url(spritesmith5.png);
- background-position: -1710px -954px;
+ background-position: -1740px -1590px;
width: 105px;
height: 105px;
}
.Mount_Head_Cactus-Zombie {
background-image: url(spritesmith5.png);
- background-position: -1710px -1060px;
+ background-position: 0px -1728px;
width: 105px;
height: 105px;
}
.Mount_Head_Deer-Base {
background-image: url(spritesmith5.png);
- background-position: -1710px -1166px;
+ background-position: -106px -1728px;
width: 105px;
height: 105px;
}
.Mount_Head_Deer-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -1710px -1272px;
+ background-position: -212px -1728px;
width: 105px;
height: 105px;
}
.Mount_Head_Deer-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -1710px -1378px;
+ background-position: -318px -1728px;
width: 105px;
height: 105px;
}
.Mount_Head_Deer-Desert {
background-image: url(spritesmith5.png);
- background-position: -1710px -1484px;
+ background-position: -424px -1728px;
width: 105px;
height: 105px;
}
.Mount_Head_Deer-Golden {
background-image: url(spritesmith5.png);
- background-position: 0px -1680px;
+ background-position: -530px -1728px;
width: 105px;
height: 105px;
}
.Mount_Head_Deer-Red {
background-image: url(spritesmith5.png);
- background-position: -106px -1680px;
+ background-position: -636px -1728px;
width: 105px;
height: 105px;
}
.Mount_Head_Deer-Shade {
background-image: url(spritesmith5.png);
- background-position: -212px -1680px;
+ background-position: -742px -1728px;
width: 105px;
height: 105px;
}
.Mount_Head_Deer-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -318px -1680px;
+ background-position: -848px -1728px;
width: 105px;
height: 105px;
}
.Mount_Head_Deer-White {
background-image: url(spritesmith5.png);
- background-position: -424px -1680px;
+ background-position: -954px -1728px;
width: 105px;
height: 105px;
}
.Mount_Head_Deer-Zombie {
background-image: url(spritesmith5.png);
- background-position: -530px -1680px;
+ background-position: -1060px -1728px;
width: 105px;
height: 105px;
}
.Mount_Head_Dragon-Base {
background-image: url(spritesmith5.png);
- background-position: -636px -1680px;
+ background-position: -1166px -1728px;
width: 105px;
height: 105px;
}
.Mount_Head_Dragon-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -742px -1680px;
+ background-position: -1272px -1728px;
width: 105px;
height: 105px;
}
.Mount_Head_Dragon-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -848px -1680px;
+ background-position: -1378px -1728px;
width: 105px;
height: 105px;
}
.Mount_Head_Dragon-Desert {
background-image: url(spritesmith5.png);
- background-position: -954px -1680px;
+ background-position: -1484px -1728px;
width: 105px;
height: 105px;
}
.Mount_Head_Dragon-Golden {
background-image: url(spritesmith5.png);
- background-position: -1060px -1680px;
+ background-position: -1590px -1728px;
width: 105px;
height: 105px;
}
.Mount_Head_Dragon-Red {
background-image: url(spritesmith5.png);
- background-position: -1166px -1680px;
+ background-position: -1696px -1728px;
width: 105px;
height: 105px;
}
.Mount_Head_Dragon-Shade {
background-image: url(spritesmith5.png);
- background-position: -1272px -1680px;
+ background-position: -1846px 0px;
width: 105px;
height: 105px;
}
.Mount_Head_Dragon-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -1378px -1680px;
+ background-position: -1846px -106px;
width: 105px;
height: 105px;
}
.Mount_Head_Dragon-White {
background-image: url(spritesmith5.png);
- background-position: -1484px -1680px;
+ background-position: -1846px -212px;
width: 105px;
height: 105px;
}
.Mount_Head_Dragon-Zombie {
background-image: url(spritesmith5.png);
- background-position: -1590px -1680px;
+ background-position: -1846px -318px;
width: 105px;
height: 105px;
}
.Mount_Head_Egg-Base {
background-image: url(spritesmith5.png);
- background-position: -1696px -1680px;
+ background-position: -1846px -424px;
width: 105px;
height: 105px;
}
.Mount_Head_Egg-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -1816px 0px;
+ background-position: -1846px -530px;
width: 105px;
height: 105px;
}
.Mount_Head_Egg-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -1816px -106px;
+ background-position: -1846px -636px;
width: 105px;
height: 105px;
}
.Mount_Head_Egg-Desert {
background-image: url(spritesmith5.png);
- background-position: -1816px -212px;
+ background-position: -1846px -742px;
width: 105px;
height: 105px;
}
.Mount_Head_Egg-Golden {
background-image: url(spritesmith5.png);
- background-position: -1816px -318px;
+ background-position: -1846px -848px;
width: 105px;
height: 105px;
}
.Mount_Head_Egg-Red {
background-image: url(spritesmith5.png);
- background-position: -1816px -424px;
+ background-position: -1846px -954px;
width: 105px;
height: 105px;
}
.Mount_Head_Egg-Shade {
background-image: url(spritesmith5.png);
- background-position: -1816px -530px;
+ background-position: -1846px -1060px;
width: 105px;
height: 105px;
}
.Mount_Head_Egg-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -1816px -636px;
+ background-position: -1846px -1166px;
width: 105px;
height: 105px;
}
.Mount_Head_Egg-White {
background-image: url(spritesmith5.png);
- background-position: -1816px -742px;
+ background-position: -1846px -1272px;
width: 105px;
height: 105px;
}
.Mount_Head_Egg-Zombie {
background-image: url(spritesmith5.png);
- background-position: -1816px -848px;
+ background-position: -1846px -1378px;
width: 105px;
height: 105px;
}
.Mount_Head_FlyingPig-Base {
background-image: url(spritesmith5.png);
- background-position: -1816px -954px;
+ background-position: -1846px -1484px;
width: 105px;
height: 105px;
}
.Mount_Head_FlyingPig-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -1816px -1060px;
+ background-position: -1846px -1590px;
width: 105px;
height: 105px;
}
.Mount_Head_FlyingPig-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -1816px -1166px;
+ background-position: -1846px -1696px;
width: 105px;
height: 105px;
}
.Mount_Head_FlyingPig-Desert {
background-image: url(spritesmith5.png);
- background-position: -1816px -1272px;
+ background-position: 0px -1834px;
width: 105px;
height: 105px;
}
.Mount_Head_FlyingPig-Golden {
background-image: url(spritesmith5.png);
- background-position: -1816px -1378px;
+ background-position: -106px -1834px;
width: 105px;
height: 105px;
}
.Mount_Head_FlyingPig-Red {
background-image: url(spritesmith5.png);
- background-position: -1816px -1484px;
+ background-position: -212px -1834px;
width: 105px;
height: 105px;
}
.Mount_Head_FlyingPig-Shade {
background-image: url(spritesmith5.png);
- background-position: -1816px -1590px;
+ background-position: -318px -1834px;
width: 105px;
height: 105px;
}
.Mount_Head_FlyingPig-Skeleton {
background-image: url(spritesmith5.png);
- background-position: 0px -1786px;
+ background-position: -424px -1834px;
width: 105px;
height: 105px;
}
.Mount_Head_FlyingPig-White {
background-image: url(spritesmith5.png);
- background-position: -106px -1786px;
+ background-position: -530px -1834px;
width: 105px;
height: 105px;
}
.Mount_Head_FlyingPig-Zombie {
background-image: url(spritesmith5.png);
- background-position: -212px -1786px;
+ background-position: -636px -1834px;
width: 105px;
height: 105px;
}
.Mount_Head_Fox-Base {
background-image: url(spritesmith5.png);
- background-position: -318px -1786px;
+ background-position: -742px -1834px;
width: 105px;
height: 105px;
}
.Mount_Head_Fox-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -424px -1786px;
+ background-position: -848px -1834px;
width: 105px;
height: 105px;
}
.Mount_Head_Fox-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -530px -1786px;
+ background-position: -954px -1834px;
width: 105px;
height: 105px;
}
.Mount_Head_Fox-Desert {
background-image: url(spritesmith5.png);
- background-position: -636px -1786px;
+ background-position: -1060px -1834px;
width: 105px;
height: 105px;
}
.Mount_Head_Fox-Golden {
background-image: url(spritesmith5.png);
- background-position: -742px -1786px;
+ background-position: -1166px -1834px;
width: 105px;
height: 105px;
}
.Mount_Head_Fox-Red {
background-image: url(spritesmith5.png);
- background-position: -848px -1786px;
+ background-position: -1272px -1834px;
width: 105px;
height: 105px;
}
.Mount_Head_Fox-Shade {
background-image: url(spritesmith5.png);
- background-position: -954px -1786px;
+ background-position: -1378px -1834px;
width: 105px;
height: 105px;
}
.Mount_Head_Fox-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -1060px -1786px;
+ background-position: -1484px -1834px;
width: 105px;
height: 105px;
}
.Mount_Head_Fox-White {
background-image: url(spritesmith5.png);
- background-position: -1166px -1786px;
+ background-position: -1590px -1834px;
width: 105px;
height: 105px;
}
.Mount_Head_Fox-Zombie {
background-image: url(spritesmith5.png);
- background-position: -1272px -1786px;
+ background-position: -1696px -1834px;
width: 105px;
height: 105px;
}
.Mount_Head_Gryphon-Base {
background-image: url(spritesmith5.png);
- background-position: -1378px -1786px;
+ background-position: -1802px -1834px;
width: 105px;
height: 105px;
}
.Mount_Head_Gryphon-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -1484px -1786px;
+ background-position: -1952px 0px;
width: 105px;
height: 105px;
}
.Mount_Head_Gryphon-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -1590px -1786px;
+ background-position: -1952px -106px;
width: 105px;
height: 105px;
}
.Mount_Head_Gryphon-Desert {
background-image: url(spritesmith5.png);
- background-position: -1696px -1786px;
+ background-position: -1952px -212px;
width: 105px;
height: 105px;
}
.Mount_Head_Gryphon-Golden {
background-image: url(spritesmith5.png);
- background-position: -1802px -1786px;
+ background-position: -1952px -318px;
width: 105px;
height: 105px;
}
.Mount_Head_Gryphon-Red {
background-image: url(spritesmith5.png);
- background-position: -1922px 0px;
+ background-position: -1952px -424px;
width: 105px;
height: 105px;
}
.Mount_Head_Gryphon-Shade {
background-image: url(spritesmith5.png);
- background-position: -1922px -106px;
+ background-position: -1952px -530px;
width: 105px;
height: 105px;
}
.Mount_Head_Gryphon-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -1922px -212px;
+ background-position: -1952px -636px;
width: 105px;
height: 105px;
}
.Mount_Head_Gryphon-White {
background-image: url(spritesmith5.png);
- background-position: -1922px -318px;
+ background-position: -1952px -742px;
width: 105px;
height: 105px;
}
.Mount_Head_Gryphon-Zombie {
background-image: url(spritesmith5.png);
- background-position: -1922px -424px;
+ background-position: -1952px -848px;
width: 105px;
height: 105px;
}
.Mount_Head_Hedgehog-Base {
background-image: url(spritesmith5.png);
- background-position: -1922px -530px;
+ background-position: -1952px -954px;
width: 105px;
height: 105px;
}
.Mount_Head_Hedgehog-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -1922px -636px;
+ background-position: -1952px -1060px;
width: 105px;
height: 105px;
}
.Mount_Head_Hedgehog-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -1922px -742px;
+ background-position: -1952px -1166px;
width: 105px;
height: 105px;
}
.Mount_Head_Hedgehog-Desert {
background-image: url(spritesmith5.png);
- background-position: -1922px -848px;
+ background-position: -1952px -1272px;
width: 105px;
height: 105px;
}
.Mount_Head_Hedgehog-Golden {
background-image: url(spritesmith5.png);
- background-position: -1922px -954px;
+ background-position: -1952px -1378px;
width: 105px;
height: 105px;
}
.Mount_Head_Hedgehog-Red {
background-image: url(spritesmith5.png);
- background-position: -1922px -1060px;
+ background-position: -1952px -1484px;
width: 105px;
height: 105px;
}
.Mount_Head_Hedgehog-Shade {
background-image: url(spritesmith5.png);
- background-position: -1922px -1166px;
+ background-position: -1952px -1590px;
width: 105px;
height: 105px;
}
.Mount_Head_Hedgehog-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -1922px -1272px;
+ background-position: -1952px -1696px;
width: 105px;
height: 105px;
}
.Mount_Head_Hedgehog-White {
background-image: url(spritesmith5.png);
- background-position: -1922px -1378px;
+ background-position: -1952px -1802px;
width: 105px;
height: 105px;
}
.Mount_Head_Hedgehog-Zombie {
background-image: url(spritesmith5.png);
- background-position: -1922px -1484px;
+ background-position: 0px -1940px;
width: 105px;
height: 105px;
}
.Mount_Head_LionCub-Base {
background-image: url(spritesmith5.png);
- background-position: -1922px -1590px;
+ background-position: -106px -1940px;
width: 105px;
height: 105px;
}
.Mount_Head_LionCub-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -1922px -1696px;
+ background-position: -212px -1940px;
width: 105px;
height: 105px;
}
.Mount_Head_LionCub-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: 0px -1892px;
+ background-position: -318px -1940px;
width: 105px;
height: 105px;
}
.Mount_Head_LionCub-Desert {
background-image: url(spritesmith5.png);
- background-position: -106px -1892px;
+ background-position: -424px -1940px;
width: 105px;
height: 105px;
}
.Mount_Head_LionCub-Ethereal {
background-image: url(spritesmith5.png);
- background-position: -212px -1892px;
+ background-position: -530px -1940px;
width: 105px;
height: 105px;
}
.Mount_Head_LionCub-Golden {
background-image: url(spritesmith5.png);
- background-position: -318px -1892px;
+ background-position: -636px -1940px;
width: 105px;
height: 105px;
}
.Mount_Head_LionCub-Red {
background-image: url(spritesmith5.png);
- background-position: -424px -1892px;
+ background-position: -742px -1940px;
width: 105px;
height: 105px;
}
.Mount_Head_LionCub-Shade {
background-image: url(spritesmith5.png);
- background-position: -530px -1892px;
+ background-position: -848px -1940px;
width: 105px;
height: 105px;
}
.Mount_Head_LionCub-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -636px -1892px;
+ background-position: -212px -544px;
width: 105px;
- height: 105px;
+ height: 110px;
}
.Mount_Head_LionCub-White {
background-image: url(spritesmith5.png);
- background-position: -742px -1892px;
+ background-position: -1060px -1940px;
width: 105px;
height: 105px;
}
.Mount_Head_LionCub-Zombie {
background-image: url(spritesmith5.png);
- background-position: -848px -1892px;
+ background-position: -1166px -1940px;
width: 105px;
height: 105px;
}
.Mount_Head_Mammoth-Base {
background-image: url(spritesmith5.png);
- background-position: -408px -260px;
+ background-position: -106px -544px;
width: 105px;
height: 123px;
}
.Mount_Head_MantisShrimp-Base {
background-image: url(spritesmith5.png);
- background-position: -1060px -1892px;
+ background-position: -1378px -1940px;
width: 108px;
height: 105px;
}
.Mount_Head_Octopus-Base {
background-image: url(spritesmith5.png);
- background-position: -1169px -1892px;
+ background-position: -1487px -1940px;
width: 105px;
height: 105px;
}
.Mount_Head_Octopus-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -1275px -1892px;
+ background-position: -1593px -1940px;
width: 105px;
height: 105px;
}
.Mount_Head_Octopus-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -1381px -1892px;
+ background-position: -1699px -1940px;
width: 105px;
height: 105px;
}
.Mount_Head_Octopus-Desert {
background-image: url(spritesmith5.png);
- background-position: -1487px -1892px;
+ background-position: -1805px -1940px;
width: 105px;
height: 105px;
}
.Mount_Head_Octopus-Golden {
background-image: url(spritesmith5.png);
- background-position: -1593px -1892px;
+ background-position: -1911px -1940px;
width: 105px;
height: 105px;
}
.Mount_Head_Octopus-Red {
background-image: url(spritesmith5.png);
- background-position: -1699px -1892px;
+ background-position: -2058px 0px;
width: 105px;
height: 105px;
}
.Mount_Head_Octopus-Shade {
background-image: url(spritesmith5.png);
- background-position: -1805px -1892px;
+ background-position: -2058px -106px;
width: 105px;
height: 105px;
}
.Mount_Head_Octopus-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -1911px -1892px;
+ background-position: -2058px -212px;
width: 105px;
height: 105px;
}
.Mount_Head_Octopus-White {
background-image: url(spritesmith5.png);
- background-position: -2028px 0px;
+ background-position: -2058px -318px;
width: 105px;
height: 105px;
}
.Mount_Head_Octopus-Zombie {
background-image: url(spritesmith5.png);
- background-position: -2028px -106px;
+ background-position: -2058px -424px;
width: 105px;
height: 105px;
}
.Mount_Head_Owl-Base {
background-image: url(spritesmith5.png);
- background-position: -2028px -212px;
+ background-position: -2058px -530px;
width: 105px;
height: 105px;
}
.Mount_Head_Owl-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -2028px -318px;
+ background-position: -2058px -636px;
width: 105px;
height: 105px;
}
.Mount_Head_Owl-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -2028px -424px;
+ background-position: -2058px -742px;
width: 105px;
height: 105px;
}
.Mount_Head_Owl-Desert {
background-image: url(spritesmith5.png);
- background-position: -2028px -530px;
+ background-position: -2058px -848px;
width: 105px;
height: 105px;
}
.Mount_Head_Owl-Golden {
background-image: url(spritesmith5.png);
- background-position: -2028px -636px;
+ background-position: -2058px -954px;
width: 105px;
height: 105px;
}
.Mount_Head_Owl-Red {
background-image: url(spritesmith5.png);
- background-position: -2028px -742px;
+ background-position: -2058px -1060px;
width: 105px;
height: 105px;
}
.Mount_Head_Owl-Shade {
background-image: url(spritesmith5.png);
- background-position: -2028px -848px;
+ background-position: -2058px -1166px;
width: 105px;
height: 105px;
}
.Mount_Head_Owl-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -2028px -954px;
+ background-position: -2058px -1272px;
width: 105px;
height: 105px;
}
.Mount_Head_Owl-White {
background-image: url(spritesmith5.png);
- background-position: -2028px -1060px;
+ background-position: -2058px -1378px;
width: 105px;
height: 105px;
}
.Mount_Head_Owl-Zombie {
background-image: url(spritesmith5.png);
- background-position: -2028px -1166px;
+ background-position: -2058px -1484px;
width: 105px;
height: 105px;
}
.Mount_Head_PandaCub-Base {
background-image: url(spritesmith5.png);
- background-position: -2028px -1272px;
+ background-position: -2058px -1590px;
width: 105px;
height: 105px;
}
.Mount_Head_PandaCub-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -2028px -1378px;
+ background-position: -2058px -1696px;
width: 105px;
height: 105px;
}
.Mount_Head_PandaCub-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -2028px -1484px;
+ background-position: -2058px -1802px;
width: 105px;
height: 105px;
}
.Mount_Head_PandaCub-Desert {
background-image: url(spritesmith5.png);
- background-position: -2028px -1590px;
+ background-position: -2058px -1908px;
width: 105px;
height: 105px;
}
.Mount_Head_PandaCub-Golden {
background-image: url(spritesmith5.png);
- background-position: -2028px -1696px;
+ background-position: 0px -2046px;
width: 105px;
height: 105px;
}
.Mount_Head_PandaCub-Red {
background-image: url(spritesmith5.png);
- background-position: -2028px -1802px;
+ background-position: -106px -2046px;
width: 105px;
height: 105px;
}
.Mount_Head_PandaCub-Shade {
background-image: url(spritesmith5.png);
- background-position: 0px -1998px;
+ background-position: -212px -2046px;
width: 105px;
height: 105px;
}
.Mount_Head_PandaCub-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -106px -1998px;
+ background-position: -318px -2046px;
width: 105px;
height: 105px;
}
.Mount_Head_PandaCub-White {
background-image: url(spritesmith5.png);
- background-position: -212px -1998px;
+ background-position: -424px -2046px;
width: 105px;
height: 105px;
}
.Mount_Head_PandaCub-Zombie {
background-image: url(spritesmith5.png);
- background-position: -318px -1998px;
+ background-position: -530px -2046px;
width: 105px;
height: 105px;
}
.Mount_Head_Parrot-Base {
background-image: url(spritesmith5.png);
- background-position: -424px -1998px;
+ background-position: -636px -2046px;
width: 105px;
height: 105px;
}
.Mount_Head_Parrot-CottonCandyBlue {
background-image: url(spritesmith5.png);
- background-position: -530px -1998px;
+ background-position: -742px -2046px;
width: 105px;
height: 105px;
}
.Mount_Head_Parrot-CottonCandyPink {
background-image: url(spritesmith5.png);
- background-position: -636px -1998px;
+ background-position: -848px -2046px;
width: 105px;
height: 105px;
}
.Mount_Head_Parrot-Desert {
background-image: url(spritesmith5.png);
- background-position: -742px -1998px;
+ background-position: -954px -2046px;
width: 105px;
height: 105px;
}
.Mount_Head_Parrot-Golden {
background-image: url(spritesmith5.png);
- background-position: -848px -1998px;
+ background-position: -1060px -2046px;
width: 105px;
height: 105px;
}
.Mount_Head_Parrot-Red {
background-image: url(spritesmith5.png);
- background-position: -954px -1998px;
+ background-position: -1166px -2046px;
width: 105px;
height: 105px;
}
.Mount_Head_Parrot-Shade {
background-image: url(spritesmith5.png);
- background-position: -1060px -1998px;
+ background-position: -1272px -2046px;
width: 105px;
height: 105px;
}
.Mount_Head_Parrot-Skeleton {
background-image: url(spritesmith5.png);
- background-position: -1166px -1998px;
+ background-position: -1378px -2046px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Head_Parrot-White {
+ background-image: url(spritesmith5.png);
+ background-position: -1484px -2046px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Head_Parrot-Zombie {
+ background-image: url(spritesmith5.png);
+ background-position: -1590px -2046px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Head_Penguin-Base {
+ background-image: url(spritesmith5.png);
+ background-position: -1696px -2046px;
width: 105px;
height: 105px;
}
diff --git a/common/dist/sprites/spritesmith5.png b/common/dist/sprites/spritesmith5.png
index 7ce903aa16..863f53764e 100644
Binary files a/common/dist/sprites/spritesmith5.png and b/common/dist/sprites/spritesmith5.png differ
diff --git a/common/dist/sprites/spritesmith6.css b/common/dist/sprites/spritesmith6.css
index e07dd5866f..225537dde3 100644
--- a/common/dist/sprites/spritesmith6.css
+++ b/common/dist/sprites/spritesmith6.css
@@ -1,438 +1,480 @@
-.Mount_Head_Parrot-White {
- background-image: url(spritesmith6.png);
- background-position: -968px -212px;
- width: 105px;
- height: 105px;
-}
-.Mount_Head_Parrot-Zombie {
- background-image: url(spritesmith6.png);
- background-position: -636px -1044px;
- width: 105px;
- height: 105px;
-}
-.Mount_Head_Penguin-Base {
- background-image: url(spritesmith6.png);
- background-position: -636px -726px;
- width: 105px;
- height: 105px;
-}
.Mount_Head_Penguin-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -968px -318px;
+ background-position: -998px -742px;
width: 105px;
height: 105px;
}
.Mount_Head_Penguin-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -968px -424px;
+ background-position: -954px -1074px;
width: 105px;
height: 105px;
}
.Mount_Head_Penguin-Desert {
background-image: url(spritesmith6.png);
- background-position: -968px -530px;
+ background-position: -892px -106px;
width: 105px;
height: 105px;
}
.Mount_Head_Penguin-Golden {
background-image: url(spritesmith6.png);
- background-position: -968px -636px;
+ background-position: -998px -848px;
width: 105px;
height: 105px;
}
.Mount_Head_Penguin-Red {
background-image: url(spritesmith6.png);
- background-position: -968px -742px;
+ background-position: 0px -968px;
width: 105px;
height: 105px;
}
.Mount_Head_Penguin-Shade {
background-image: url(spritesmith6.png);
- background-position: 0px -938px;
+ background-position: -106px -968px;
width: 105px;
height: 105px;
}
.Mount_Head_Penguin-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -106px -938px;
+ background-position: -212px -968px;
width: 105px;
height: 105px;
}
.Mount_Head_Penguin-White {
background-image: url(spritesmith6.png);
- background-position: -212px -938px;
+ background-position: -318px -968px;
width: 105px;
height: 105px;
}
.Mount_Head_Penguin-Zombie {
background-image: url(spritesmith6.png);
- background-position: -318px -938px;
+ background-position: -424px -968px;
width: 105px;
height: 105px;
}
.Mount_Head_Rat-Base {
background-image: url(spritesmith6.png);
- background-position: -408px -242px;
+ background-position: -530px -968px;
width: 105px;
height: 105px;
}
.Mount_Head_Rat-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: 0px -408px;
+ background-position: -636px -968px;
width: 105px;
height: 105px;
}
.Mount_Head_Rat-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -106px -408px;
+ background-position: -742px -968px;
width: 105px;
height: 105px;
}
.Mount_Head_Rat-Desert {
background-image: url(spritesmith6.png);
- background-position: -212px -408px;
+ background-position: -1104px -954px;
width: 105px;
height: 105px;
}
.Mount_Head_Rat-Golden {
background-image: url(spritesmith6.png);
- background-position: -318px -408px;
+ background-position: 0px -1074px;
width: 105px;
height: 105px;
}
.Mount_Head_Rat-Red {
background-image: url(spritesmith6.png);
- background-position: -424px -408px;
+ background-position: -106px -1074px;
width: 105px;
height: 105px;
}
.Mount_Head_Rat-Shade {
background-image: url(spritesmith6.png);
- background-position: -544px 0px;
+ background-position: -212px -1074px;
width: 105px;
height: 105px;
}
.Mount_Head_Rat-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -544px -106px;
+ background-position: -318px -1074px;
width: 105px;
height: 105px;
}
.Mount_Head_Rat-White {
background-image: url(spritesmith6.png);
- background-position: -544px -212px;
+ background-position: -424px -1074px;
width: 105px;
height: 105px;
}
.Mount_Head_Rat-Zombie {
background-image: url(spritesmith6.png);
- background-position: -544px -318px;
+ background-position: -530px -1074px;
width: 105px;
height: 105px;
}
.Mount_Head_Rock-Base {
background-image: url(spritesmith6.png);
- background-position: 0px -514px;
+ background-position: -636px -1074px;
width: 105px;
height: 105px;
}
.Mount_Head_Rock-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -106px -514px;
+ background-position: -742px -1074px;
width: 105px;
height: 105px;
}
.Mount_Head_Rock-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -212px -514px;
+ background-position: -848px -1074px;
width: 105px;
height: 105px;
}
.Mount_Head_Rock-Desert {
background-image: url(spritesmith6.png);
- background-position: -318px -514px;
+ background-position: -106px -544px;
width: 105px;
height: 105px;
}
.Mount_Head_Rock-Golden {
background-image: url(spritesmith6.png);
- background-position: -424px -514px;
+ background-position: -212px -544px;
width: 105px;
height: 105px;
}
.Mount_Head_Rock-Red {
background-image: url(spritesmith6.png);
- background-position: -530px -514px;
+ background-position: -318px -544px;
width: 105px;
height: 105px;
}
.Mount_Head_Rock-Shade {
background-image: url(spritesmith6.png);
- background-position: -650px 0px;
+ background-position: -424px -544px;
width: 105px;
height: 105px;
}
.Mount_Head_Rock-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -650px -106px;
+ background-position: -530px -544px;
width: 105px;
height: 105px;
}
.Mount_Head_Rock-White {
background-image: url(spritesmith6.png);
- background-position: -650px -212px;
+ background-position: -680px 0px;
width: 105px;
height: 105px;
}
.Mount_Head_Rock-Zombie {
background-image: url(spritesmith6.png);
- background-position: -650px -318px;
+ background-position: -680px -106px;
width: 105px;
height: 105px;
}
.Mount_Head_Rooster-Base {
background-image: url(spritesmith6.png);
- background-position: -650px -424px;
+ background-position: -680px -212px;
width: 105px;
height: 105px;
}
.Mount_Head_Rooster-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: 0px -620px;
+ background-position: -680px -318px;
width: 105px;
height: 105px;
}
.Mount_Head_Rooster-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -106px -620px;
+ background-position: -680px -424px;
width: 105px;
height: 105px;
}
.Mount_Head_Rooster-Desert {
background-image: url(spritesmith6.png);
- background-position: -212px -620px;
+ background-position: -680px -530px;
width: 105px;
height: 105px;
}
.Mount_Head_Rooster-Golden {
background-image: url(spritesmith6.png);
- background-position: -318px -620px;
+ background-position: 0px -650px;
width: 105px;
height: 105px;
}
.Mount_Head_Rooster-Red {
background-image: url(spritesmith6.png);
- background-position: -424px -620px;
+ background-position: -106px -650px;
width: 105px;
height: 105px;
}
.Mount_Head_Rooster-Shade {
background-image: url(spritesmith6.png);
- background-position: -530px -620px;
+ background-position: -212px -650px;
width: 105px;
height: 105px;
}
.Mount_Head_Rooster-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -636px -620px;
+ background-position: -318px -650px;
width: 105px;
height: 105px;
}
.Mount_Head_Rooster-White {
background-image: url(spritesmith6.png);
- background-position: -756px 0px;
+ background-position: -424px -650px;
width: 105px;
height: 105px;
}
.Mount_Head_Rooster-Zombie {
background-image: url(spritesmith6.png);
- background-position: -756px -106px;
+ background-position: -530px -650px;
width: 105px;
height: 105px;
}
.Mount_Head_Seahorse-Base {
background-image: url(spritesmith6.png);
- background-position: -756px -212px;
+ background-position: -636px -650px;
width: 105px;
height: 105px;
}
.Mount_Head_Seahorse-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -756px -318px;
+ background-position: -786px 0px;
width: 105px;
height: 105px;
}
.Mount_Head_Seahorse-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -756px -424px;
+ background-position: -786px -106px;
width: 105px;
height: 105px;
}
.Mount_Head_Seahorse-Desert {
background-image: url(spritesmith6.png);
- background-position: -756px -530px;
+ background-position: -786px -212px;
width: 105px;
height: 105px;
}
.Mount_Head_Seahorse-Golden {
background-image: url(spritesmith6.png);
- background-position: 0px -726px;
+ background-position: -786px -318px;
width: 105px;
height: 105px;
}
.Mount_Head_Seahorse-Red {
background-image: url(spritesmith6.png);
- background-position: -106px -726px;
+ background-position: -786px -424px;
width: 105px;
height: 105px;
}
.Mount_Head_Seahorse-Shade {
background-image: url(spritesmith6.png);
- background-position: -212px -726px;
+ background-position: -786px -530px;
width: 105px;
height: 105px;
}
.Mount_Head_Seahorse-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -318px -726px;
+ background-position: -786px -636px;
width: 105px;
height: 105px;
}
.Mount_Head_Seahorse-White {
background-image: url(spritesmith6.png);
- background-position: -424px -726px;
+ background-position: 0px -756px;
width: 105px;
height: 105px;
}
.Mount_Head_Seahorse-Zombie {
background-image: url(spritesmith6.png);
- background-position: -530px -726px;
+ background-position: -106px -756px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Head_Sheep-Base {
+ background-image: url(spritesmith6.png);
+ background-position: -212px -756px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Head_Sheep-CottonCandyBlue {
+ background-image: url(spritesmith6.png);
+ background-position: -318px -756px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Head_Sheep-CottonCandyPink {
+ background-image: url(spritesmith6.png);
+ background-position: -424px -756px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Head_Sheep-Desert {
+ background-image: url(spritesmith6.png);
+ background-position: -530px -756px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Head_Sheep-Golden {
+ background-image: url(spritesmith6.png);
+ background-position: -636px -756px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Head_Sheep-Red {
+ background-image: url(spritesmith6.png);
+ background-position: -742px -756px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Head_Sheep-Shade {
+ background-image: url(spritesmith6.png);
+ background-position: -892px 0px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Head_Sheep-Skeleton {
+ background-image: url(spritesmith6.png);
+ background-position: 0px -544px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Head_Sheep-White {
+ background-image: url(spritesmith6.png);
+ background-position: -892px -212px;
+ width: 105px;
+ height: 105px;
+}
+.Mount_Head_Sheep-Zombie {
+ background-image: url(spritesmith6.png);
+ background-position: -892px -318px;
width: 105px;
height: 105px;
}
.Mount_Head_Slime-Base {
background-image: url(spritesmith6.png);
- background-position: -408px -136px;
+ background-position: -892px -424px;
width: 105px;
height: 105px;
}
.Mount_Head_Slime-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -742px -726px;
+ background-position: -892px -530px;
width: 105px;
height: 105px;
}
.Mount_Head_Slime-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -862px 0px;
+ background-position: -892px -636px;
width: 105px;
height: 105px;
}
.Mount_Head_Slime-Desert {
background-image: url(spritesmith6.png);
- background-position: -862px -106px;
+ background-position: -892px -742px;
width: 105px;
height: 105px;
}
.Mount_Head_Slime-Golden {
background-image: url(spritesmith6.png);
- background-position: -862px -212px;
+ background-position: 0px -862px;
width: 105px;
height: 105px;
}
.Mount_Head_Slime-Red {
background-image: url(spritesmith6.png);
- background-position: -862px -318px;
+ background-position: -106px -862px;
width: 105px;
height: 105px;
}
.Mount_Head_Slime-Shade {
background-image: url(spritesmith6.png);
- background-position: -862px -424px;
+ background-position: -212px -862px;
width: 105px;
height: 105px;
}
.Mount_Head_Slime-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -862px -530px;
+ background-position: -318px -862px;
width: 105px;
height: 105px;
}
.Mount_Head_Slime-White {
background-image: url(spritesmith6.png);
- background-position: -862px -636px;
+ background-position: -424px -862px;
width: 105px;
height: 105px;
}
.Mount_Head_Slime-Zombie {
background-image: url(spritesmith6.png);
- background-position: 0px -832px;
+ background-position: -530px -862px;
width: 105px;
height: 105px;
}
.Mount_Head_Spider-Base {
background-image: url(spritesmith6.png);
- background-position: -106px -832px;
+ background-position: -636px -862px;
width: 105px;
height: 105px;
}
.Mount_Head_Spider-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -212px -832px;
+ background-position: -742px -862px;
width: 105px;
height: 105px;
}
.Mount_Head_Spider-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -318px -832px;
+ background-position: -848px -862px;
width: 105px;
height: 105px;
}
.Mount_Head_Spider-Desert {
background-image: url(spritesmith6.png);
- background-position: -424px -832px;
+ background-position: -998px 0px;
width: 105px;
height: 105px;
}
.Mount_Head_Spider-Golden {
background-image: url(spritesmith6.png);
- background-position: -530px -832px;
+ background-position: -998px -106px;
width: 105px;
height: 105px;
}
.Mount_Head_Spider-Red {
background-image: url(spritesmith6.png);
- background-position: -636px -832px;
+ background-position: -998px -212px;
width: 105px;
height: 105px;
}
.Mount_Head_Spider-Shade {
background-image: url(spritesmith6.png);
- background-position: -742px -832px;
+ background-position: -998px -318px;
width: 105px;
height: 105px;
}
.Mount_Head_Spider-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -848px -832px;
+ background-position: -998px -424px;
width: 105px;
height: 105px;
}
.Mount_Head_Spider-White {
background-image: url(spritesmith6.png);
- background-position: -968px 0px;
+ background-position: -998px -530px;
width: 105px;
height: 105px;
}
.Mount_Head_Spider-Zombie {
background-image: url(spritesmith6.png);
- background-position: -968px -106px;
+ background-position: -998px -636px;
width: 105px;
height: 105px;
}
.Mount_Head_TRex-Base {
background-image: url(spritesmith6.png);
- background-position: -272px -136px;
+ background-position: -408px -136px;
width: 135px;
height: 135px;
}
@@ -456,7 +498,7 @@
}
.Mount_Head_TRex-Golden {
background-image: url(spritesmith6.png);
- background-position: 0px 0px;
+ background-position: -272px -136px;
width: 135px;
height: 135px;
}
@@ -486,1735 +528,1795 @@
}
.Mount_Head_TRex-Zombie {
background-image: url(spritesmith6.png);
- background-position: -136px 0px;
+ background-position: 0px 0px;
width: 135px;
height: 135px;
}
.Mount_Head_TigerCub-Base {
background-image: url(spritesmith6.png);
- background-position: -424px -938px;
+ background-position: -848px -968px;
width: 105px;
height: 105px;
}
.Mount_Head_TigerCub-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -530px -938px;
+ background-position: -954px -968px;
width: 105px;
height: 105px;
}
.Mount_Head_TigerCub-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -636px -938px;
+ background-position: -1104px 0px;
width: 105px;
height: 105px;
}
.Mount_Head_TigerCub-Desert {
background-image: url(spritesmith6.png);
- background-position: -742px -938px;
+ background-position: -1104px -106px;
width: 105px;
height: 105px;
}
.Mount_Head_TigerCub-Golden {
background-image: url(spritesmith6.png);
- background-position: -848px -938px;
+ background-position: -1104px -212px;
width: 105px;
height: 105px;
}
.Mount_Head_TigerCub-Red {
background-image: url(spritesmith6.png);
- background-position: -954px -938px;
+ background-position: -1104px -318px;
width: 105px;
height: 105px;
}
.Mount_Head_TigerCub-Shade {
background-image: url(spritesmith6.png);
- background-position: -1074px 0px;
+ background-position: -1104px -424px;
width: 105px;
height: 105px;
}
.Mount_Head_TigerCub-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -1074px -106px;
+ background-position: -1104px -530px;
width: 105px;
height: 105px;
}
.Mount_Head_TigerCub-White {
background-image: url(spritesmith6.png);
- background-position: -1074px -212px;
+ background-position: -1104px -636px;
width: 105px;
height: 105px;
}
.Mount_Head_TigerCub-Zombie {
background-image: url(spritesmith6.png);
- background-position: -1074px -318px;
+ background-position: -1104px -742px;
width: 105px;
height: 105px;
}
.Mount_Head_Turkey-Base {
background-image: url(spritesmith6.png);
- background-position: -1074px -424px;
+ background-position: -1104px -848px;
width: 105px;
height: 105px;
}
.Mount_Head_Wolf-Base {
background-image: url(spritesmith6.png);
- background-position: -1074px -530px;
- width: 105px;
- height: 105px;
+ background-position: -408px -272px;
+ width: 135px;
+ height: 135px;
}
.Mount_Head_Wolf-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -1074px -636px;
- width: 105px;
- height: 105px;
+ background-position: 0px -408px;
+ width: 135px;
+ height: 135px;
}
.Mount_Head_Wolf-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -1074px -742px;
- width: 105px;
- height: 105px;
+ background-position: -136px -408px;
+ width: 135px;
+ height: 135px;
}
.Mount_Head_Wolf-Desert {
background-image: url(spritesmith6.png);
- background-position: -1074px -848px;
- width: 105px;
- height: 105px;
+ background-position: -272px -408px;
+ width: 135px;
+ height: 135px;
}
.Mount_Head_Wolf-Golden {
background-image: url(spritesmith6.png);
- background-position: 0px -1044px;
- width: 105px;
- height: 105px;
+ background-position: -408px -408px;
+ width: 135px;
+ height: 135px;
}
.Mount_Head_Wolf-Red {
background-image: url(spritesmith6.png);
- background-position: -106px -1044px;
- width: 105px;
- height: 105px;
+ background-position: -544px 0px;
+ width: 135px;
+ height: 135px;
}
.Mount_Head_Wolf-Shade {
background-image: url(spritesmith6.png);
- background-position: -212px -1044px;
- width: 105px;
- height: 105px;
+ background-position: -544px -136px;
+ width: 135px;
+ height: 135px;
}
.Mount_Head_Wolf-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -318px -1044px;
- width: 105px;
- height: 105px;
+ background-position: -544px -272px;
+ width: 135px;
+ height: 135px;
}
.Mount_Head_Wolf-White {
background-image: url(spritesmith6.png);
- background-position: -424px -1044px;
- width: 105px;
- height: 105px;
+ background-position: -544px -408px;
+ width: 135px;
+ height: 135px;
}
.Mount_Head_Wolf-Zombie {
background-image: url(spritesmith6.png);
- background-position: -530px -1044px;
- width: 105px;
- height: 105px;
+ background-position: -136px 0px;
+ width: 135px;
+ height: 135px;
}
.Pet-BearCub-Base {
background-image: url(spritesmith6.png);
- background-position: -742px -1044px;
+ background-position: -1060px -1074px;
width: 81px;
height: 99px;
}
.Pet-BearCub-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -824px -1044px;
+ background-position: -1210px 0px;
width: 81px;
height: 99px;
}
.Pet-BearCub-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -906px -1044px;
+ background-position: -1210px -100px;
width: 81px;
height: 99px;
}
.Pet-BearCub-Desert {
background-image: url(spritesmith6.png);
- background-position: -988px -1044px;
+ background-position: -1210px -200px;
width: 81px;
height: 99px;
}
.Pet-BearCub-Golden {
background-image: url(spritesmith6.png);
- background-position: -1070px -1044px;
+ background-position: -1210px -300px;
width: 81px;
height: 99px;
}
.Pet-BearCub-Polar {
background-image: url(spritesmith6.png);
- background-position: -1180px 0px;
+ background-position: -1210px -400px;
width: 81px;
height: 99px;
}
.Pet-BearCub-Red {
background-image: url(spritesmith6.png);
- background-position: -1180px -100px;
+ background-position: -1210px -500px;
width: 81px;
height: 99px;
}
.Pet-BearCub-Shade {
background-image: url(spritesmith6.png);
- background-position: -1180px -200px;
+ background-position: -1210px -600px;
width: 81px;
height: 99px;
}
.Pet-BearCub-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -1180px -300px;
+ background-position: -1210px -700px;
width: 81px;
height: 99px;
}
.Pet-BearCub-White {
background-image: url(spritesmith6.png);
- background-position: -1180px -400px;
+ background-position: -1210px -800px;
width: 81px;
height: 99px;
}
.Pet-BearCub-Zombie {
background-image: url(spritesmith6.png);
- background-position: -1180px -500px;
+ background-position: -1210px -900px;
width: 81px;
height: 99px;
}
.Pet-Bunny-Base {
background-image: url(spritesmith6.png);
- background-position: -1180px -600px;
+ background-position: -1210px -1000px;
width: 81px;
height: 99px;
}
.Pet-Bunny-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -1180px -700px;
+ background-position: 0px -1180px;
width: 81px;
height: 99px;
}
.Pet-Bunny-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -1180px -800px;
+ background-position: -82px -1180px;
width: 81px;
height: 99px;
}
.Pet-Bunny-Desert {
background-image: url(spritesmith6.png);
- background-position: -1180px -900px;
+ background-position: -164px -1180px;
width: 81px;
height: 99px;
}
.Pet-Bunny-Golden {
background-image: url(spritesmith6.png);
- background-position: -1180px -1000px;
+ background-position: -246px -1180px;
width: 81px;
height: 99px;
}
.Pet-Bunny-Red {
background-image: url(spritesmith6.png);
- background-position: 0px -1150px;
+ background-position: -328px -1180px;
width: 81px;
height: 99px;
}
.Pet-Bunny-Shade {
background-image: url(spritesmith6.png);
- background-position: -82px -1150px;
+ background-position: -410px -1180px;
width: 81px;
height: 99px;
}
.Pet-Bunny-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -164px -1150px;
+ background-position: -492px -1180px;
width: 81px;
height: 99px;
}
.Pet-Bunny-White {
background-image: url(spritesmith6.png);
- background-position: -246px -1150px;
+ background-position: -574px -1180px;
width: 81px;
height: 99px;
}
.Pet-Bunny-Zombie {
background-image: url(spritesmith6.png);
- background-position: -328px -1150px;
+ background-position: -656px -1180px;
width: 81px;
height: 99px;
}
.Pet-Cactus-Base {
background-image: url(spritesmith6.png);
- background-position: -410px -1150px;
+ background-position: -738px -1180px;
width: 81px;
height: 99px;
}
.Pet-Cactus-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -492px -1150px;
+ background-position: -820px -1180px;
width: 81px;
height: 99px;
}
.Pet-Cactus-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -574px -1150px;
+ background-position: -902px -1180px;
width: 81px;
height: 99px;
}
.Pet-Cactus-Desert {
background-image: url(spritesmith6.png);
- background-position: -656px -1150px;
+ background-position: -984px -1180px;
width: 81px;
height: 99px;
}
.Pet-Cactus-Golden {
background-image: url(spritesmith6.png);
- background-position: -738px -1150px;
+ background-position: -1066px -1180px;
width: 81px;
height: 99px;
}
.Pet-Cactus-Red {
background-image: url(spritesmith6.png);
- background-position: -820px -1150px;
+ background-position: -1148px -1180px;
width: 81px;
height: 99px;
}
.Pet-Cactus-Shade {
background-image: url(spritesmith6.png);
- background-position: -902px -1150px;
+ background-position: -1292px 0px;
width: 81px;
height: 99px;
}
.Pet-Cactus-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -984px -1150px;
+ background-position: -1292px -100px;
width: 81px;
height: 99px;
}
.Pet-Cactus-White {
background-image: url(spritesmith6.png);
- background-position: -1066px -1150px;
+ background-position: -1292px -200px;
width: 81px;
height: 99px;
}
.Pet-Cactus-Zombie {
background-image: url(spritesmith6.png);
- background-position: -1148px -1150px;
+ background-position: -1292px -300px;
width: 81px;
height: 99px;
}
.Pet-Deer-Base {
background-image: url(spritesmith6.png);
- background-position: -1262px 0px;
+ background-position: -1292px -400px;
width: 81px;
height: 99px;
}
.Pet-Deer-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -1262px -100px;
+ background-position: -1292px -500px;
width: 81px;
height: 99px;
}
.Pet-Deer-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -1262px -200px;
+ background-position: -1292px -600px;
width: 81px;
height: 99px;
}
.Pet-Deer-Desert {
background-image: url(spritesmith6.png);
- background-position: -1262px -300px;
+ background-position: -1292px -700px;
width: 81px;
height: 99px;
}
.Pet-Deer-Golden {
background-image: url(spritesmith6.png);
- background-position: -1262px -400px;
+ background-position: -1292px -800px;
width: 81px;
height: 99px;
}
.Pet-Deer-Red {
background-image: url(spritesmith6.png);
- background-position: -1262px -500px;
+ background-position: -1292px -900px;
width: 81px;
height: 99px;
}
.Pet-Deer-Shade {
background-image: url(spritesmith6.png);
- background-position: -1262px -600px;
+ background-position: -1292px -1000px;
width: 81px;
height: 99px;
}
.Pet-Deer-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -1262px -700px;
+ background-position: -1292px -1100px;
width: 81px;
height: 99px;
}
.Pet-Deer-White {
background-image: url(spritesmith6.png);
- background-position: -1262px -800px;
+ background-position: -1374px 0px;
width: 81px;
height: 99px;
}
.Pet-Deer-Zombie {
background-image: url(spritesmith6.png);
- background-position: -1262px -900px;
+ background-position: -1374px -100px;
width: 81px;
height: 99px;
}
.Pet-Dragon-Base {
background-image: url(spritesmith6.png);
- background-position: -1262px -1000px;
+ background-position: -1374px -200px;
width: 81px;
height: 99px;
}
.Pet-Dragon-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -1262px -1100px;
+ background-position: -1374px -300px;
width: 81px;
height: 99px;
}
.Pet-Dragon-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -1344px 0px;
+ background-position: -1374px -400px;
width: 81px;
height: 99px;
}
.Pet-Dragon-Desert {
background-image: url(spritesmith6.png);
- background-position: -1344px -100px;
+ background-position: -1374px -500px;
width: 81px;
height: 99px;
}
.Pet-Dragon-Golden {
background-image: url(spritesmith6.png);
- background-position: -1344px -200px;
+ background-position: -1374px -600px;
width: 81px;
height: 99px;
}
.Pet-Dragon-Hydra {
background-image: url(spritesmith6.png);
- background-position: -1344px -300px;
+ background-position: -1374px -700px;
width: 81px;
height: 99px;
}
.Pet-Dragon-Red {
background-image: url(spritesmith6.png);
- background-position: -1344px -400px;
+ background-position: -1374px -800px;
width: 81px;
height: 99px;
}
.Pet-Dragon-Shade {
background-image: url(spritesmith6.png);
- background-position: -1344px -500px;
+ background-position: -1374px -900px;
width: 81px;
height: 99px;
}
.Pet-Dragon-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -1344px -600px;
+ background-position: -1374px -1000px;
width: 81px;
height: 99px;
}
.Pet-Dragon-White {
background-image: url(spritesmith6.png);
- background-position: -1344px -700px;
+ background-position: -1374px -1100px;
width: 81px;
height: 99px;
}
.Pet-Dragon-Zombie {
background-image: url(spritesmith6.png);
- background-position: -1344px -800px;
+ background-position: 0px -1280px;
width: 81px;
height: 99px;
}
.Pet-Egg-Base {
background-image: url(spritesmith6.png);
- background-position: -1344px -900px;
+ background-position: -82px -1280px;
width: 81px;
height: 99px;
}
.Pet-Egg-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -1344px -1000px;
+ background-position: -164px -1280px;
width: 81px;
height: 99px;
}
.Pet-Egg-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -1344px -1100px;
+ background-position: -246px -1280px;
width: 81px;
height: 99px;
}
.Pet-Egg-Desert {
background-image: url(spritesmith6.png);
- background-position: 0px -1250px;
+ background-position: -328px -1280px;
width: 81px;
height: 99px;
}
.Pet-Egg-Golden {
background-image: url(spritesmith6.png);
- background-position: -82px -1250px;
+ background-position: -410px -1280px;
width: 81px;
height: 99px;
}
.Pet-Egg-Red {
background-image: url(spritesmith6.png);
- background-position: -164px -1250px;
+ background-position: -492px -1280px;
width: 81px;
height: 99px;
}
.Pet-Egg-Shade {
background-image: url(spritesmith6.png);
- background-position: -246px -1250px;
+ background-position: -574px -1280px;
width: 81px;
height: 99px;
}
.Pet-Egg-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -328px -1250px;
+ background-position: -656px -1280px;
width: 81px;
height: 99px;
}
.Pet-Egg-White {
background-image: url(spritesmith6.png);
- background-position: -410px -1250px;
+ background-position: -738px -1280px;
width: 81px;
height: 99px;
}
.Pet-Egg-Zombie {
background-image: url(spritesmith6.png);
- background-position: -492px -1250px;
+ background-position: -820px -1280px;
width: 81px;
height: 99px;
}
.Pet-FlyingPig-Base {
background-image: url(spritesmith6.png);
- background-position: -574px -1250px;
+ background-position: -902px -1280px;
width: 81px;
height: 99px;
}
.Pet-FlyingPig-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -656px -1250px;
+ background-position: -984px -1280px;
width: 81px;
height: 99px;
}
.Pet-FlyingPig-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -738px -1250px;
+ background-position: -1066px -1280px;
width: 81px;
height: 99px;
}
.Pet-FlyingPig-Desert {
background-image: url(spritesmith6.png);
- background-position: -820px -1250px;
+ background-position: -1148px -1280px;
width: 81px;
height: 99px;
}
.Pet-FlyingPig-Golden {
background-image: url(spritesmith6.png);
- background-position: -902px -1250px;
+ background-position: -1230px -1280px;
width: 81px;
height: 99px;
}
.Pet-FlyingPig-Red {
background-image: url(spritesmith6.png);
- background-position: -984px -1250px;
+ background-position: -1312px -1280px;
width: 81px;
height: 99px;
}
.Pet-FlyingPig-Shade {
background-image: url(spritesmith6.png);
- background-position: -1066px -1250px;
+ background-position: -1456px 0px;
width: 81px;
height: 99px;
}
.Pet-FlyingPig-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -1148px -1250px;
+ background-position: -1456px -100px;
width: 81px;
height: 99px;
}
.Pet-FlyingPig-White {
background-image: url(spritesmith6.png);
- background-position: -1230px -1250px;
+ background-position: -1456px -200px;
width: 81px;
height: 99px;
}
.Pet-FlyingPig-Zombie {
background-image: url(spritesmith6.png);
- background-position: -1312px -1250px;
+ background-position: -1456px -300px;
width: 81px;
height: 99px;
}
.Pet-Fox-Base {
background-image: url(spritesmith6.png);
- background-position: -1426px 0px;
+ background-position: -1456px -400px;
width: 81px;
height: 99px;
}
.Pet-Fox-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -1426px -100px;
+ background-position: -1456px -500px;
width: 81px;
height: 99px;
}
.Pet-Fox-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -1426px -200px;
+ background-position: -1456px -600px;
width: 81px;
height: 99px;
}
.Pet-Fox-Desert {
background-image: url(spritesmith6.png);
- background-position: -1426px -300px;
+ background-position: -1456px -700px;
width: 81px;
height: 99px;
}
.Pet-Fox-Golden {
background-image: url(spritesmith6.png);
- background-position: -1426px -400px;
+ background-position: -1456px -800px;
width: 81px;
height: 99px;
}
.Pet-Fox-Red {
background-image: url(spritesmith6.png);
- background-position: -1426px -500px;
+ background-position: -1456px -900px;
width: 81px;
height: 99px;
}
.Pet-Fox-Shade {
background-image: url(spritesmith6.png);
- background-position: -1426px -600px;
+ background-position: -1456px -1000px;
width: 81px;
height: 99px;
}
.Pet-Fox-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -1426px -700px;
+ background-position: -1456px -1100px;
width: 81px;
height: 99px;
}
.Pet-Fox-White {
background-image: url(spritesmith6.png);
- background-position: -1426px -800px;
+ background-position: -1456px -1200px;
width: 81px;
height: 99px;
}
.Pet-Fox-Zombie {
background-image: url(spritesmith6.png);
- background-position: -1426px -900px;
+ background-position: 0px -1380px;
width: 81px;
height: 99px;
}
.Pet-Gryphon-Base {
background-image: url(spritesmith6.png);
- background-position: -1426px -1000px;
+ background-position: -82px -1380px;
width: 81px;
height: 99px;
}
.Pet-Gryphon-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -1426px -1100px;
+ background-position: -164px -1380px;
width: 81px;
height: 99px;
}
.Pet-Gryphon-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -1426px -1200px;
+ background-position: -246px -1380px;
width: 81px;
height: 99px;
}
.Pet-Gryphon-Desert {
background-image: url(spritesmith6.png);
- background-position: 0px -1350px;
+ background-position: -328px -1380px;
width: 81px;
height: 99px;
}
.Pet-Gryphon-Golden {
background-image: url(spritesmith6.png);
- background-position: -82px -1350px;
+ background-position: -410px -1380px;
width: 81px;
height: 99px;
}
.Pet-Gryphon-Red {
background-image: url(spritesmith6.png);
- background-position: -164px -1350px;
+ background-position: -492px -1380px;
width: 81px;
height: 99px;
}
.Pet-Gryphon-Shade {
background-image: url(spritesmith6.png);
- background-position: -246px -1350px;
+ background-position: -574px -1380px;
width: 81px;
height: 99px;
}
.Pet-Gryphon-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -328px -1350px;
+ background-position: -656px -1380px;
width: 81px;
height: 99px;
}
.Pet-Gryphon-White {
background-image: url(spritesmith6.png);
- background-position: -410px -1350px;
+ background-position: -738px -1380px;
width: 81px;
height: 99px;
}
.Pet-Gryphon-Zombie {
background-image: url(spritesmith6.png);
- background-position: -492px -1350px;
+ background-position: -820px -1380px;
width: 81px;
height: 99px;
}
.Pet-Hedgehog-Base {
background-image: url(spritesmith6.png);
- background-position: -574px -1350px;
+ background-position: -902px -1380px;
width: 81px;
height: 99px;
}
.Pet-Hedgehog-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -656px -1350px;
+ background-position: -984px -1380px;
width: 81px;
height: 99px;
}
.Pet-Hedgehog-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -738px -1350px;
+ background-position: -1066px -1380px;
width: 81px;
height: 99px;
}
.Pet-Hedgehog-Desert {
background-image: url(spritesmith6.png);
- background-position: -820px -1350px;
+ background-position: -1148px -1380px;
width: 81px;
height: 99px;
}
.Pet-Hedgehog-Golden {
background-image: url(spritesmith6.png);
- background-position: -902px -1350px;
+ background-position: -1230px -1380px;
width: 81px;
height: 99px;
}
.Pet-Hedgehog-Red {
background-image: url(spritesmith6.png);
- background-position: -984px -1350px;
+ background-position: -1312px -1380px;
width: 81px;
height: 99px;
}
.Pet-Hedgehog-Shade {
background-image: url(spritesmith6.png);
- background-position: -1066px -1350px;
+ background-position: -1394px -1380px;
width: 81px;
height: 99px;
}
.Pet-Hedgehog-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -1148px -1350px;
+ background-position: -1538px 0px;
width: 81px;
height: 99px;
}
.Pet-Hedgehog-White {
background-image: url(spritesmith6.png);
- background-position: -1230px -1350px;
+ background-position: -1538px -100px;
width: 81px;
height: 99px;
}
.Pet-Hedgehog-Zombie {
background-image: url(spritesmith6.png);
- background-position: -1312px -1350px;
+ background-position: -1538px -200px;
width: 81px;
height: 99px;
}
.Pet-JackOLantern-Base {
background-image: url(spritesmith6.png);
- background-position: -1394px -1350px;
+ background-position: -1538px -300px;
width: 81px;
height: 99px;
}
.Pet-LionCub-Base {
background-image: url(spritesmith6.png);
- background-position: -1508px 0px;
+ background-position: -1538px -400px;
width: 81px;
height: 99px;
}
.Pet-LionCub-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -1508px -100px;
+ background-position: -1538px -500px;
width: 81px;
height: 99px;
}
.Pet-LionCub-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -1508px -200px;
+ background-position: -1538px -600px;
width: 81px;
height: 99px;
}
.Pet-LionCub-Desert {
background-image: url(spritesmith6.png);
- background-position: -1508px -300px;
+ background-position: -1538px -700px;
width: 81px;
height: 99px;
}
.Pet-LionCub-Golden {
background-image: url(spritesmith6.png);
- background-position: -1508px -400px;
+ background-position: -1538px -800px;
width: 81px;
height: 99px;
}
.Pet-LionCub-Red {
background-image: url(spritesmith6.png);
- background-position: -1508px -500px;
+ background-position: -1538px -900px;
width: 81px;
height: 99px;
}
.Pet-LionCub-Shade {
background-image: url(spritesmith6.png);
- background-position: -1508px -600px;
+ background-position: -1538px -1000px;
width: 81px;
height: 99px;
}
.Pet-LionCub-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -1508px -700px;
+ background-position: -1538px -1100px;
width: 81px;
height: 99px;
}
.Pet-LionCub-White {
background-image: url(spritesmith6.png);
- background-position: -1508px -800px;
+ background-position: -1538px -1200px;
width: 81px;
height: 99px;
}
.Pet-LionCub-Zombie {
background-image: url(spritesmith6.png);
- background-position: -1508px -900px;
+ background-position: -1538px -1300px;
width: 81px;
height: 99px;
}
.Pet-Mammoth-Base {
background-image: url(spritesmith6.png);
- background-position: -1508px -1000px;
+ background-position: 0px -1480px;
width: 81px;
height: 99px;
}
.Pet-MantisShrimp-Base {
background-image: url(spritesmith6.png);
- background-position: -1508px -1100px;
+ background-position: -82px -1480px;
width: 81px;
height: 99px;
}
.Pet-Octopus-Base {
background-image: url(spritesmith6.png);
- background-position: -1508px -1200px;
+ background-position: -164px -1480px;
width: 81px;
height: 99px;
}
.Pet-Octopus-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -1508px -1300px;
+ background-position: -246px -1480px;
width: 81px;
height: 99px;
}
.Pet-Octopus-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: 0px -1450px;
+ background-position: -328px -1480px;
width: 81px;
height: 99px;
}
.Pet-Octopus-Desert {
background-image: url(spritesmith6.png);
- background-position: -82px -1450px;
+ background-position: -410px -1480px;
width: 81px;
height: 99px;
}
.Pet-Octopus-Golden {
background-image: url(spritesmith6.png);
- background-position: -164px -1450px;
+ background-position: -492px -1480px;
width: 81px;
height: 99px;
}
.Pet-Octopus-Red {
background-image: url(spritesmith6.png);
- background-position: -246px -1450px;
+ background-position: -574px -1480px;
width: 81px;
height: 99px;
}
.Pet-Octopus-Shade {
background-image: url(spritesmith6.png);
- background-position: -328px -1450px;
+ background-position: -656px -1480px;
width: 81px;
height: 99px;
}
.Pet-Octopus-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -410px -1450px;
+ background-position: -738px -1480px;
width: 81px;
height: 99px;
}
.Pet-Octopus-White {
background-image: url(spritesmith6.png);
- background-position: -492px -1450px;
+ background-position: -820px -1480px;
width: 81px;
height: 99px;
}
.Pet-Octopus-Zombie {
background-image: url(spritesmith6.png);
- background-position: -574px -1450px;
+ background-position: -902px -1480px;
width: 81px;
height: 99px;
}
.Pet-Owl-Base {
background-image: url(spritesmith6.png);
- background-position: -656px -1450px;
+ background-position: -984px -1480px;
width: 81px;
height: 99px;
}
.Pet-Owl-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -738px -1450px;
+ background-position: -1066px -1480px;
width: 81px;
height: 99px;
}
.Pet-Owl-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -820px -1450px;
+ background-position: -1148px -1480px;
width: 81px;
height: 99px;
}
.Pet-Owl-Desert {
background-image: url(spritesmith6.png);
- background-position: -902px -1450px;
+ background-position: -1230px -1480px;
width: 81px;
height: 99px;
}
.Pet-Owl-Golden {
background-image: url(spritesmith6.png);
- background-position: -984px -1450px;
+ background-position: -1312px -1480px;
width: 81px;
height: 99px;
}
.Pet-Owl-Red {
background-image: url(spritesmith6.png);
- background-position: -1066px -1450px;
+ background-position: -1394px -1480px;
width: 81px;
height: 99px;
}
.Pet-Owl-Shade {
background-image: url(spritesmith6.png);
- background-position: -1148px -1450px;
+ background-position: -1476px -1480px;
width: 81px;
height: 99px;
}
.Pet-Owl-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -1230px -1450px;
+ background-position: -1620px 0px;
width: 81px;
height: 99px;
}
.Pet-Owl-White {
background-image: url(spritesmith6.png);
- background-position: -1312px -1450px;
+ background-position: -1620px -100px;
width: 81px;
height: 99px;
}
.Pet-Owl-Zombie {
background-image: url(spritesmith6.png);
- background-position: -1394px -1450px;
+ background-position: -1620px -200px;
width: 81px;
height: 99px;
}
.Pet-PandaCub-Base {
background-image: url(spritesmith6.png);
- background-position: -1476px -1450px;
+ background-position: -1620px -300px;
width: 81px;
height: 99px;
}
.Pet-PandaCub-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -1590px 0px;
+ background-position: -1620px -400px;
width: 81px;
height: 99px;
}
.Pet-PandaCub-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -1590px -100px;
+ background-position: -1620px -500px;
width: 81px;
height: 99px;
}
.Pet-PandaCub-Desert {
background-image: url(spritesmith6.png);
- background-position: -1590px -200px;
+ background-position: -1620px -600px;
width: 81px;
height: 99px;
}
.Pet-PandaCub-Golden {
background-image: url(spritesmith6.png);
- background-position: -1590px -300px;
+ background-position: -1620px -700px;
width: 81px;
height: 99px;
}
.Pet-PandaCub-Red {
background-image: url(spritesmith6.png);
- background-position: -1590px -400px;
+ background-position: -1620px -800px;
width: 81px;
height: 99px;
}
.Pet-PandaCub-Shade {
background-image: url(spritesmith6.png);
- background-position: -1590px -500px;
+ background-position: -1620px -900px;
width: 81px;
height: 99px;
}
.Pet-PandaCub-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -1590px -600px;
+ background-position: -1620px -1000px;
width: 81px;
height: 99px;
}
.Pet-PandaCub-White {
background-image: url(spritesmith6.png);
- background-position: -1590px -700px;
+ background-position: -1620px -1100px;
width: 81px;
height: 99px;
}
.Pet-PandaCub-Zombie {
background-image: url(spritesmith6.png);
- background-position: -1590px -800px;
+ background-position: -1620px -1200px;
width: 81px;
height: 99px;
}
.Pet-Parrot-Base {
background-image: url(spritesmith6.png);
- background-position: -1590px -900px;
+ background-position: -1620px -1300px;
width: 81px;
height: 99px;
}
.Pet-Parrot-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -1590px -1000px;
+ background-position: -1620px -1400px;
width: 81px;
height: 99px;
}
.Pet-Parrot-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -1590px -1100px;
+ background-position: 0px -1580px;
width: 81px;
height: 99px;
}
.Pet-Parrot-Desert {
background-image: url(spritesmith6.png);
- background-position: -1590px -1200px;
+ background-position: -82px -1580px;
width: 81px;
height: 99px;
}
.Pet-Parrot-Golden {
background-image: url(spritesmith6.png);
- background-position: -1590px -1300px;
+ background-position: -164px -1580px;
width: 81px;
height: 99px;
}
.Pet-Parrot-Red {
background-image: url(spritesmith6.png);
- background-position: -1590px -1400px;
+ background-position: -246px -1580px;
width: 81px;
height: 99px;
}
.Pet-Parrot-Shade {
background-image: url(spritesmith6.png);
- background-position: 0px -1550px;
+ background-position: -328px -1580px;
width: 81px;
height: 99px;
}
.Pet-Parrot-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -82px -1550px;
+ background-position: -410px -1580px;
width: 81px;
height: 99px;
}
.Pet-Parrot-White {
background-image: url(spritesmith6.png);
- background-position: -164px -1550px;
+ background-position: -492px -1580px;
width: 81px;
height: 99px;
}
.Pet-Parrot-Zombie {
background-image: url(spritesmith6.png);
- background-position: -246px -1550px;
+ background-position: -574px -1580px;
width: 81px;
height: 99px;
}
.Pet-Penguin-Base {
background-image: url(spritesmith6.png);
- background-position: -328px -1550px;
+ background-position: -656px -1580px;
width: 81px;
height: 99px;
}
.Pet-Penguin-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -410px -1550px;
+ background-position: -738px -1580px;
width: 81px;
height: 99px;
}
.Pet-Penguin-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -492px -1550px;
+ background-position: -820px -1580px;
width: 81px;
height: 99px;
}
.Pet-Penguin-Desert {
background-image: url(spritesmith6.png);
- background-position: -574px -1550px;
+ background-position: -902px -1580px;
width: 81px;
height: 99px;
}
.Pet-Penguin-Golden {
background-image: url(spritesmith6.png);
- background-position: -656px -1550px;
+ background-position: -984px -1580px;
width: 81px;
height: 99px;
}
.Pet-Penguin-Red {
background-image: url(spritesmith6.png);
- background-position: -738px -1550px;
+ background-position: -1066px -1580px;
width: 81px;
height: 99px;
}
.Pet-Penguin-Shade {
background-image: url(spritesmith6.png);
- background-position: -820px -1550px;
+ background-position: -1148px -1580px;
width: 81px;
height: 99px;
}
.Pet-Penguin-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -902px -1550px;
+ background-position: -1230px -1580px;
width: 81px;
height: 99px;
}
.Pet-Penguin-White {
background-image: url(spritesmith6.png);
- background-position: -984px -1550px;
+ background-position: -1312px -1580px;
width: 81px;
height: 99px;
}
.Pet-Penguin-Zombie {
background-image: url(spritesmith6.png);
- background-position: -1066px -1550px;
+ background-position: -1394px -1580px;
width: 81px;
height: 99px;
}
.Pet-Rat-Base {
background-image: url(spritesmith6.png);
- background-position: -1148px -1550px;
+ background-position: -1476px -1580px;
width: 81px;
height: 99px;
}
.Pet-Rat-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -1230px -1550px;
+ background-position: -1558px -1580px;
width: 81px;
height: 99px;
}
.Pet-Rat-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -1312px -1550px;
+ background-position: -1702px 0px;
width: 81px;
height: 99px;
}
.Pet-Rat-Desert {
background-image: url(spritesmith6.png);
- background-position: -1394px -1550px;
+ background-position: -1702px -100px;
width: 81px;
height: 99px;
}
.Pet-Rat-Golden {
background-image: url(spritesmith6.png);
- background-position: -1476px -1550px;
+ background-position: -1702px -200px;
width: 81px;
height: 99px;
}
.Pet-Rat-Red {
background-image: url(spritesmith6.png);
- background-position: -1558px -1550px;
+ background-position: -1702px -300px;
width: 81px;
height: 99px;
}
.Pet-Rat-Shade {
background-image: url(spritesmith6.png);
- background-position: -1672px 0px;
+ background-position: -1702px -400px;
width: 81px;
height: 99px;
}
.Pet-Rat-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -1672px -100px;
+ background-position: -1702px -500px;
width: 81px;
height: 99px;
}
.Pet-Rat-White {
background-image: url(spritesmith6.png);
- background-position: -1672px -200px;
+ background-position: -1702px -600px;
width: 81px;
height: 99px;
}
.Pet-Rat-Zombie {
background-image: url(spritesmith6.png);
- background-position: -1672px -300px;
+ background-position: -1702px -700px;
width: 81px;
height: 99px;
}
.Pet-Rock-Base {
background-image: url(spritesmith6.png);
- background-position: -1672px -400px;
+ background-position: -1702px -800px;
width: 81px;
height: 99px;
}
.Pet-Rock-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -1672px -500px;
+ background-position: -1702px -900px;
width: 81px;
height: 99px;
}
.Pet-Rock-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -1672px -600px;
+ background-position: -1702px -1000px;
width: 81px;
height: 99px;
}
.Pet-Rock-Desert {
background-image: url(spritesmith6.png);
- background-position: -1672px -700px;
+ background-position: -1702px -1100px;
width: 81px;
height: 99px;
}
.Pet-Rock-Golden {
background-image: url(spritesmith6.png);
- background-position: -1672px -800px;
+ background-position: -1702px -1200px;
width: 81px;
height: 99px;
}
.Pet-Rock-Red {
background-image: url(spritesmith6.png);
- background-position: -1672px -900px;
+ background-position: -1702px -1300px;
width: 81px;
height: 99px;
}
.Pet-Rock-Shade {
background-image: url(spritesmith6.png);
- background-position: -1672px -1000px;
+ background-position: -1702px -1400px;
width: 81px;
height: 99px;
}
.Pet-Rock-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -1672px -1100px;
+ background-position: -1702px -1500px;
width: 81px;
height: 99px;
}
.Pet-Rock-White {
background-image: url(spritesmith6.png);
- background-position: -1672px -1200px;
+ background-position: 0px -1680px;
width: 81px;
height: 99px;
}
.Pet-Rock-Zombie {
background-image: url(spritesmith6.png);
- background-position: -1672px -1300px;
+ background-position: -82px -1680px;
width: 81px;
height: 99px;
}
.Pet-Rooster-Base {
background-image: url(spritesmith6.png);
- background-position: -1672px -1400px;
+ background-position: -164px -1680px;
width: 81px;
height: 99px;
}
.Pet-Rooster-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -1672px -1500px;
+ background-position: -246px -1680px;
width: 81px;
height: 99px;
}
.Pet-Rooster-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: 0px -1650px;
+ background-position: -328px -1680px;
width: 81px;
height: 99px;
}
.Pet-Rooster-Desert {
background-image: url(spritesmith6.png);
- background-position: -82px -1650px;
+ background-position: -410px -1680px;
width: 81px;
height: 99px;
}
.Pet-Rooster-Golden {
background-image: url(spritesmith6.png);
- background-position: -164px -1650px;
+ background-position: -492px -1680px;
width: 81px;
height: 99px;
}
.Pet-Rooster-Red {
background-image: url(spritesmith6.png);
- background-position: -246px -1650px;
+ background-position: -574px -1680px;
width: 81px;
height: 99px;
}
.Pet-Rooster-Shade {
background-image: url(spritesmith6.png);
- background-position: -328px -1650px;
+ background-position: -656px -1680px;
width: 81px;
height: 99px;
}
.Pet-Rooster-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -410px -1650px;
+ background-position: -738px -1680px;
width: 81px;
height: 99px;
}
.Pet-Rooster-White {
background-image: url(spritesmith6.png);
- background-position: -492px -1650px;
+ background-position: -820px -1680px;
width: 81px;
height: 99px;
}
.Pet-Rooster-Zombie {
background-image: url(spritesmith6.png);
- background-position: -574px -1650px;
+ background-position: -902px -1680px;
width: 81px;
height: 99px;
}
.Pet-Seahorse-Base {
background-image: url(spritesmith6.png);
- background-position: -656px -1650px;
+ background-position: -984px -1680px;
width: 81px;
height: 99px;
}
.Pet-Seahorse-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -738px -1650px;
+ background-position: -1066px -1680px;
width: 81px;
height: 99px;
}
.Pet-Seahorse-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -820px -1650px;
+ background-position: -1148px -1680px;
width: 81px;
height: 99px;
}
.Pet-Seahorse-Desert {
background-image: url(spritesmith6.png);
- background-position: -902px -1650px;
+ background-position: -1230px -1680px;
width: 81px;
height: 99px;
}
.Pet-Seahorse-Golden {
background-image: url(spritesmith6.png);
- background-position: -984px -1650px;
+ background-position: -1312px -1680px;
width: 81px;
height: 99px;
}
.Pet-Seahorse-Red {
background-image: url(spritesmith6.png);
- background-position: -1066px -1650px;
+ background-position: -1394px -1680px;
width: 81px;
height: 99px;
}
.Pet-Seahorse-Shade {
background-image: url(spritesmith6.png);
- background-position: -1148px -1650px;
+ background-position: -1476px -1680px;
width: 81px;
height: 99px;
}
.Pet-Seahorse-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -1230px -1650px;
+ background-position: -1558px -1680px;
width: 81px;
height: 99px;
}
.Pet-Seahorse-White {
background-image: url(spritesmith6.png);
- background-position: -1312px -1650px;
+ background-position: -1640px -1680px;
width: 81px;
height: 99px;
}
.Pet-Seahorse-Zombie {
background-image: url(spritesmith6.png);
- background-position: -1394px -1650px;
+ background-position: -1784px 0px;
+ width: 81px;
+ height: 99px;
+}
+.Pet-Sheep-Base {
+ background-image: url(spritesmith6.png);
+ background-position: -1784px -100px;
+ width: 81px;
+ height: 99px;
+}
+.Pet-Sheep-CottonCandyBlue {
+ background-image: url(spritesmith6.png);
+ background-position: -1784px -200px;
+ width: 81px;
+ height: 99px;
+}
+.Pet-Sheep-CottonCandyPink {
+ background-image: url(spritesmith6.png);
+ background-position: -1784px -300px;
+ width: 81px;
+ height: 99px;
+}
+.Pet-Sheep-Desert {
+ background-image: url(spritesmith6.png);
+ background-position: -1784px -400px;
+ width: 81px;
+ height: 99px;
+}
+.Pet-Sheep-Golden {
+ background-image: url(spritesmith6.png);
+ background-position: -1784px -500px;
+ width: 81px;
+ height: 99px;
+}
+.Pet-Sheep-Red {
+ background-image: url(spritesmith6.png);
+ background-position: -1784px -600px;
+ width: 81px;
+ height: 99px;
+}
+.Pet-Sheep-Shade {
+ background-image: url(spritesmith6.png);
+ background-position: -1784px -700px;
+ width: 81px;
+ height: 99px;
+}
+.Pet-Sheep-Skeleton {
+ background-image: url(spritesmith6.png);
+ background-position: -1784px -800px;
+ width: 81px;
+ height: 99px;
+}
+.Pet-Sheep-White {
+ background-image: url(spritesmith6.png);
+ background-position: -1784px -900px;
+ width: 81px;
+ height: 99px;
+}
+.Pet-Sheep-Zombie {
+ background-image: url(spritesmith6.png);
+ background-position: -1784px -1000px;
width: 81px;
height: 99px;
}
.Pet-Slime-Base {
background-image: url(spritesmith6.png);
- background-position: -1476px -1650px;
+ background-position: -1784px -1100px;
width: 81px;
height: 99px;
}
.Pet-Slime-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -1558px -1650px;
+ background-position: -1784px -1200px;
width: 81px;
height: 99px;
}
.Pet-Slime-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -1640px -1650px;
+ background-position: -1784px -1300px;
width: 81px;
height: 99px;
}
.Pet-Slime-Desert {
background-image: url(spritesmith6.png);
- background-position: -1754px 0px;
+ background-position: -1784px -1400px;
width: 81px;
height: 99px;
}
.Pet-Slime-Golden {
background-image: url(spritesmith6.png);
- background-position: -1754px -100px;
+ background-position: -1784px -1500px;
width: 81px;
height: 99px;
}
.Pet-Slime-Red {
background-image: url(spritesmith6.png);
- background-position: -1754px -200px;
+ background-position: -1784px -1600px;
width: 81px;
height: 99px;
}
.Pet-Slime-Shade {
background-image: url(spritesmith6.png);
- background-position: -1754px -300px;
+ background-position: -1866px 0px;
width: 81px;
height: 99px;
}
.Pet-Slime-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -1754px -400px;
+ background-position: -1866px -100px;
width: 81px;
height: 99px;
}
.Pet-Slime-White {
background-image: url(spritesmith6.png);
- background-position: -1754px -500px;
+ background-position: -1866px -200px;
width: 81px;
height: 99px;
}
.Pet-Slime-Zombie {
background-image: url(spritesmith6.png);
- background-position: -1754px -600px;
+ background-position: -1866px -300px;
width: 81px;
height: 99px;
}
.Pet-Spider-Base {
background-image: url(spritesmith6.png);
- background-position: -1754px -700px;
+ background-position: -1866px -400px;
width: 81px;
height: 99px;
}
.Pet-Spider-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -1754px -800px;
+ background-position: -1866px -500px;
width: 81px;
height: 99px;
}
.Pet-Spider-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -1754px -900px;
+ background-position: -1866px -600px;
width: 81px;
height: 99px;
}
.Pet-Spider-Desert {
background-image: url(spritesmith6.png);
- background-position: -1754px -1000px;
+ background-position: -1866px -700px;
width: 81px;
height: 99px;
}
.Pet-Spider-Golden {
background-image: url(spritesmith6.png);
- background-position: -1754px -1100px;
+ background-position: -1866px -800px;
width: 81px;
height: 99px;
}
.Pet-Spider-Red {
background-image: url(spritesmith6.png);
- background-position: -1754px -1200px;
+ background-position: -1866px -900px;
width: 81px;
height: 99px;
}
.Pet-Spider-Shade {
background-image: url(spritesmith6.png);
- background-position: -1754px -1300px;
+ background-position: -1866px -1000px;
width: 81px;
height: 99px;
}
.Pet-Spider-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -1754px -1400px;
+ background-position: -1866px -1100px;
width: 81px;
height: 99px;
}
.Pet-Spider-White {
background-image: url(spritesmith6.png);
- background-position: -1754px -1500px;
+ background-position: -1866px -1200px;
width: 81px;
height: 99px;
}
.Pet-Spider-Zombie {
background-image: url(spritesmith6.png);
- background-position: -1754px -1600px;
+ background-position: -1866px -1300px;
width: 81px;
height: 99px;
}
.Pet-TRex-Base {
background-image: url(spritesmith6.png);
- background-position: -1836px 0px;
+ background-position: -1866px -1400px;
width: 81px;
height: 99px;
}
.Pet-TRex-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -1836px -100px;
+ background-position: -1866px -1500px;
width: 81px;
height: 99px;
}
.Pet-TRex-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -1836px -200px;
+ background-position: -1866px -1600px;
width: 81px;
height: 99px;
}
.Pet-TRex-Desert {
background-image: url(spritesmith6.png);
- background-position: -1836px -300px;
+ background-position: 0px -1780px;
width: 81px;
height: 99px;
}
.Pet-TRex-Golden {
background-image: url(spritesmith6.png);
- background-position: -1836px -400px;
+ background-position: -82px -1780px;
width: 81px;
height: 99px;
}
.Pet-TRex-Red {
background-image: url(spritesmith6.png);
- background-position: -1836px -500px;
+ background-position: -164px -1780px;
width: 81px;
height: 99px;
}
.Pet-TRex-Shade {
background-image: url(spritesmith6.png);
- background-position: -1836px -600px;
+ background-position: -246px -1780px;
width: 81px;
height: 99px;
}
.Pet-TRex-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -1836px -700px;
+ background-position: -328px -1780px;
width: 81px;
height: 99px;
}
.Pet-TRex-White {
background-image: url(spritesmith6.png);
- background-position: -1836px -800px;
+ background-position: -410px -1780px;
width: 81px;
height: 99px;
}
.Pet-TRex-Zombie {
background-image: url(spritesmith6.png);
- background-position: -1836px -900px;
+ background-position: -492px -1780px;
width: 81px;
height: 99px;
}
.Pet-TigerCub-Base {
background-image: url(spritesmith6.png);
- background-position: -1836px -1000px;
+ background-position: -574px -1780px;
width: 81px;
height: 99px;
}
.Pet-TigerCub-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -1836px -1100px;
+ background-position: -656px -1780px;
width: 81px;
height: 99px;
}
.Pet-TigerCub-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -1836px -1200px;
+ background-position: -738px -1780px;
width: 81px;
height: 99px;
}
.Pet-TigerCub-Desert {
background-image: url(spritesmith6.png);
- background-position: -1836px -1300px;
+ background-position: -820px -1780px;
width: 81px;
height: 99px;
}
.Pet-TigerCub-Golden {
background-image: url(spritesmith6.png);
- background-position: -1836px -1400px;
+ background-position: -902px -1780px;
width: 81px;
height: 99px;
}
.Pet-TigerCub-Red {
background-image: url(spritesmith6.png);
- background-position: -1836px -1500px;
+ background-position: -984px -1780px;
width: 81px;
height: 99px;
}
.Pet-TigerCub-Shade {
background-image: url(spritesmith6.png);
- background-position: -1836px -1600px;
+ background-position: -1066px -1780px;
width: 81px;
height: 99px;
}
.Pet-TigerCub-Skeleton {
background-image: url(spritesmith6.png);
- background-position: 0px -1750px;
+ background-position: -1148px -1780px;
width: 81px;
height: 99px;
}
.Pet-TigerCub-White {
background-image: url(spritesmith6.png);
- background-position: -82px -1750px;
+ background-position: -1230px -1780px;
width: 81px;
height: 99px;
}
.Pet-TigerCub-Zombie {
background-image: url(spritesmith6.png);
- background-position: -164px -1750px;
+ background-position: -1312px -1780px;
width: 81px;
height: 99px;
}
.Pet-Turkey-Base {
background-image: url(spritesmith6.png);
- background-position: -246px -1750px;
+ background-position: -1394px -1780px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Base {
background-image: url(spritesmith6.png);
- background-position: -328px -1750px;
+ background-position: -1476px -1780px;
width: 81px;
height: 99px;
}
.Pet-Wolf-CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -410px -1750px;
+ background-position: -1558px -1780px;
width: 81px;
height: 99px;
}
.Pet-Wolf-CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -492px -1750px;
+ background-position: -1640px -1780px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Desert {
background-image: url(spritesmith6.png);
- background-position: -574px -1750px;
+ background-position: -1722px -1780px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Golden {
background-image: url(spritesmith6.png);
- background-position: -656px -1750px;
+ background-position: -1804px -1780px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Red {
background-image: url(spritesmith6.png);
- background-position: -738px -1750px;
+ background-position: -1948px 0px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Shade {
background-image: url(spritesmith6.png);
- background-position: -820px -1750px;
+ background-position: -1948px -100px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Skeleton {
background-image: url(spritesmith6.png);
- background-position: -902px -1750px;
+ background-position: -1948px -200px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Veteran {
background-image: url(spritesmith6.png);
- background-position: -984px -1750px;
+ background-position: -1948px -300px;
width: 81px;
height: 99px;
}
.Pet-Wolf-White {
background-image: url(spritesmith6.png);
- background-position: -1066px -1750px;
+ background-position: -1948px -400px;
width: 81px;
height: 99px;
}
.Pet-Wolf-Zombie {
background-image: url(spritesmith6.png);
- background-position: -1148px -1750px;
+ background-position: -1948px -500px;
width: 81px;
height: 99px;
}
.Pet_HatchingPotion_Base {
background-image: url(spritesmith6.png);
- background-position: -1074px -954px;
+ background-position: -1948px -600px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_CottonCandyBlue {
background-image: url(spritesmith6.png);
- background-position: -1123px -954px;
+ background-position: -1948px -652px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_CottonCandyPink {
background-image: url(spritesmith6.png);
- background-position: -968px -848px;
+ background-position: -1948px -704px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Desert {
background-image: url(spritesmith6.png);
- background-position: -1017px -848px;
+ background-position: -1948px -756px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Golden {
background-image: url(spritesmith6.png);
- background-position: -862px -742px;
+ background-position: -1948px -808px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Red {
background-image: url(spritesmith6.png);
- background-position: -911px -742px;
+ background-position: -1948px -860px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Shade {
background-image: url(spritesmith6.png);
- background-position: -756px -636px;
+ background-position: -1948px -912px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Skeleton {
background-image: url(spritesmith6.png);
- background-position: -805px -636px;
+ background-position: -1948px -964px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_White {
background-image: url(spritesmith6.png);
- background-position: -650px -530px;
+ background-position: -1948px -1016px;
width: 48px;
height: 51px;
}
.Pet_HatchingPotion_Zombie {
background-image: url(spritesmith6.png);
- background-position: -699px -530px;
+ background-position: -1948px -1068px;
width: 48px;
height: 51px;
}
diff --git a/common/dist/sprites/spritesmith6.png b/common/dist/sprites/spritesmith6.png
index f4d474846d..c25e9bdbdd 100644
Binary files a/common/dist/sprites/spritesmith6.png and b/common/dist/sprites/spritesmith6.png differ
diff --git a/common/img/sprites/spritesmith/achievements/achievement-ultimate-healer.png b/common/img/sprites/spritesmith/achievements/achievement-ultimate-healer.png
new file mode 100644
index 0000000000..1bcece61dc
Binary files /dev/null and b/common/img/sprites/spritesmith/achievements/achievement-ultimate-healer.png differ
diff --git a/common/img/sprites/spritesmith/achievements/achievement-ultimate-mage.png b/common/img/sprites/spritesmith/achievements/achievement-ultimate-mage.png
new file mode 100644
index 0000000000..fd822f83f5
Binary files /dev/null and b/common/img/sprites/spritesmith/achievements/achievement-ultimate-mage.png differ
diff --git a/common/img/sprites/spritesmith/achievements/achievement-ultimate-rogue.png b/common/img/sprites/spritesmith/achievements/achievement-ultimate-rogue.png
new file mode 100644
index 0000000000..dc46234170
Binary files /dev/null and b/common/img/sprites/spritesmith/achievements/achievement-ultimate-rogue.png differ
diff --git a/common/img/sprites/spritesmith/achievements/achievement-helm.png b/common/img/sprites/spritesmith/achievements/achievement-ultimate-warrior.png
similarity index 100%
rename from common/img/sprites/spritesmith/achievements/achievement-helm.png
rename to common/img/sprites/spritesmith/achievements/achievement-ultimate-warrior.png
diff --git a/common/img/sprites/spritesmith/backgrounds/background_drifting_raft.png b/common/img/sprites/spritesmith/backgrounds/background_drifting_raft.png
new file mode 100644
index 0000000000..68d7e001db
Binary files /dev/null and b/common/img/sprites/spritesmith/backgrounds/background_drifting_raft.png differ
diff --git a/common/img/sprites/spritesmith/backgrounds/background_island_waterfalls.png b/common/img/sprites/spritesmith/backgrounds/background_island_waterfalls.png
new file mode 100644
index 0000000000..71807a7383
Binary files /dev/null and b/common/img/sprites/spritesmith/backgrounds/background_island_waterfalls.png differ
diff --git a/common/img/sprites/spritesmith/backgrounds/background_marble_temple.png b/common/img/sprites/spritesmith/backgrounds/background_marble_temple.png
new file mode 100644
index 0000000000..e424a923d2
Binary files /dev/null and b/common/img/sprites/spritesmith/backgrounds/background_marble_temple.png differ
diff --git a/common/img/sprites/spritesmith/backgrounds/background_mountain_lake.png b/common/img/sprites/spritesmith/backgrounds/background_mountain_lake.png
new file mode 100644
index 0000000000..2ae96d0779
Binary files /dev/null and b/common/img/sprites/spritesmith/backgrounds/background_mountain_lake.png differ
diff --git a/common/img/sprites/spritesmith/backgrounds/background_pagodas.png b/common/img/sprites/spritesmith/backgrounds/background_pagodas.png
new file mode 100644
index 0000000000..e1ca9dc777
Binary files /dev/null and b/common/img/sprites/spritesmith/backgrounds/background_pagodas.png differ
diff --git a/common/img/sprites/spritesmith/backgrounds/background_shimmery_bubbles.png b/common/img/sprites/spritesmith/backgrounds/background_shimmery_bubbles.png
new file mode 100644
index 0000000000..b6e9c26ea6
Binary files /dev/null and b/common/img/sprites/spritesmith/backgrounds/background_shimmery_bubbles.png differ
diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_convict.png b/common/img/sprites/spritesmith/customize/shirts/broad_shirt_convict.png
index e20fae4844..ecc1bed739 100644
Binary files a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_convict.png and b/common/img/sprites/spritesmith/customize/shirts/broad_shirt_convict.png differ
diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_cross.png b/common/img/sprites/spritesmith/customize/shirts/broad_shirt_cross.png
index cb8c1cecfa..f65d0088ca 100644
Binary files a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_cross.png and b/common/img/sprites/spritesmith/customize/shirts/broad_shirt_cross.png differ
diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_purple.png b/common/img/sprites/spritesmith/customize/shirts/broad_shirt_purple.png
index cf2198eb22..97518e2a2f 100644
Binary files a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_purple.png and b/common/img/sprites/spritesmith/customize/shirts/broad_shirt_purple.png differ
diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_rainbow.png b/common/img/sprites/spritesmith/customize/shirts/broad_shirt_rainbow.png
index c40c2b16a6..2542f1e00e 100644
Binary files a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_rainbow.png and b/common/img/sprites/spritesmith/customize/shirts/broad_shirt_rainbow.png differ
diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_redblue.png b/common/img/sprites/spritesmith/customize/shirts/broad_shirt_redblue.png
index 6f301e348f..4343718934 100644
Binary files a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_redblue.png and b/common/img/sprites/spritesmith/customize/shirts/broad_shirt_redblue.png differ
diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_thunder.png b/common/img/sprites/spritesmith/customize/shirts/broad_shirt_thunder.png
index 3c44b3466a..9f1a7660f9 100644
Binary files a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_thunder.png and b/common/img/sprites/spritesmith/customize/shirts/broad_shirt_thunder.png differ
diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_convict.png b/common/img/sprites/spritesmith/customize/shirts/slim_shirt_convict.png
index b894cdee6c..429c620d24 100644
Binary files a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_convict.png and b/common/img/sprites/spritesmith/customize/shirts/slim_shirt_convict.png differ
diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_cross.png b/common/img/sprites/spritesmith/customize/shirts/slim_shirt_cross.png
index 123269afc2..83af552daa 100644
Binary files a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_cross.png and b/common/img/sprites/spritesmith/customize/shirts/slim_shirt_cross.png differ
diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_purple.png b/common/img/sprites/spritesmith/customize/shirts/slim_shirt_purple.png
index 32f30165bb..78ced634cc 100644
Binary files a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_purple.png and b/common/img/sprites/spritesmith/customize/shirts/slim_shirt_purple.png differ
diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_rainbow.png b/common/img/sprites/spritesmith/customize/shirts/slim_shirt_rainbow.png
index cd81cd7d0f..0893c25ded 100644
Binary files a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_rainbow.png and b/common/img/sprites/spritesmith/customize/shirts/slim_shirt_rainbow.png differ
diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_redblue.png b/common/img/sprites/spritesmith/customize/shirts/slim_shirt_redblue.png
index 8d22de9174..ea77871517 100644
Binary files a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_redblue.png and b/common/img/sprites/spritesmith/customize/shirts/slim_shirt_redblue.png differ
diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_thunder.png b/common/img/sprites/spritesmith/customize/shirts/slim_shirt_thunder.png
index db7f197740..a989327d2f 100644
Binary files a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_thunder.png and b/common/img/sprites/spritesmith/customize/shirts/slim_shirt_thunder.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_0ff591.png b/common/img/sprites/spritesmith/customize/skin/skin_0ff591.png
index 9f046b4495..3ca94dce1e 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_0ff591.png and b/common/img/sprites/spritesmith/customize/skin/skin_0ff591.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_0ff591_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_0ff591_sleep.png
index c9e8e7acf3..f674a3c93f 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_0ff591_sleep.png and b/common/img/sprites/spritesmith/customize/skin/skin_0ff591_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_2b43f6.png b/common/img/sprites/spritesmith/customize/skin/skin_2b43f6.png
index 1d0460856d..6ebc9f32e2 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_2b43f6.png and b/common/img/sprites/spritesmith/customize/skin/skin_2b43f6.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_2b43f6_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_2b43f6_sleep.png
index 9ad780f1ba..1cabeb8a05 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_2b43f6_sleep.png and b/common/img/sprites/spritesmith/customize/skin/skin_2b43f6_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_6bd049.png b/common/img/sprites/spritesmith/customize/skin/skin_6bd049.png
index 2911881676..20e4000326 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_6bd049.png and b/common/img/sprites/spritesmith/customize/skin/skin_6bd049.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_6bd049_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_6bd049_sleep.png
index 09eecdd171..722ba42cdb 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_6bd049_sleep.png and b/common/img/sprites/spritesmith/customize/skin/skin_6bd049_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_800ed0.png b/common/img/sprites/spritesmith/customize/skin/skin_800ed0.png
index 46588cb9a5..5a490c6f4c 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_800ed0.png and b/common/img/sprites/spritesmith/customize/skin/skin_800ed0.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_800ed0_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_800ed0_sleep.png
index ed46320d5c..ac0efda3c0 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_800ed0_sleep.png and b/common/img/sprites/spritesmith/customize/skin/skin_800ed0_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_915533.png b/common/img/sprites/spritesmith/customize/skin/skin_915533.png
index 0d7f775d8a..823ca81764 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_915533.png and b/common/img/sprites/spritesmith/customize/skin/skin_915533.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_915533_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_915533_sleep.png
index 371f8f7b9a..340d603e98 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_915533_sleep.png and b/common/img/sprites/spritesmith/customize/skin/skin_915533_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_98461a.png b/common/img/sprites/spritesmith/customize/skin/skin_98461a.png
index 8ba33e2168..a28b1c5468 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_98461a.png and b/common/img/sprites/spritesmith/customize/skin/skin_98461a.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_98461a_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_98461a_sleep.png
index ee6ffa2199..2741afbe74 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_98461a_sleep.png and b/common/img/sprites/spritesmith/customize/skin/skin_98461a_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_bear.png b/common/img/sprites/spritesmith/customize/skin/skin_bear.png
new file mode 100644
index 0000000000..8b30c76fc4
Binary files /dev/null and b/common/img/sprites/spritesmith/customize/skin/skin_bear.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_bear_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_bear_sleep.png
new file mode 100644
index 0000000000..f9edaa7618
Binary files /dev/null and b/common/img/sprites/spritesmith/customize/skin/skin_bear_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_c06534.png b/common/img/sprites/spritesmith/customize/skin/skin_c06534.png
index 5a0e350242..ef3ebe76f0 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_c06534.png and b/common/img/sprites/spritesmith/customize/skin/skin_c06534.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_c06534_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_c06534_sleep.png
index 09ac494f08..ddbb7519f0 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_c06534_sleep.png and b/common/img/sprites/spritesmith/customize/skin/skin_c06534_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_c3e1dc.png b/common/img/sprites/spritesmith/customize/skin/skin_c3e1dc.png
index b3a0acf388..a9d1b09425 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_c3e1dc.png and b/common/img/sprites/spritesmith/customize/skin/skin_c3e1dc.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_c3e1dc_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_c3e1dc_sleep.png
index 5a8d12c052..eb505a4db8 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_c3e1dc_sleep.png and b/common/img/sprites/spritesmith/customize/skin/skin_c3e1dc_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_cactus.png b/common/img/sprites/spritesmith/customize/skin/skin_cactus.png
new file mode 100644
index 0000000000..8e4f3f9b8b
Binary files /dev/null and b/common/img/sprites/spritesmith/customize/skin/skin_cactus.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_cactus_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_cactus_sleep.png
new file mode 100644
index 0000000000..46e4286677
Binary files /dev/null and b/common/img/sprites/spritesmith/customize/skin/skin_cactus_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_d7a9f7.png b/common/img/sprites/spritesmith/customize/skin/skin_d7a9f7.png
index ecf379b8ad..9ece142678 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_d7a9f7.png and b/common/img/sprites/spritesmith/customize/skin/skin_d7a9f7.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_d7a9f7_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_d7a9f7_sleep.png
index 40bd6dd25a..8ce9331d40 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_d7a9f7_sleep.png and b/common/img/sprites/spritesmith/customize/skin/skin_d7a9f7_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_ddc994.png b/common/img/sprites/spritesmith/customize/skin/skin_ddc994.png
index e7b0403656..e55ccd274d 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_ddc994.png and b/common/img/sprites/spritesmith/customize/skin/skin_ddc994.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_ddc994_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_ddc994_sleep.png
index c8749293b0..20ee65d4f9 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_ddc994_sleep.png and b/common/img/sprites/spritesmith/customize/skin/skin_ddc994_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_ea8349.png b/common/img/sprites/spritesmith/customize/skin/skin_ea8349.png
index 470723ed9f..74ec2b5c15 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_ea8349.png and b/common/img/sprites/spritesmith/customize/skin/skin_ea8349.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_ea8349_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_ea8349_sleep.png
index 1484d376f8..8e8c089749 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_ea8349_sleep.png and b/common/img/sprites/spritesmith/customize/skin/skin_ea8349_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_eb052b.png b/common/img/sprites/spritesmith/customize/skin/skin_eb052b.png
index ede562fb75..ffa04f3e26 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_eb052b.png and b/common/img/sprites/spritesmith/customize/skin/skin_eb052b.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_eb052b_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_eb052b_sleep.png
index 21e2dc8ae2..ff384460b3 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_eb052b_sleep.png and b/common/img/sprites/spritesmith/customize/skin/skin_eb052b_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_f5a76e.png b/common/img/sprites/spritesmith/customize/skin/skin_f5a76e.png
index 35d2f7f08e..0e7b3bbfb9 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_f5a76e.png and b/common/img/sprites/spritesmith/customize/skin/skin_f5a76e.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_f5a76e_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_f5a76e_sleep.png
index 64a078a008..5621d1001a 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_f5a76e_sleep.png and b/common/img/sprites/spritesmith/customize/skin/skin_f5a76e_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_f5d70f.png b/common/img/sprites/spritesmith/customize/skin/skin_f5d70f.png
index eb9067a981..4ba5d3193e 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_f5d70f.png and b/common/img/sprites/spritesmith/customize/skin/skin_f5d70f.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_f5d70f_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_f5d70f_sleep.png
index b5fb256d22..5cb072899e 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_f5d70f_sleep.png and b/common/img/sprites/spritesmith/customize/skin/skin_f5d70f_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_f69922.png b/common/img/sprites/spritesmith/customize/skin/skin_f69922.png
index 2ac2ef62a8..071299b891 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_f69922.png and b/common/img/sprites/spritesmith/customize/skin/skin_f69922.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_f69922_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_f69922_sleep.png
index 786e8fbd3c..0d12e4afb4 100644
Binary files a/common/img/sprites/spritesmith/customize/skin/skin_f69922_sleep.png and b/common/img/sprites/spritesmith/customize/skin/skin_f69922_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_fox.png b/common/img/sprites/spritesmith/customize/skin/skin_fox.png
new file mode 100644
index 0000000000..cc1d9df47c
Binary files /dev/null and b/common/img/sprites/spritesmith/customize/skin/skin_fox.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_fox_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_fox_sleep.png
new file mode 100644
index 0000000000..130a0721dc
Binary files /dev/null and b/common/img/sprites/spritesmith/customize/skin/skin_fox_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_lion.png b/common/img/sprites/spritesmith/customize/skin/skin_lion.png
new file mode 100644
index 0000000000..a4087c9908
Binary files /dev/null and b/common/img/sprites/spritesmith/customize/skin/skin_lion.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_lion_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_lion_sleep.png
new file mode 100644
index 0000000000..489a0efea6
Binary files /dev/null and b/common/img/sprites/spritesmith/customize/skin/skin_lion_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_panda.png b/common/img/sprites/spritesmith/customize/skin/skin_panda.png
new file mode 100644
index 0000000000..dd031c284f
Binary files /dev/null and b/common/img/sprites/spritesmith/customize/skin/skin_panda.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_panda_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_panda_sleep.png
new file mode 100644
index 0000000000..ccd3b45827
Binary files /dev/null and b/common/img/sprites/spritesmith/customize/skin/skin_panda_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pig.png b/common/img/sprites/spritesmith/customize/skin/skin_pig.png
new file mode 100644
index 0000000000..219cc793a4
Binary files /dev/null and b/common/img/sprites/spritesmith/customize/skin/skin_pig.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pig_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_pig_sleep.png
new file mode 100644
index 0000000000..e5a778d58e
Binary files /dev/null and b/common/img/sprites/spritesmith/customize/skin/skin_pig_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_tiger.png b/common/img/sprites/spritesmith/customize/skin/skin_tiger.png
new file mode 100644
index 0000000000..e1fa4b2df3
Binary files /dev/null and b/common/img/sprites/spritesmith/customize/skin/skin_tiger.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_tiger_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_tiger_sleep.png
new file mode 100644
index 0000000000..c348ad79cd
Binary files /dev/null and b/common/img/sprites/spritesmith/customize/skin/skin_tiger_sleep.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_wolf.png b/common/img/sprites/spritesmith/customize/skin/skin_wolf.png
new file mode 100644
index 0000000000..fb4ec4e16e
Binary files /dev/null and b/common/img/sprites/spritesmith/customize/skin/skin_wolf.png differ
diff --git a/common/img/sprites/spritesmith/customize/skin/skin_wolf_sleep.png b/common/img/sprites/spritesmith/customize/skin/skin_wolf_sleep.png
new file mode 100644
index 0000000000..8c72dd606f
Binary files /dev/null and b/common/img/sprites/spritesmith/customize/skin/skin_wolf_sleep.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_gladiatorArmor.png b/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_gladiatorArmor.png
new file mode 100644
index 0000000000..adf4417970
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_gladiatorArmor.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_lunarArmor.png b/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_lunarArmor.png
new file mode 100644
index 0000000000..1de5f56d48
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_lunarArmor.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_gladiatorHelm.png b/common/img/sprites/spritesmith/gear/armoire/head_armoire_gladiatorHelm.png
new file mode 100644
index 0000000000..80bd4d0e49
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/head_armoire_gladiatorHelm.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_lunarCrown.png b/common/img/sprites/spritesmith/gear/armoire/head_armoire_lunarCrown.png
new file mode 100644
index 0000000000..8c20e1d968
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/head_armoire_lunarCrown.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_rancherHat.png b/common/img/sprites/spritesmith/gear/armoire/head_armoire_rancherHat.png
new file mode 100644
index 0000000000..3b1f7dd711
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/head_armoire_rancherHat.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_redHairbow.png b/common/img/sprites/spritesmith/gear/armoire/head_armoire_redHairbow.png
new file mode 100644
index 0000000000..a2de60a606
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/head_armoire_redHairbow.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_violetFloppyHat.png b/common/img/sprites/spritesmith/gear/armoire/head_armoire_violetFloppyHat.png
new file mode 100644
index 0000000000..eb5b4d55ff
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/head_armoire_violetFloppyHat.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/shield_armoire_gladiatorShield.png b/common/img/sprites/spritesmith/gear/armoire/shield_armoire_gladiatorShield.png
new file mode 100644
index 0000000000..ebfc477726
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shield_armoire_gladiatorShield.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_gladiatorArmor.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_gladiatorArmor.png
new file mode 100644
index 0000000000..6cc65b5ec3
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_gladiatorArmor.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_lunarArmor.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_lunarArmor.png
new file mode 100644
index 0000000000..f9cff8f825
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_lunarArmor.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_gladiatorHelm.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_gladiatorHelm.png
new file mode 100644
index 0000000000..555222e0fe
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_gladiatorHelm.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_lunarCrown.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_lunarCrown.png
new file mode 100644
index 0000000000..ff797bc4fa
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_lunarCrown.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_rancherHat.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_rancherHat.png
new file mode 100644
index 0000000000..adb69e98b4
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_rancherHat.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_redHairbow.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_redHairbow.png
new file mode 100644
index 0000000000..7f81babd9a
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_redHairbow.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_violetFloppyHat.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_violetFloppyHat.png
new file mode 100644
index 0000000000..2fe5e4c2ce
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_violetFloppyHat.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_gladiatorShield.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_gladiatorShield.png
new file mode 100644
index 0000000000..23cb7b5978
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_gladiatorShield.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_basicCrossbow.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_basicCrossbow.png
new file mode 100644
index 0000000000..f50cfd7a68
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_basicCrossbow.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_lunarSceptre.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_lunarSceptre.png
new file mode 100644
index 0000000000..35ff082d28
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_lunarSceptre.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_gladiatorArmor.png b/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_gladiatorArmor.png
new file mode 100644
index 0000000000..adf4417970
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_gladiatorArmor.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_lunarArmor.png b/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_lunarArmor.png
new file mode 100644
index 0000000000..baa33254eb
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_lunarArmor.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_basicCrossbow.png b/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_basicCrossbow.png
new file mode 100644
index 0000000000..ba66e58de2
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_basicCrossbow.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_lunarSceptre.png b/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_lunarSceptre.png
new file mode 100644
index 0000000000..c5165a53f5
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_lunarSceptre.png differ
diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201504/back_mystery_201504.png b/common/img/sprites/spritesmith/gear/events/mystery_201504/back_mystery_201504.png
new file mode 100644
index 0000000000..8b9dd6e7e2
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201504/back_mystery_201504.png differ
diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201504/broad_armor_mystery_201504.png b/common/img/sprites/spritesmith/gear/events/mystery_201504/broad_armor_mystery_201504.png
new file mode 100644
index 0000000000..509fd06fee
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201504/broad_armor_mystery_201504.png differ
diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201504/shop_armor_mystery_201504.png b/common/img/sprites/spritesmith/gear/events/mystery_201504/shop_armor_mystery_201504.png
new file mode 100644
index 0000000000..52e33d1293
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201504/shop_armor_mystery_201504.png differ
diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201504/shop_back_mystery_201504.png b/common/img/sprites/spritesmith/gear/events/mystery_201504/shop_back_mystery_201504.png
new file mode 100644
index 0000000000..66e027de91
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201504/shop_back_mystery_201504.png differ
diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201504/slim_armor_mystery_201504.png b/common/img/sprites/spritesmith/gear/events/mystery_201504/slim_armor_mystery_201504.png
new file mode 100644
index 0000000000..1cf98744c4
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201504/slim_armor_mystery_201504.png differ
diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201505/head_mystery_201505.png b/common/img/sprites/spritesmith/gear/events/mystery_201505/head_mystery_201505.png
new file mode 100644
index 0000000000..24a5a7fe36
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201505/head_mystery_201505.png differ
diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201505/shop_head_mystery_201505.png b/common/img/sprites/spritesmith/gear/events/mystery_201505/shop_head_mystery_201505.png
new file mode 100644
index 0000000000..64a926f7c2
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201505/shop_head_mystery_201505.png differ
diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201505/shop_weapon_mystery_201505.png b/common/img/sprites/spritesmith/gear/events/mystery_201505/shop_weapon_mystery_201505.png
new file mode 100644
index 0000000000..c562985e4a
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201505/shop_weapon_mystery_201505.png differ
diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201505/weapon_mystery_201505.png b/common/img/sprites/spritesmith/gear/events/mystery_201505/weapon_mystery_201505.png
new file mode 100644
index 0000000000..128d909184
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/events/mystery_201505/weapon_mystery_201505.png differ
diff --git a/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_bearEars.png b/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_bearEars.png
new file mode 100644
index 0000000000..0b9fde423e
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_bearEars.png differ
diff --git a/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_cactusEars.png b/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_cactusEars.png
new file mode 100644
index 0000000000..6b7e372095
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_cactusEars.png differ
diff --git a/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_foxEars.png b/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_foxEars.png
new file mode 100644
index 0000000000..dde3c6d84e
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_foxEars.png differ
diff --git a/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_lionEars.png b/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_lionEars.png
new file mode 100644
index 0000000000..9d32267d67
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_lionEars.png differ
diff --git a/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_pandaEars.png b/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_pandaEars.png
new file mode 100644
index 0000000000..c512b09397
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_pandaEars.png differ
diff --git a/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_pigEars.png b/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_pigEars.png
new file mode 100644
index 0000000000..59a27fab5e
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_pigEars.png differ
diff --git a/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_tigerEars.png b/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_tigerEars.png
new file mode 100644
index 0000000000..0f056d6f2b
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_tigerEars.png differ
diff --git a/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_wolfEars.png b/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_wolfEars.png
new file mode 100644
index 0000000000..da543a95c4
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_wolfEars.png differ
diff --git a/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_bearEars.png b/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_bearEars.png
new file mode 100644
index 0000000000..cc028477bf
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_bearEars.png differ
diff --git a/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_cactusEars.png b/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_cactusEars.png
new file mode 100644
index 0000000000..98eb4efba2
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_cactusEars.png differ
diff --git a/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_foxEars.png b/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_foxEars.png
new file mode 100644
index 0000000000..8294e3d388
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_foxEars.png differ
diff --git a/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_lionEars.png b/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_lionEars.png
new file mode 100644
index 0000000000..6f937acee5
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_lionEars.png differ
diff --git a/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_pandaEars.png b/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_pandaEars.png
new file mode 100644
index 0000000000..afe7d238bf
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_pandaEars.png differ
diff --git a/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_pigEars.png b/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_pigEars.png
new file mode 100644
index 0000000000..334223ec76
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_pigEars.png differ
diff --git a/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_tigerEars.png b/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_tigerEars.png
new file mode 100644
index 0000000000..f3b6ed3e6f
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_tigerEars.png differ
diff --git a/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_wolfEars.png b/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_wolfEars.png
new file mode 100644
index 0000000000..28c8b2a9ee
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_wolfEars.png differ
diff --git a/common/img/sprites/spritesmith/misc/inventory_present_01.png b/common/img/sprites/spritesmith/misc/inventory_present_01.png
new file mode 100644
index 0000000000..9e6ee336b5
Binary files /dev/null and b/common/img/sprites/spritesmith/misc/inventory_present_01.png differ
diff --git a/common/img/sprites/spritesmith/misc/inventory_present_02.png b/common/img/sprites/spritesmith/misc/inventory_present_02.png
new file mode 100644
index 0000000000..264c7b13a7
Binary files /dev/null and b/common/img/sprites/spritesmith/misc/inventory_present_02.png differ
diff --git a/common/img/sprites/spritesmith/misc/inventory_present_03.png b/common/img/sprites/spritesmith/misc/inventory_present_03.png
new file mode 100644
index 0000000000..f11cf74bef
Binary files /dev/null and b/common/img/sprites/spritesmith/misc/inventory_present_03.png differ
diff --git a/common/img/sprites/spritesmith/misc/inventory_present_04.png b/common/img/sprites/spritesmith/misc/inventory_present_04.png
new file mode 100644
index 0000000000..8f216932d8
Binary files /dev/null and b/common/img/sprites/spritesmith/misc/inventory_present_04.png differ
diff --git a/common/img/sprites/spritesmith/misc/inventory_present_05.png b/common/img/sprites/spritesmith/misc/inventory_present_05.png
new file mode 100644
index 0000000000..dc4adc53c8
Binary files /dev/null and b/common/img/sprites/spritesmith/misc/inventory_present_05.png differ
diff --git a/common/img/sprites/spritesmith/misc/inventory_present_06.png b/common/img/sprites/spritesmith/misc/inventory_present_06.png
new file mode 100644
index 0000000000..a1d1493849
Binary files /dev/null and b/common/img/sprites/spritesmith/misc/inventory_present_06.png differ
diff --git a/common/img/sprites/spritesmith/misc/inventory_present_07.png b/common/img/sprites/spritesmith/misc/inventory_present_07.png
new file mode 100644
index 0000000000..842b7ef6f2
Binary files /dev/null and b/common/img/sprites/spritesmith/misc/inventory_present_07.png differ
diff --git a/common/img/sprites/spritesmith/misc/inventory_present_08.png b/common/img/sprites/spritesmith/misc/inventory_present_08.png
new file mode 100644
index 0000000000..e1d19d1557
Binary files /dev/null and b/common/img/sprites/spritesmith/misc/inventory_present_08.png differ
diff --git a/common/img/sprites/spritesmith/misc/inventory_present_09.png b/common/img/sprites/spritesmith/misc/inventory_present_09.png
new file mode 100644
index 0000000000..e6ef440e6f
Binary files /dev/null and b/common/img/sprites/spritesmith/misc/inventory_present_09.png differ
diff --git a/common/img/sprites/spritesmith/misc/inventory_present_10.png b/common/img/sprites/spritesmith/misc/inventory_present_10.png
new file mode 100644
index 0000000000..26b6018799
Binary files /dev/null and b/common/img/sprites/spritesmith/misc/inventory_present_10.png differ
diff --git a/common/img/sprites/spritesmith/misc/inventory_present_11.png b/common/img/sprites/spritesmith/misc/inventory_present_11.png
new file mode 100644
index 0000000000..356697b430
Binary files /dev/null and b/common/img/sprites/spritesmith/misc/inventory_present_11.png differ
diff --git a/common/img/sprites/spritesmith/misc/inventory_present_12.png b/common/img/sprites/spritesmith/misc/inventory_present_12.png
new file mode 100644
index 0000000000..3fc6280d57
Binary files /dev/null and b/common/img/sprites/spritesmith/misc/inventory_present_12.png differ
diff --git a/common/img/sprites/spritesmith/misc/shop_armoire.png b/common/img/sprites/spritesmith/misc/shop_armoire.png
new file mode 100644
index 0000000000..b6ca0380f9
Binary files /dev/null and b/common/img/sprites/spritesmith/misc/shop_armoire.png differ
diff --git a/common/img/sprites/spritesmith/misc/welcome_to_Habit_1.png b/common/img/sprites/spritesmith/misc/welcome_to_Habit_1.png
new file mode 100644
index 0000000000..1830fb00e2
Binary files /dev/null and b/common/img/sprites/spritesmith/misc/welcome_to_Habit_1.png differ
diff --git a/common/img/sprites/spritesmith/misc/welcome_to_Habit_2.png b/common/img/sprites/spritesmith/misc/welcome_to_Habit_2.png
new file mode 100644
index 0000000000..cacb1bc564
Binary files /dev/null and b/common/img/sprites/spritesmith/misc/welcome_to_Habit_2.png differ
diff --git a/common/img/sprites/spritesmith/misc/welcome_to_Habit_3.png b/common/img/sprites/spritesmith/misc/welcome_to_Habit_3.png
new file mode 100644
index 0000000000..2ef615f5ca
Binary files /dev/null and b/common/img/sprites/spritesmith/misc/welcome_to_Habit_3.png differ
diff --git a/common/img/sprites/spritesmith/misc/welcome_to_Habit_4.png b/common/img/sprites/spritesmith/misc/welcome_to_Habit_4.png
new file mode 100644
index 0000000000..2c0afb2743
Binary files /dev/null and b/common/img/sprites/spritesmith/misc/welcome_to_Habit_4.png differ
diff --git a/common/img/sprites/spritesmith/npcs/npc_alex.png b/common/img/sprites/spritesmith/npcs/npc_alex.png
index 8982854041..67b7476d33 100644
Binary files a/common/img/sprites/spritesmith/npcs/npc_alex.png and b/common/img/sprites/spritesmith/npcs/npc_alex.png differ
diff --git a/common/img/sprites/spritesmith/npcs/npc_bailey.png b/common/img/sprites/spritesmith/npcs/npc_bailey.png
index 419496bdd0..d5940b986b 100644
Binary files a/common/img/sprites/spritesmith/npcs/npc_bailey.png and b/common/img/sprites/spritesmith/npcs/npc_bailey.png differ
diff --git a/common/img/sprites/spritesmith/npcs/npc_daniel.png b/common/img/sprites/spritesmith/npcs/npc_daniel.png
index 471f751e72..531b8ff760 100644
Binary files a/common/img/sprites/spritesmith/npcs/npc_daniel.png and b/common/img/sprites/spritesmith/npcs/npc_daniel.png differ
diff --git a/common/img/sprites/spritesmith/npcs/npc_ian.png b/common/img/sprites/spritesmith/npcs/npc_ian.png
deleted file mode 100644
index 86860dfa1b..0000000000
Binary files a/common/img/sprites/spritesmith/npcs/npc_ian.png and /dev/null differ
diff --git a/common/img/sprites/spritesmith/npcs/npc_justin.png b/common/img/sprites/spritesmith/npcs/npc_justin.png
index 9365bc12c9..08ba7025c2 100644
Binary files a/common/img/sprites/spritesmith/npcs/npc_justin.png and b/common/img/sprites/spritesmith/npcs/npc_justin.png differ
diff --git a/common/img/sprites/spritesmith/npcs/npc_matt.png b/common/img/sprites/spritesmith/npcs/npc_matt.png
index e129d6e43e..2531f1084b 100644
Binary files a/common/img/sprites/spritesmith/npcs/npc_matt.png and b/common/img/sprites/spritesmith/npcs/npc_matt.png differ
diff --git a/common/img/sprites/spritesmith/npcs/seasonalshop_spring2015.png b/common/img/sprites/spritesmith/npcs/seasonalshop_spring2015.png
deleted file mode 100644
index e1f811893e..0000000000
Binary files a/common/img/sprites/spritesmith/npcs/seasonalshop_spring2015.png and /dev/null differ
diff --git a/common/img/sprites/spritesmith/promo/promo_enchanted_armoire.png b/common/img/sprites/spritesmith/promo/promo_enchanted_armoire.png
new file mode 100644
index 0000000000..55d71a202e
Binary files /dev/null and b/common/img/sprites/spritesmith/promo/promo_enchanted_armoire.png differ
diff --git a/common/img/sprites/spritesmith/promo/promo_mystery_201504.png b/common/img/sprites/spritesmith/promo/promo_mystery_201504.png
new file mode 100644
index 0000000000..2710cb3b01
Binary files /dev/null and b/common/img/sprites/spritesmith/promo/promo_mystery_201504.png differ
diff --git a/common/img/sprites/spritesmith/promo/promo_mystery_201505.png b/common/img/sprites/spritesmith/promo/promo_mystery_201505.png
new file mode 100644
index 0000000000..bac60f1b66
Binary files /dev/null and b/common/img/sprites/spritesmith/promo/promo_mystery_201505.png differ
diff --git a/common/img/sprites/spritesmith/promo/promo_pet_skins.png b/common/img/sprites/spritesmith/promo/promo_pet_skins.png
new file mode 100644
index 0000000000..075d631a75
Binary files /dev/null and b/common/img/sprites/spritesmith/promo/promo_pet_skins.png differ
diff --git a/common/img/sprites/spritesmith/quests/inventory_quest_scroll_sheep.png b/common/img/sprites/spritesmith/quests/inventory_quest_scroll_sheep.png
new file mode 100644
index 0000000000..857292f8d6
Binary files /dev/null and b/common/img/sprites/spritesmith/quests/inventory_quest_scroll_sheep.png differ
diff --git a/common/img/sprites/spritesmith/quests/quest_sheep.png b/common/img/sprites/spritesmith/quests/quest_sheep.png
new file mode 100644
index 0000000000..75a0c52035
Binary files /dev/null and b/common/img/sprites/spritesmith/quests/quest_sheep.png differ
diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Octopus.png b/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Octopus.png
index 0adceab6c3..c8ea27ab35 100644
Binary files a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Octopus.png and b/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Octopus.png differ
diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Sheep.png b/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Sheep.png
new file mode 100644
index 0000000000..7bd364ead3
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Sheep.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Base.png
index 6797076986..866b4e4219 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Base.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Base.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-CottonCandyBlue.png
index f651b82c72..15626f545d 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-CottonCandyBlue.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-CottonCandyBlue.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-CottonCandyPink.png
index c1faa9229a..2a4bc69262 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-CottonCandyPink.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-CottonCandyPink.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Desert.png
index 8701e098a6..44d83d555f 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Desert.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Desert.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Golden.png
index eeb8e35949..c33d335771 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Golden.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Golden.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Red.png
index 5258b7c7fa..728ff7295c 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Red.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Red.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Shade.png
index ccf4d5cd74..cd3f60b814 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Shade.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Shade.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Skeleton.png
index 90a5a3e651..41762aa79a 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Skeleton.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Skeleton.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-White.png
index 670a0b7dce..4e9ca9b917 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-White.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-White.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Zombie.png
index dd45807b82..bfbcff68b7 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Zombie.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Zombie.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Base.png
index 103408b359..81e0488b26 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Base.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Base.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-CottonCandyBlue.png
index 6795e7c09e..4b30542c00 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-CottonCandyBlue.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-CottonCandyBlue.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-CottonCandyPink.png
index cbeec5d5de..8a16bfdd05 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-CottonCandyPink.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-CottonCandyPink.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Desert.png
index 4e8411bc2c..2430f1e72d 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Desert.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Desert.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Golden.png
index 9d3b522475..56391a195f 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Golden.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Golden.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Red.png
index 01e75bfcb8..2f03eb887e 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Red.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Red.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Shade.png
index aa444f375e..aa3f16469b 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Shade.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Shade.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Skeleton.png
index 87547656c1..8abdd4a116 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Skeleton.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Skeleton.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-White.png
index a8231a9ec7..01191ca674 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-White.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-White.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Zombie.png
index c0bc5a438b..6c4939d5d9 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Zombie.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Zombie.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Base.png
index 84ee0099da..edfef3dde3 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Base.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Base.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-CottonCandyBlue.png
index 09fada532f..bc0eef4bfa 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-CottonCandyBlue.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-CottonCandyBlue.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-CottonCandyPink.png
index fe1da08d05..6859636b9b 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-CottonCandyPink.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-CottonCandyPink.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Desert.png
index bc3bc55b5d..acd04efd55 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Desert.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Desert.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Golden.png
index 7b8c1295eb..2b3a980d38 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Golden.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Golden.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Red.png
index 00df0c4c7d..71361d14ea 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Red.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Red.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Shade.png
index c550b697ed..2f54a916d2 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Shade.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Shade.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Skeleton.png
index b37ee8dc08..94802242f7 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Skeleton.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Skeleton.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-White.png
index 3a88c9e94b..8c1b2b2985 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-White.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-White.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Zombie.png
index 097b3ee324..cc666be148 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Zombie.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Zombie.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Base.png
index b0fc6a80b0..9e74926c38 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Base.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Base.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-CottonCandyBlue.png
index 7c4ae04cec..f9849de930 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-CottonCandyBlue.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-CottonCandyBlue.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-CottonCandyPink.png
index 31d0a45484..3537e496b7 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-CottonCandyPink.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-CottonCandyPink.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Desert.png
index c15cdbdf70..a4d611efc0 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Desert.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Desert.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Golden.png
index 0863bb9e93..f39f4e0e0b 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Golden.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Golden.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Red.png
index 82e3e6ed5e..a9393a287e 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Red.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Red.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Shade.png
index 72c3f6937f..fc25dccd08 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Shade.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Shade.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Skeleton.png
index 6ea5154567..eed300dd60 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Skeleton.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Skeleton.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-White.png
index 36e77378ed..8231917504 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-White.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-White.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Zombie.png
index ee09b0b6ed..c919a47159 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Zombie.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Zombie.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Skeleton.png
index 2692d5cbf4..d9c4684da5 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Skeleton.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Skeleton.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Base.png
index f150539206..30928538e9 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Base.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Base.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-CottonCandyBlue.png
index 6b0c2c7e8e..73b83e5001 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-CottonCandyBlue.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-CottonCandyBlue.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-CottonCandyPink.png
index 55e0f8e958..85b7043d47 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-CottonCandyPink.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-CottonCandyPink.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Desert.png
index dafe2bda0d..16b4088d32 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Desert.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Desert.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Golden.png
index c2ef25819c..bab90ec86b 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Golden.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Golden.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Red.png
index 3a1a474858..c0ff17c649 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Red.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Red.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Shade.png
index 487a5022b3..8c088259cf 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Shade.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Shade.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Skeleton.png
index f2c829cc57..45260e9f90 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Skeleton.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Skeleton.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-White.png
index 347bea8ab3..5b1e7e7bc4 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-White.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-White.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Zombie.png
index b8f4b531fa..b7f2b8e0a4 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Zombie.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Zombie.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Base.png
new file mode 100644
index 0000000000..7d3f0c8b01
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Base.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-CottonCandyBlue.png
new file mode 100644
index 0000000000..2f6ef41d92
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-CottonCandyBlue.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-CottonCandyPink.png
new file mode 100644
index 0000000000..798ed8f19b
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-CottonCandyPink.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Desert.png
new file mode 100644
index 0000000000..0a30d48c3e
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Desert.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Golden.png
new file mode 100644
index 0000000000..a99e583324
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Golden.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Red.png
new file mode 100644
index 0000000000..3b44636960
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Red.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Shade.png
new file mode 100644
index 0000000000..fe0b449705
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Shade.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Skeleton.png
new file mode 100644
index 0000000000..07b4a81b86
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Skeleton.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-White.png
new file mode 100644
index 0000000000..d7d55cb256
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-White.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Zombie.png
new file mode 100644
index 0000000000..6dd5bf5724
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Sheep-Zombie.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Base.png
index 0dc0945f89..b8780b97d9 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Base.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Base.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-CottonCandyBlue.png
index 9558b98b92..18df1943c1 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-CottonCandyBlue.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-CottonCandyBlue.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-CottonCandyPink.png
index 0a4d8c1a3a..e5a60fde20 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-CottonCandyPink.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-CottonCandyPink.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Desert.png
index ac58c69cb0..2640caef2c 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Desert.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Desert.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Golden.png
index 73b3e51e31..5b4ebf8b8e 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Golden.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Golden.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Red.png
index bd8f783e7e..4085488c39 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Red.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Red.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Shade.png
index 77693b8d48..3f54c058f4 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Shade.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Shade.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Skeleton.png
index 8c176be00b..315c1b5339 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Skeleton.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Skeleton.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-White.png
index b7aa3c8e22..4b639b1229 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-White.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-White.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Zombie.png
index 7b40788872..d9206d8117 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Zombie.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Zombie.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Base.png
index fbbc4d7566..4cf7bab7eb 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Base.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Base.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-CottonCandyBlue.png
index 12c8e21452..3403f82737 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-CottonCandyBlue.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-CottonCandyBlue.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-CottonCandyPink.png
index e389e43c14..54ff60b967 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-CottonCandyPink.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-CottonCandyPink.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Desert.png
index 58ac1142a8..55dbc64135 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Desert.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Desert.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Golden.png
index efbe9c24b8..59fba0456e 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Golden.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Golden.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Red.png
index 7812040b3e..7eebf92a59 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Red.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Red.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Shade.png
index e8f6ae52a8..b5f376ddd4 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Shade.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Shade.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Skeleton.png
index 391ed6d579..762351bd79 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Skeleton.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Skeleton.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-White.png
index adf3593117..3a132cc6aa 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-White.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-White.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Zombie.png
index 7cd5817744..9911cbd235 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Zombie.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Zombie.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Base.png
index 6b56d5009f..645150adae 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Base.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Base.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-CottonCandyBlue.png
index 6f3b872076..20de5a7179 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-CottonCandyBlue.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-CottonCandyBlue.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-CottonCandyPink.png
index a2d0c58bb0..eacca0aadc 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-CottonCandyPink.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-CottonCandyPink.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Desert.png
index b9d55b4800..1c4c8abe45 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Desert.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Desert.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Golden.png
index 93fd1505e0..3632b79212 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Golden.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Golden.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Red.png
index 6acf082596..5f6b3f0ffc 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Red.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Red.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Shade.png
index 285bd384a2..db53258982 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Shade.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Shade.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Skeleton.png
index 07ccbd4426..93f09cfd5b 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Skeleton.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Skeleton.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-White.png
index 0b459965b2..8cb6b3ca0f 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-White.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-White.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Zombie.png
index a934706250..481b07f687 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Zombie.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Zombie.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Base.png
index 3027cda40f..9ea1e8c10a 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Base.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Base.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-CottonCandyBlue.png
index 2b720ec420..d9e5176b77 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-CottonCandyBlue.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-CottonCandyBlue.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-CottonCandyPink.png
index 71e69dee64..a22ba8220b 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-CottonCandyPink.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-CottonCandyPink.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Desert.png
index 57aa08bb0c..98b3efdf37 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Desert.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Desert.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Golden.png
index 6efd547a0f..aef930bf53 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Golden.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Golden.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Red.png
index 23b4eeddbc..091fd69937 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Red.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Red.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Shade.png
index e412e3f224..1ef77c0d85 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Shade.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Shade.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Skeleton.png
index 411de61023..b791831a20 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Skeleton.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Skeleton.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-White.png
index dd7f3e6e4d..e006461a70 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-White.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-White.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Zombie.png
index fcfa8fe801..567f7a0525 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Zombie.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Zombie.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Base.png
index b563319f6b..b29c9c1c22 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Base.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Base.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-CottonCandyBlue.png
index 9f296c8ef6..8869e2a287 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-CottonCandyBlue.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-CottonCandyBlue.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-CottonCandyPink.png
index bfe30a7c78..a3631ac43f 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-CottonCandyPink.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-CottonCandyPink.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Desert.png
index 30cf13036b..47dbfef712 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Desert.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Desert.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Golden.png
index d8579e0fa3..1c223045c5 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Golden.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Golden.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Red.png
index 7774ae8296..ffeda68893 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Red.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Red.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Shade.png
index 791f330fcd..62c00a9110 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Shade.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Shade.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Skeleton.png
index 0c2c171b48..46fc17a825 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Skeleton.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Skeleton.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-White.png
index 8abbdd4c63..7380b82a1a 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-White.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-White.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Zombie.png
index 6e20c76be3..a8cc89840d 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Zombie.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Zombie.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Skeleton.png
index ada8f97817..cc08e8a894 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Skeleton.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Skeleton.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Base.png
index 55aa2cb21e..f4261afa80 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Base.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Base.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-CottonCandyBlue.png
index 2bb2ad24f3..31e3ce2e78 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-CottonCandyBlue.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-CottonCandyBlue.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-CottonCandyPink.png
index 48d427d504..caf2e7d758 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-CottonCandyPink.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-CottonCandyPink.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Desert.png
index 9454570a47..d3f6ecfbbc 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Desert.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Desert.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Golden.png
index ec187b7a50..7c4d3880f1 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Golden.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Golden.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Red.png
index 1b23a1329d..997c56ced2 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Red.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Red.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Shade.png
index b9c8ef1540..5e2d8ba0bd 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Shade.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Shade.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Skeleton.png
index 13d0714fa9..4dab0fb473 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Skeleton.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Skeleton.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-White.png
index 46ce814201..2a65e97442 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-White.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-White.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Zombie.png
index ba78fb479f..8d6aa6f588 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Zombie.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Zombie.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Base.png
new file mode 100644
index 0000000000..cf6d4f90eb
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Base.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-CottonCandyBlue.png
new file mode 100644
index 0000000000..df8e590f03
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-CottonCandyBlue.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-CottonCandyPink.png
new file mode 100644
index 0000000000..17f3540252
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-CottonCandyPink.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Desert.png
new file mode 100644
index 0000000000..aa67b4eac8
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Desert.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Golden.png
new file mode 100644
index 0000000000..a6985db853
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Golden.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Red.png
new file mode 100644
index 0000000000..0d278c01e4
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Red.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Shade.png
new file mode 100644
index 0000000000..6c4d0de483
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Shade.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Skeleton.png
new file mode 100644
index 0000000000..c59ea6eeef
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Skeleton.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-White.png
new file mode 100644
index 0000000000..fe4dda1877
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-White.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Zombie.png
new file mode 100644
index 0000000000..4950514028
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Sheep-Zombie.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Skeleton.png
index a89c5e2674..e1defa15fc 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Skeleton.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Skeleton.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Base.png
index ebe89cdb63..929890e064 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Base.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Base.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-CottonCandyBlue.png
index d1801debfb..a47355f1c4 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-CottonCandyBlue.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-CottonCandyBlue.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-CottonCandyPink.png
index 6032ac8fc6..777acabb65 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-CottonCandyPink.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-CottonCandyPink.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Desert.png
index 7d0f0f963f..e430339fed 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Desert.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Desert.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Golden.png
index 59d30103ba..4572e3873a 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Golden.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Golden.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Red.png
index 3c5ba97e8a..e1e8f79251 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Red.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Red.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Shade.png
index d532f0bae3..b87e3249a0 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Shade.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Shade.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Skeleton.png
index 1619b5e1a3..b1aebf33cb 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Skeleton.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Skeleton.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-White.png
index 0660e2f8e3..d33c17b827 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-White.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-White.png differ
diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Zombie.png
index acf2daf288..fc3c31decb 100644
Binary files a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Zombie.png and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Zombie.png differ
diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Base.png b/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Base.png
new file mode 100644
index 0000000000..e49cf3ea2d
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Base.png differ
diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-CottonCandyBlue.png
new file mode 100644
index 0000000000..972ef6f174
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-CottonCandyBlue.png differ
diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-CottonCandyPink.png
new file mode 100644
index 0000000000..1ad768b0ef
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-CottonCandyPink.png differ
diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Desert.png b/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Desert.png
new file mode 100644
index 0000000000..354c6faa7b
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Desert.png differ
diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Golden.png b/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Golden.png
new file mode 100644
index 0000000000..1ba6c51e01
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Golden.png differ
diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Red.png b/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Red.png
new file mode 100644
index 0000000000..6cc0dd4e77
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Red.png differ
diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Shade.png b/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Shade.png
new file mode 100644
index 0000000000..ad63d22e5b
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Shade.png differ
diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Skeleton.png b/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Skeleton.png
new file mode 100644
index 0000000000..d28e8e54ee
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Skeleton.png differ
diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-White.png b/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-White.png
new file mode 100644
index 0000000000..d9c2e237fc
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-White.png differ
diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Zombie.png b/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Zombie.png
new file mode 100644
index 0000000000..9fc3b1b2ec
Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Zombie.png differ
diff --git a/common/locales/cs/backgrounds.json b/common/locales/cs/backgrounds.json
index a8862cef57..02ad3393ea 100644
--- a/common/locales/cs/backgrounds.json
+++ b/common/locales/cs/backgrounds.json
@@ -76,5 +76,19 @@
"backgroundFloralMeadowText": "Rozkvetlá louka",
"backgroundFloralMeadowNotes": "Piknik na rozkvetlé louce",
"backgroundGumdropLandText": "Gumídková země",
- "backgroundGumdropLandNotes": "Kousek scenérie z gumídkové země"
+ "backgroundGumdropLandNotes": "Kousek scenérie z gumídkové země",
+ "backgrounds052015": "SET 12: Vydán v květnu 2015",
+ "backgroundMarbleTempleText": "Oblázkový chrám",
+ "backgroundMarbleTempleNotes": "Zapózuj před oblázkovým chrámem",
+ "backgroundMountainLakeText": "Horské jezero",
+ "backgroundMountainLakeNotes": "Namoč si prstíky v horském jezeře.",
+ "backgroundPagodasText": "Pagody",
+ "backgroundPagodasNotes": "Vyšplhej na vršek pagod.",
+ "backgrounds062015": "SET 13: Released June 2015",
+ "backgroundDriftingRaftText": "Drifting Raft",
+ "backgroundDriftingRaftNotes": "Paddle a Drifting Raft.",
+ "backgroundShimmeryBubblesText": "Shimmery Bubbles",
+ "backgroundShimmeryBubblesNotes": "Float through a sea of Shimmery Bubbles.",
+ "backgroundIslandWaterfallsText": "Island Waterfalls",
+ "backgroundIslandWaterfallsNotes": "Picnic near Island Waterfalls."
}
\ No newline at end of file
diff --git a/common/locales/cs/challenge.json b/common/locales/cs/challenge.json
index 4224065d2f..fe410cd0b0 100644
--- a/common/locales/cs/challenge.json
+++ b/common/locales/cs/challenge.json
@@ -16,7 +16,7 @@
"selectWinner": "Zvolit vítěze a zavřít výzvu:",
"deleteOrSelect": "Smazat nebo určit výherce",
"endChallenge": "Ukončit výzvu",
- "challengeDiscription": "Toto jsou úkoly dané výzvy. Podle aktivity uživatelů mění barvu a podle nich je možné znázornit na grafu celkový pokrok skupiny.",
+ "challengeDiscription": "Toto jsou úkoly Výzvy, které ti budou přidány do tvých úkolů na hlavní stránce jakmile se Výzvy zúčastníš. Vzorové úkoly Výzvy níže budou měnit barvu a získávat grafy, aby ses mohl podívat na tvůj celkový postup skupiny.",
"hows": "Jak se všem daří?",
"filter": "Filtr",
"groups": "Skupiny",
@@ -33,7 +33,8 @@
"challengeTagPop": "Výzvy se ti objeví na seznamu štítků pod panelem i v popiscích úkolů. Takže název může být dlouhý, ale budeš také potřebovat 'krátký název'. Tzn. 'Shodit za 3 měsíce 10 kilo' by mohlo být zkráceno na '-10kg' (Klikni pro více informací).",
"challengeDescr": "Popis",
"prize": "Cena",
- "prizePop": "Pokud někdo může 'vyhrát' tvou výzvu, můžeš jej odměnit drahokamy. Maximum = počet tvých drahokamů (+ drahokamy cechu, pokud jsi tvůrcem výzvy tohoto cechu). Poznámka: Výhra nemůže být později změněna a nevrací se, pokud je výzva zrušena.",
+ "prizePop": "Pokud někdo může \"vyhrát\" tvou výzvu, můžeš jej odměnit drahokamy. Maximum = #počet tvých drahokamů (+ drahokamy ve tvém cechu) Pozn.: Výhra nemůže být později změněna.",
+ "prizePopTavern": "Pokud někdo může 'vyhrát' tvou výzvu, můžeš jej odměnit drahokamy. Maximum = počet tvých drahokamů (+ drahokamy cechu, pokud jsi tvůrcem výzvy tohoto cechu). Poznámka: Výhra nemůže být později změněna a výhra z Výzvy z krčmy se nevrací, pokud je výzva zrušena.",
"publicChallenges": "Minimálně 1 drahokam za veřejné výzvy (opravdu to eliminuje spam).",
"officialChallenge": "Oficiální výzva HabitRPG",
"by": "od",
@@ -43,6 +44,7 @@
"selectGroup": "Prosím, vyber skupinu",
"challengeCreated": "Výzva vytvořena",
"sureDelCha": "Jsi si jistý, že chceš tuto výzvu smazat?",
+ "sureDelChaTavern": "Jsi si jistý, že chceš tuto výzvu smazat? Nedostaneš zpět Drahokamy.",
"removeTasks": "Odstranit úkoly",
"keepTasks": "Ponechat úkoly",
"closeCha": "Zavřít výzvu a...",
diff --git a/common/locales/cs/character.json b/common/locales/cs/character.json
index ede1c88278..bf93b8dda1 100644
--- a/common/locales/cs/character.json
+++ b/common/locales/cs/character.json
@@ -52,14 +52,16 @@
"costume": "Kostým",
"costumeText": "Pokud se ti více líbí vzhled jiného vybavení, než toho, které máš na sobě, zaškrtni \"použít kostým\". Kostým se ti zobrazí na tvém právě používaném vybavení, které tak hezky schová.",
"useCostume": "Použít kostým",
- "gearAchievement": "Získal jsi Ocenění \"Maximální Vybavení\" za vylepšení výbavy na maximální úroveň.",
+ "gearAchievement": "You have earned the \"Ultimate Gear\" Achievement for upgrading to the maximum gear set for a class! You have attained the following complete sets:",
+ "moreGearAchievements": "To attain more Ultimate Gear badges, change classes on your stats page and buy up your new class's gear!",
+ "armoireUnlocked": "You've also unlocked the Enchanted Armoire! Click on the Enchanted Armoire Reward for a random chance at special Equipment! It may also give you random XP or food items.",
"ultimGearName": "Maximální výbava",
- "ultimGearText": "Vylepšil zbraň a brnění na maximální úroveň.",
+ "ultimGearText": "Has upgraded to the maximum weapon and armor set for the following classes:",
"level": "Úroveň",
"levelUp": "Další úroveň!",
"mana": "Mana",
"hp": "Zdraví",
- "mp": "Mana",
+ "mp": "MP",
"xp": "Zkušenost",
"health": "Zdraví",
"allocateStr": "Body přiřazené k síle:",
@@ -70,6 +72,7 @@
"allocatePerPop": "Přidat bod k vnímání",
"allocateInt": "Body přiřazené k Inteligenci:",
"allocateIntPop": "Přiřadit bod k inteligenci",
+ "noMoreAllocate": "Nyní, když jsi dosáhl úrovně 100, už nebudeš dostávat žádné body atributů. Můžeš pokračovat v dosahování dalších úrovní, nebo můžeš začít nové dobrodružství na úrovni 1, když použiješ Orb Znovuzrození, který nyní najdeš zdarma na Trhu.",
"stats": "Statistiky",
"strength": "Síla",
"strengthText": "Síla zvyšuje šanci náhodných \"kritických zásahů\" a díky tomu i bonus ke zlaťákům, zkušenosti a nalézání předmětů. Také ovlivňuje vážnost zranění bosse.",
@@ -138,5 +141,6 @@
"displayNameDescription3": "a sjeď dolů na sekci registrace, aby sis změnil své přihlašovací jméno.",
"unequipBattleGear": "Odebrat válečnou zbroj",
"unequipCostume": "Odebrat kostým",
- "unequipPetMountBackground": "Odebrat mazlíčka, jízdní zvíře, pozadí"
+ "unequipPetMountBackground": "Odebrat mazlíčka, jízdní zvíře, pozadí",
+ "animalSkins": "Zvířecí kůže"
}
\ No newline at end of file
diff --git a/common/locales/cs/communityguidelines.json b/common/locales/cs/communityguidelines.json
index 9e48136aff..2b8077cbcc 100644
--- a/common/locales/cs/communityguidelines.json
+++ b/common/locales/cs/communityguidelines.json
@@ -173,5 +173,6 @@
"commGuideLink07": "Art Trello",
"commGuideLink07description": "na posílání pixel art.",
"commGuideLink08": "Trello Výprav",
- "commGuideLink08description": "pro posílání napsaných výprav."
+ "commGuideLink08description": "pro posílání napsaných výprav.",
+ "lastUpdated": "Naposledy aktualizováno"
}
\ No newline at end of file
diff --git a/common/locales/cs/content.json b/common/locales/cs/content.json
index 2487c714a7..61234feaf1 100644
--- a/common/locales/cs/content.json
+++ b/common/locales/cs/content.json
@@ -1,6 +1,10 @@
{
"potionText": "Lektvar zdraví",
"potionNotes": "Obnoví 15 bodů zdraví (okamžitě)",
+ "armoireText": "Enchanted Armoire",
+ "armoireNotesFull": "Open the Armoire to randomly receive special Equipment, Experience, or food! Equipment pieces remaining:",
+ "armoireLastItem": "You've found the last piece of rare Equipment in the Enchanted Armoire.",
+ "armoireNotesEmpty": "The Armoire will have new Equipment every month. Until then, keep clicking for Experience and Food!",
"dropEggWolfText": "vlk",
"dropEggWolfAdjective": "věrný",
"dropEggTigerCubText": "tygřík",
@@ -54,9 +58,11 @@
"questEggRockAdjective": "živý",
"questEggBunnyText": "Králíček",
"questEggBunnyAdjective": "přítulný",
- "questEggSlimeText": "Marshmallow Slime",
- "questEggSlimeAdjective": "sweet",
- "eggNotes": "Najdi líhnoucí lektvar, nalij ho na vejce a to se vylíhne v <%= eggAdjective(locale) %> <%= eggText(locale) %>.",
+ "questEggSlimeText": "Marshmallow želé",
+ "questEggSlimeAdjective": "sladký",
+ "questEggSheepText": "Beran",
+ "questEggSheepAdjective": "huňatý",
+ "eggNotes": "Najdi líhnoucí lektvar, nalij ho na vejce a z něj se pak vylíhne <%= eggAdjective(locale) %> <%= eggText(locale) %>.",
"hatchingPotionBase": "Základní",
"hatchingPotionWhite": "Bílý",
"hatchingPotionDesert": "Pouštní",
diff --git a/common/locales/cs/front.json b/common/locales/cs/front.json
index 27ea7966d6..c7880e8d22 100644
--- a/common/locales/cs/front.json
+++ b/common/locales/cs/front.json
@@ -1,19 +1,99 @@
{
- "titleFront": "HabitRPG | Ať je život hrou",
- "tagline": "Bezplatná služba pro tvorbu dobrých návyků, kde je život hrou.",
- "landingp1": "Problém aplikací pro produktivitu na trhu je ten, že nenabízí systém motivace uživatele, který by ho nutil zůstat. HabitRPG tohle nabízí a ještě tě u toho pobaví rozsáhlou řadou odměn za tvé úspěchy, ale i povzbudí penalizací za nesplnění tvých úkolů. HabitRPG je externím motivátorem pro tvé každodenní činnosti.",
- "landingp2header": "Okamžitá odměna",
- "landingp2": "Kdykoli upevníš pozitivní zvyk, splníš každodenní úkol nebo splníš něco z úkolů, HabitRPG tě okamžitě odmění v podobě zkušenostních bodů a zlaťáků. Zkušenostní body tě přibližují k další úrovni postavy, ve kterých odemykáš další možnosti, jako jsou povolání a mazlíčci, a vylepšuješ svou osobní statistiku. Zlaťáky můžeš utrácet za předměty, které mění tvůj zážitek, nebo osobní odměny, které si můžeš vytvořit za účelem osobní motivace. Když ti i ty nejmenší úspěchy opatří okamžitou odměnu, budeš méně náchylný k otálení a odkládání věcí na později.",
- "landingp3header": "Následky",
- "landingp3": "Pokaždé, když propadneš nějakému zlozvyku nebo nezvládneš dokončit některý z denních úkolů, ztratíš část zdraví. Pokud ti zdraví klesne příliš, zemřeš a ztratíš část z pokroku, kterého jsi dosáhl. Díky okamžitým následkům ti může HabitRPG pomoci překonat zlozvyky a cykly prokrastinace předtím, než způsobí problémy v reálném životě.",
- "landingp4header": "Odpovědnost",
- "landingp4": "Aktivní komunita, kterou HabitRPG poskytuje, ti dává odpovědnost, kterou potřebuješ k vytrvání v úkolech. Díky systému družin se můžeš nechat motivovat svými přáteli. Systém cechů ti umožní najít lidi s podobnými zájmy nebo problémy, takže budeš moci sdílet své cíle a rady jak překonávat překážky. Právě komunita na HabitRPG zajišťuje podporu a odpovědnost, kterou potřebuješ k úspěchu. ",
+ "FAQ": "FAQ",
+ "accept1Terms": "Kliknutím na následující tlačítko souhlasím s",
+ "accept2Terms": "a",
+ "alexandraQuote": "Nemohla jsem o HabitRPG nemluvit při svém proslovu v Madridu. Nástroj, který musí mít každý živnostník, který by potřeboval nějakého šéfa nad sebou.",
+ "althaireQuote": "Být neustále na nějaké výpravě mě hodně motivuje plnit denní úkoly a úkoly v úkolníčku. Mou největší motivací je nenechat mou družinu ve štychu.",
+ "andeeliaoQuote": "Úžasný produkt, začala jsem teprve před pár dny a již si více hlídám čas a jsem mnohem produktivnější!",
+ "autumnesquirrelQuote": "Už se tolik neflákám jak v práci, tak doma, a platím účty včas.",
+ "businessSample1": "Potvrď 1 stranu Inventáře",
+ "businessSample2": "20 minut archivace",
+ "businessSample3": "Seřadit a zpracovat příchozí poštu",
+ "businessSample4": "Připravit 1 dokument pro klienta",
+ "businessSample5": "Zavolat klientům/Odložit telefonáty",
+ "businessText": "Používejte HabitRPG při podnikání",
+ "choreSample1": "Dát špinavé prádlo do koše",
+ "choreSample2": "20 minut domácích prací",
+ "choreSample3": "Umýt nádobí",
+ "choreSample4": "Uklidit jeden pokoj",
+ "choreSample5": "Vyprat a usušit várku prádla",
+ "chores": "Domácí práce",
+ "communityBug": "Nahlásit chybu",
+ "communityExtensions": "Dodatky a rozšíření",
+ "communityFacebook": "Facebook",
+ "communityFeature": "Zažádat o funkci",
+ "communityForum": "Fórum",
+ "communityKickstarter": "Kickstarter",
+ "communityReddit": "Reddit",
+ "companyAbout": "Jak to funguje",
+ "companyBlog": "Blog",
+ "companyDonate": "Přispět",
+ "companyExtensions": "Rozšíření",
+ "companyPrivacy": "Soukromí",
+ "companyTerms": "Podmínky",
+ "companyVideos": "Videa",
+ "contribUse": "Přispěvatelé HabitRPG používají",
+ "dragonsilverQuote": "Ani už nedokážu vyjmenovat všechny aplikace na sledování úkolů a management času, které jsem v minulosti vyzkoušel... HRPG je jediný, který mi opravdu pomohl něco udělat a ne jen si věci vypsat.",
+ "dreimQuote": "Když jsem minulé léto objevila HabitRPG, neudělala jsem asi polovinu zkoušek. Ale díky denním úkolů jsem byla schopná zorganizovat si svůj čas a srovnat se do latě. A nakonec jsem udělala všechny zkoušky minulý měsíc na velice dobré známky.",
+ "elmiQuote": "Každý den se těším, až vstanu a získám další zlato!",
+ "email": "Email",
+ "emailNewPass": "Poslat nové heslo na email",
+ "evagantzQuote": "První kontrola u zubaře, který byl poprvé spokojen s mými čistícími návyky. Děkuju, HabiRPG!",
+ "examplesHeading": "Hráči používají HabitRPG ke zvládnutí...",
+ "featureAchievementByline": "Děláš něco úžasného? Získej odznak a všem ho ukaž!",
+ "featureAchievementHeading": "Odznaky za úspěchy",
+ "featureEquipByline": "Kup si limitované edice výzbroje, lektvary, a další virtuální zboží na našem Trhu za odměny za úkoly!",
+ "featureEquipHeading": "Vybavení a další",
+ "featurePetByline": "Vejce a předměty nacházíš po splnění úkolů. Buď tak produktivní, jak jen dokážeš, a nasbírej mazlíčky a zvířata!",
+ "featurePetHeading": "Mazlíčci a zvířata",
+ "featureSocialByline": "Přidej se ke skupinám se stejnými zájmy a stejně smýšlejícími lidmi. Vytvářej Výzvy a soutěž s dalšími uživateli.",
+ "featureSocialHeading": "Sociální hra",
+ "featuredIn": "Zmíněno v",
+ "featuresHeading": "Také tu máme...",
+ "footerCommunity": "Komunita",
+ "footerCompany": "Společnost",
+ "footerMobile": "Mobilní aplikace",
+ "footerSocial": "Komunita",
+ "forgotPass": "Zapomněl jsem heslo",
+ "frabjabulousQuote": "Díky HabitRPG jsem dostala naprosto suprovou práci... A co víc, každý den používám zubní nit!",
+ "free": "Hraj zdarma",
+ "gamifyButton": "Ať je život hrou již dnes!",
+ "goalSample1": "Cvičit na piáno 1 hodinu",
+ "goalSample2": "Pracovat na článku na publikaci",
+ "goalSample3": "Pracovat na příspěvku na blogu",
+ "goalSample4": "Lekce japonštiny na Duolingo",
+ "goalSample5": "Přečíst si naučný článek",
+ "goals": "Cíle",
+ "health": "Zdraví",
+ "healthSample1": "Vypít vodu/limonádu",
+ "healthSample2": "Vzít si žvýkačku/Zapálit si",
+ "healthSample3": "Jít po schodech/Jet výtahem",
+ "healthSample4": "Jíst zdravě/nezdravě",
+ "healthSample5": "Zapotit se na 1 hodinu",
+ "history": "Historie",
+ "infhQuote": "HabitRPG mi opravdu pomohlo dát mému životu nějakou strukturu.",
+ "invalidEmail": "Aby mohlo proběhnout resetování hesla, musí být zadán platný email.",
+ "irishfeet123Quote": "Měla jsem problém s úklidem. Nechávala jsem všude nádobí a skleničky. HabitRPG mi pomohlo!",
+ "joinOthers": "Přidej se k 200 000 lidí, kteří se již baví při dosahování svých cílů!",
+ "kazuiQuote": "Před HabitRPG jsem se zasekla s diplomkou a byla jsem nespokojena se svou disciplínou ohledně domácích prací a věcí jako učením se slovíček. Ukázalo se, že když si tyhle cíle rozdělím na menší, je mnohem snazší se motivovat a neustále pracovat.",
+ "landingadminlink": "administrační balíčky",
"landingend": "Stále nejsi přesvědčen?",
"landingend2": "Podívej se na detailnější seznam",
- "landingfeatureslink": "našich služeb",
"landingend3": ". Hledáš trochu osobnější přístup? Podívej se na naše",
- "landingadminlink": "administrační balíčky",
"landingend4": ", které jsou skvělé pro rodiny, učitele, podpůrné skupiny a podniky.",
+ "landingfeatureslink": "našich služeb",
+ "landingp1": "Problém aplikací pro produktivitu na trhu je ten, že nenabízí systém motivace uživatele, který by ho nutil zůstat. HabitRPG tohle nabízí a ještě tě u toho pobaví rozsáhlou řadou odměn za tvé úspěchy, ale i povzbudí penalizací za nesplnění tvých úkolů. HabitRPG je externím motivátorem pro tvé každodenní činnosti.",
+ "landingp2": "Kdykoli upevníš pozitivní zvyk, splníš každodenní úkol nebo splníš něco z úkolů, HabitRPG tě okamžitě odmění v podobě zkušenostních bodů a zlaťáků. Zkušenostní body tě přibližují k další úrovni postavy, ve kterých odemykáš další možnosti, jako jsou povolání a mazlíčci, a vylepšuješ svou osobní statistiku. Zlaťáky můžeš utrácet za předměty, které mění tvůj zážitek, nebo osobní odměny, které si můžeš vytvořit za účelem osobní motivace. Když ti i ty nejmenší úspěchy opatří okamžitou odměnu, budeš méně náchylný k otálení a odkládání věcí na později.",
+ "landingp2header": "Okamžitá odměna",
+ "landingp3": "Pokaždé, když propadneš nějakému zlozvyku nebo nezvládneš dokončit některý z denních úkolů, ztratíš část zdraví. Pokud ti zdraví klesne příliš, zemřeš a ztratíš část z pokroku, kterého jsi dosáhl. Díky okamžitým následkům ti může HabitRPG pomoci překonat zlozvyky a cykly prokrastinace předtím, než způsobí problémy v reálném životě.",
+ "landingp3header": "Následky",
+ "landingp4": "Aktivní komunita, kterou HabitRPG poskytuje, ti dává odpovědnost, kterou potřebuješ k vytrvání v úkolech. Díky systému družin se můžeš nechat motivovat svými přáteli. Systém cechů ti umožní najít lidi s podobnými zájmy nebo problémy, takže budeš moci sdílet své cíle a rady jak překonávat překážky. Právě komunita na HabitRPG zajišťuje podporu a odpovědnost, kterou potřebuješ k úspěchu. ",
+ "landingp4header": "Odpovědnost",
+ "leadText": "HabitRPG je aplikace na vytváření zvyků a udržení produktivity, která ti z reálného života udělá hru. Díky odměnám a trestům budeš motivován, a silná sociální síť tě bude inspirovat. HabitRPG ti pomůže dosáhnout tvých cílů, ať už chceš být zdravý, pilný, nebo šťastný.",
+ "login": "Přihlásit",
+ "loginAndReg": "Přihlásit / Registrovat",
+ "loginFacebookAlt": "Přihlásit / Registrovat pomocí Facebooku",
+ "logout": "Odhlásit",
"marketing1Header": "Zlepšete své návyky hraním hry",
"marketing1Lead1": "HabitRPG je internetová hra, která zlepšuje návyky v reálném životě. Mění tvůj život v hru tím, že všechny tvé úkoly (zvyky, denní úkoly a úkoly v úkolníčku) přemění na malá \"monstra\", která musíš porazit. Čím lepší v tom budeš, tím dále budeš postupovat ve hře. Pokud se nebudeš snažit, tvá postava začne chřadnout. ",
"marketing1Lead2": "Získej Hustou Výbavu. Vylepši si zvyky aby sis mohl vylepšit postavu. Pochlub se hustou výbavou, kterou sis zasloužil",
@@ -26,71 +106,77 @@
"marketing2Lead2Title": "Bossové",
"marketing2Lead3": "Výzvy ti umožňují soutěžit s přáteli a neznámými lidmi. Ten, kdo ze sebe při výzvě vydá to nejlepší, vyhrává speciální ceny.",
"marketing3Header": "Aplikace",
- "marketing3Lead1Title": "iPhone a Android",
"marketing3Lead1": "Aplikace pro iPhone a Android ti umožňují postarat se o vše na cestách. Uvědomujeme si, že přihlášení se na stránku, abys odklikal úkoly, může být otrava. ",
"marketing3Lead2": "Další nástroje třetích stran přináší HabitRPG do různých aspektů tvého života. Naše API umožňuje snadnou integraci s věcmi jako rozšířením Chrome, se kterým budeš ztrácet body za surfování po neproduktivních stránkách, nebo získávat body za surfování po těch produktivních. Více se dozvíš zde",
"marketing4Header": "Využití v organizacích",
- "marketing4Lead1Title": "Vzdělávání hrou",
"marketing4Lead1": "Vzdělávání je jedním z nejlepších sektorů pro zhratelnění. Všichni víme, jak jsou v dnešní době studenti přilepení k mobilům a počítačovým hrám, využijte toho! Nechte je soupeřit v přátelské soutěži. Odměňujte dobré chování unikátními cenami. A pozorujte jak se jejich známky a chování zlepší.",
- "marketing4Lead2Title": "Zdravý životní styl jako hra",
+ "marketing4Lead1Title": "Vzdělávání hrou",
"marketing4Lead2": "Náklady na zdraví rostou a něco se musí změnit. Stovky programů jsou sestavovány za účelem snížení nákladů a zlepšení blahobytu. Věříme, že HabitRPG může dláždit cestu ke zdravému životnímu stylu.",
- "marketing4Lead3Title": "Proměň vše ve hru",
+ "marketing4Lead2Title": "Zdravý životní styl jako hra",
"marketing4Lead3-1": "Chceš proměnit svůj život ve hru?",
"marketing4Lead3-2": "Zajímáš se o vedení skupiny ve vzdělání, wellness a více?",
"marketing4Lead3-3": "Chceš se dozvědět víc?",
- "playButton": "Hraj",
- "username": "Uživatelské jméno",
- "password": "Heslo",
- "useUUID": "Použij UUID / API Token (pro uživatele Facebooku) ",
- "passMan": "Pokud používáš správce hesel ( jako 1Password) a máš problémy se přihlásit, zkus napsat uživatelské jméno a heslo ručně.",
- "forgotPass": "Zapoměl jsem heslo",
- "emailNewPass": "Poslat nové heslo na email",
- "invalidEmail": "Aby mohlo proběhnout resetování hesla, musí být zadán platný email.",
- "email": "Email",
- "passConfirm": "Potvrdit heslo",
- "accept1Terms": "Kliknutím na následující tlačítko souhlasím s",
- "terms": "Podmínkami",
- "accept2Terms": "a",
- "privacy": "Ochranou soukromí",
- "home": "Domů",
- "learnMore": "Dozvědět se více",
- "contact": "Kontakt",
- "history": "Historie",
- "anonymous": "Anonymní",
- "tasks": "Úkoly",
- "loginAndReg": "Přihlásit / Registrovat",
- "loginFacebookAlt": "Přihlásit / Registrovat pomocí Facebooku",
- "login": "Přihlásit",
- "register": "Registrovat",
- "options": "Možnosti",
- "logout": "Odhlásit",
- "sync": "Synchronizovat",
- "FAQ": "FAQ",
- "tutorials": "Průvodci",
- "psst": "Psst",
- "footerMobile": "Mobilní aplikace",
- "mobileIOS": "iOS",
+ "marketing4Lead3Title": "Proměň vše ve hru",
"mobileAndroid": "Android",
- "footerCompany": "Společnost",
- "companyDonate": "Přispět",
- "companyAbout": "Jak to funguje",
- "companyVideos": "Videa",
- "companyBlog": "Blog",
- "companyExtensions": "Rozšíření",
- "companyPrivacy": "Soukromí",
- "companyTerms": "Podmínky",
- "footerCommunity": "Komunita",
- "communityBug": "Nahlásit chybu",
- "communityFeature": "Zažádat o funkci",
- "communityExtensions": "Dodatky a rozšíření",
- "communityForum": "Fórum",
- "communityKickstarter": "Kickstarter",
- "communityFacebook": "Facebook",
- "communityReddit": "Reddit",
- "footerSocial": "Komunita",
- "socialTitle": "HabitRPG - Ať je život hrou",
- "watchVideos": "Podívej se na videa",
+ "mobileIOS": "iOS",
+ "motivate": "Motivuj sebe a svůj tým!",
+ "motivate1": "Motivuj se k nemožnému.",
+ "motivate2": "Zorganizuj se. Motivuj se. Sbírej zlato.",
+ "passConfirm": "Potvrdit heslo",
+ "passMan": "Pokud používáš správce hesel ( jako 1Password) a máš problémy se přihlásit, zkus napsat uživatelské jméno a heslo ručně.",
+ "password": "Heslo",
+ "playButton": "Hraj",
+ "playButtonFull": "Hraj HabitRPG",
"presskit": "Pro novináře",
+ "presskitDownload": "Stáhnout všechny obrázky:",
"presskitText": "Děkujeme za zájem o HabitRPG! Následující obrázky mohou být použity pro články nebo videa o HabitRPG. pro více informací, prosíme, kontaktujte Sienu Leslie na leslie@habitrpg.com.",
- "presskitDownload": "Stáhnout všechny obrázky:"
+ "privacy": "Ochranou soukromí",
+ "psst": "Psst",
+ "punishByline": "Zlom zlozvyky a skonči s flákáním díky okamžitým následkům.",
+ "punishHeading1": "Nesplnil jsi denní cíl?",
+ "punishHeading2": "Ztratíš zdraví!",
+ "questByline1": "Hraní s přáteli tě činí odpovědným za tvé úkoly.",
+ "questByline2": "Zadávejte si navzájem Výzvy a dosáhněte cílů společně!",
+ "questHeading1": "Bojuj s přáteli proti příšerám!",
+ "questHeading2": "Když se budeš flákat, odnesou to všichni!",
+ "register": "Registrovat",
+ "rewardByline1": "Utrácej zlato za virtuální i reálné odměny.",
+ "rewardByline2": "Okamžité odměny tě budou motivovat!",
+ "rewardHeading": "Splň úkol a získej za to zlato!",
+ "sampleDailies": "Příklad denních úkolů",
+ "sampleHabits": "Příklad zvyků",
+ "sampleToDo": "Příklad úkolů v úkolníčku",
+ "school": "Škola",
+ "schoolSample1": "Dokončit 1 úlohu",
+ "schoolSample2": "Studovat 1 hodinu",
+ "schoolSample3": "Sejít se se studijní skupinou",
+ "schoolSample4": "Poznámky k 1 kapitole",
+ "schoolSample5": "Přečíst 1 kapitolu",
+ "sixteenBitFilQuote": "Plním své úkoly v rekordním čase díky HabitRPG. Vždycky se hrozně těším, až dosáhnu další úrovně!",
+ "skysailorQuote": "Moje družina a naše výpravy mě drží stále ve hře, což mě motivuje plnit své závazky a měnit tak svůj život k lepšímu.",
+ "socialTitle": "HabitRPG - Ať je život hrou",
+ "supermouse35Quote": "Víc cvičím a už měsíc jsem si nezapomněla vzít léky! Díky, Habit :D",
+ "sync": "Synchronizovat",
+ "tasks": "Úkoly",
+ "teamSample1": "Načrtnout itinerář meetingu na úterý",
+ "teamSample2": "Brainstorming ohledně hacknutí růstu",
+ "teamSample3": "Prodiskutovat KPI na tento týden",
+ "teams": "Týmy",
+ "terms": "Podmínkami",
+ "testimonialHeading": "Co o nás říkají...",
+ "tutorials": "Průvodci",
+ "unlockByline1": "Dosáhni svých cílů a postup na vyšší úroveň.",
+ "unlockByline2": "Odemkni novou motivaci, jako je sbírání mazlíčků, náhodné odměny, sesílání kouzel a mnohem víc!",
+ "unlockHeadline": "Čím jsi produktivnější, tím více obsahu odemkneš!",
+ "useUUID": "Použij UUID / API Token (pro uživatele Facebooku) ",
+ "username": "Uživatelské jméno",
+ "watchVideos": "Podívej se na videa",
+ "work": "Práce",
+ "zelahQuote": "HabitRPG mi pomáhá rozhodnout se, jestli jít do postele a získat za to body, nebo zůstat vzhůru a přijít o zdraví!",
+ "reportAccountProblems": "Nahlásit problémy z účtem",
+ "reportCommunityIssues": "Nahlásit problém v komunitě",
+ "generalQuestionsSite": "Obecné otázky o stránce",
+ "businessInquiries": "Obchodní poptávka",
+ "merchandiseInquiries": "Poptávka po zboží",
+ "marketingInquiries": "Poptávka marketing/sociální média"
}
\ No newline at end of file
diff --git a/common/locales/cs/gear.json b/common/locales/cs/gear.json
index 6489588a0e..bc32b65327 100644
--- a/common/locales/cs/gear.json
+++ b/common/locales/cs/gear.json
@@ -120,6 +120,8 @@
"weaponMystery201411Notes": "Píchni své nepřátele nebo se pusť do svého oblíbeného jídla - tyhle všestranné vidle zvládnou všechno! Nepřináší žádný benefit.",
"weaponMystery201502Text": "Třpytivá okřídlená hůl lásky a také pravdy",
"weaponMystery201502Notes": "Za křídla! Za lásku! A také za pravdu! Nepřináší žádný benefit. Předmět pro předplatitele únor 2015.",
+ "weaponMystery201505Text": "Kopí zeleného rytíře",
+ "weaponMystery201505Notes": "Toto zelené a stříbrné kopí sundalo již mnoho jezdců z jejich zvířat. Nepřináší žádný benefit. Předmět pro předplatitele květen 2015.",
"weaponMystery301404Text": "Steampunková hůl",
"weaponMystery301404Notes": "Výborná na procházku po městě. Předmět pro předplatitele březen 2015. Nepřináší žádný benefit.",
"armor": "zbroj",
@@ -247,6 +249,8 @@
"armorMystery201501Notes": "Galaxie se třpytí v kovu tohoto brnění a posilují nositelovo odhodlání. Nepřináší žádný benefit. Předmět pro předplatitele leden 2015.",
"armorMystery201503Text": "Akvamarínové zbroj",
"armorMystery201503Notes": "Tento modrý minerál symbolizuje štěstí, spokojenost a nekonečnou produktivitu. Nepřináší žádný benefit. Předmět pro předplatitele březen 2015.",
+ "armorMystery201504Text": "Oděv pilné včelky",
+ "armorMystery201504Notes": "V tomto okouzlujícím oděvu budeš produktivní jako pilná včelka! Nepřináší žádný benefit. Předmět pro předplatitele Duben 2015.",
"armorMystery301404Text": "Steampunk oblek",
"armorMystery301404Notes": "Elegantní a fešácký, joj! Nepřináší žádný benefit. Předmět pro předplatitele únor 3015.",
"headgear": "Pokrývka hlavy",
@@ -368,6 +372,8 @@
"headMystery201412Notes": "Kdo je tu tučňák? nepřináší žádný benefit. Předmět pro předplatitele prosinec 2014.",
"headMystery201501Text": "Hvězdná helma",
"headMystery201501Notes": "Hvězdné konstalace se třpytí a poblikávají v této helmě a vedou nositelovy myšlenky k většímu soustředění. Nepřináší žádný benefit. Předmět pro předplatitele leden 2015.",
+ "headMystery201505Text": "Helma zeleného rytíře",
+ "headMystery201505Notes": "Zelená chocholka na této železné helmě se hrdě třepotá. Nepřináší žádný benefit. Předmět pro předplatitele květen 2015.",
"headMystery301404Text": "Fešný cylindr",
"headMystery301404Notes": "Fešný cylindr pro ty největší džentlmeny. Předmět pro předplatitele leden 2015. Nepřináší žádný benefit.",
"headMystery301405Text": "Obyčejný cylindr",
@@ -445,6 +451,8 @@
"backMystery201404Notes": "Buď motýlem a poletuj kolem! Nepřináší žádný benefit. Výbava pro předplatitele duben 2014",
"backMystery201410Text": "Křídla goblina",
"backMystery201410Notes": "Proleť se nocí na těchto silných křídlech. Nepřináší žádný benefit. Výbava pro předplatitele říjen 2014.",
+ "backMystery201504Text": "Křídla pilné včelky",
+ "backMystery201504Notes": "Bzzzz! Poctivě od úkolu k úkolu. Nepřináší žádný benefit. Předmět pro předplatitele Duben 2015.",
"backSpecialWonderconRedText": "Mocná kápě",
"backSpecialWonderconRedNotes": "Skví se silou a krásou. Speciální edice běžné zbroje. Nepřináší žádný benefit.",
"backSpecialWonderconBlackText": "Záludná kápě",
@@ -462,6 +470,8 @@
"bodySpecialSummerHealerText": "Korálový límec",
"bodySpecialSummerHealerNotes": "Stylový límec ze živého korálů! Nepřidává žádný bonus. Limitovaná edice 2014 Letní Výbava.",
"headAccessory": "doplňky na hlavu",
+ "accessories": "Doplňky",
+ "animalEars": "Zvířecí uši",
"headAccessoryBase0Text": "Bez příslušenství na hlavě",
"headAccessoryBase0Notes": "Bez příslušenství na hlavě.",
"headAccessorySpecialSpringRogueText": "Fialové kočičí uši",
@@ -480,6 +490,22 @@
"headAccessorySpecialSpring2015MageNotes": "Tyto uši poctivě naslouchají, jestli někde kolem není nějaký mág, který odhaluje kouzla. Nepřináší žádný benefit. Limitovaná edice Jarní výbavy 2015.",
"headAccessorySpecialSpring2015HealerText": "Zelené kočičí uši",
"headAccessorySpecialSpring2015HealerNotes": "Z těchto roztomilých kočičí uší všichni zezelenají závistí. Nepřináší žádný benefit. Limitovaná edice Jarní výbavy 2015.",
+ "headAccessoryBearEarsText": "Medvědí uši",
+ "headAccessoryBearEarsNotes": "Tyhle uši z tebe udělají chlupatého medvídka! Nepřináší žádný benefit.",
+ "headAccessoryCactusEarsText": "Kaktusové uši",
+ "headAccessoryCactusEarsNotes": "Tyhle uši z tebe udělají pichlavý kaktus! Nepřináší žádný benefit.",
+ "headAccessoryFoxEarsText": "Liščí uši",
+ "headAccessoryFoxEarsNotes": "Tyhle uši z tebe udělají chytrou lišku! Nepřináší žádný benefit.",
+ "headAccessoryLionEarsText": "Lví uši",
+ "headAccessoryLionEarsNotes": "Tyhle uši z tebe udělají vznešeného lva! Nepřináší žádný benefit.",
+ "headAccessoryPandaEarsText": "Pandí uši",
+ "headAccessoryPandaEarsNotes": "Tyto uši z tebe udělají něžnou padnu! Nepřináší žádný benefit.",
+ "headAccessoryPigEarsText": "Prasečí uši",
+ "headAccessoryPigEarsNotes": "Tyto uši z tebe udělají kouzelné prasátko! Nepřináší žádný benefit.",
+ "headAccessoryTigerEarsText": "Tygří uši",
+ "headAccessoryTigerEarsNotes": "Tyhle uši z tebe udělají divokého tygra! Nepřináší žádný benefit.",
+ "headAccessoryWolfEarsText": "Vlčí uši",
+ "headAccessoryWolfEarsNotes": "Tyhle uši z tebe udělají loajálního vlka! Nepřináší žádný benefit.",
"headAccessoryMystery201403Text": "Paroží lesáka",
"headAccessoryMystery201403Notes": " Tohle paroží se třpytí mechem a lišejníkem. Nepřináší žádný benefit. Výbava pro předplatitele březen 2014.",
"headAccessoryMystery201404Text": "Měsíční motýlí tykadla",
diff --git a/common/locales/cs/generic.json b/common/locales/cs/generic.json
index 6fe05b3793..9e3cca64ae 100644
--- a/common/locales/cs/generic.json
+++ b/common/locales/cs/generic.json
@@ -5,7 +5,20 @@
"habitica": "Habitika",
"expandToolbar": "Rozbalit lištu",
"collapseToolbar": "Zabalit lištu",
- "formattingMarkdown": "Formátování povoleno",
+ "markdownBlurb": "HabitRPG používá formátování ve zprávách. Podívej se na Tahák na formátování, kde najdeš více informací.",
+ "showFormattingHelp": "Ukázat nápovědu k formátování",
+ "hideFormattingHelp": "Schovat nápovědu k formátování",
+ "youType": "Napíšeš:",
+ "youSee": "Vidíš:",
+ "italics": "*kurzíva*",
+ "bold": "**tučně**",
+ "strikethrough": "~~přeškrtnuto~~",
+ "emojiExample": ":smajlík:",
+ "markdownLinkEx": "[HabitRPG je super!](https://habitrpg.com)",
+ "markdownImageEx": "",
+ "unorderedListHTML": "+ První položka
+ Druhá položka
+ Třetí položka",
+ "unorderedListMarkdown": "+ První položka\n+ Druhá položka\n+ Třetí položka",
+ "code": "`kód`",
"achievements": "Úspěchy",
"modalAchievement": "Úspěch!",
"special": "Speciální",
diff --git a/common/locales/cs/groups.json b/common/locales/cs/groups.json
index 9f7b08dd86..d466e1373e 100644
--- a/common/locales/cs/groups.json
+++ b/common/locales/cs/groups.json
@@ -2,7 +2,7 @@
"tavern": "Krčma",
"innCheckOut": "Odhlásit se z hostince",
"innCheckIn": "Odpočívat v hostinci",
- "innText": "Jak se ti líbí v Hostinci, <%= name %>? Abychom tě ochránili, tvé denní úkoly jsou zmrazeny. To, co máš odškrtnuté nebude zpracováno nebo smazáno až do zítřka (den po tvém odhlášení). Buď opatrný, pokud je tvá družina na výpravě, to, co prošvihnou, zraní i tebe! A ty nemůžeš nijak pomoci. Jsi připraven odejít? Odhlaš se.",
+ "innText": "Odpočíváš v Hostinci! Zatímco tu budeš, tvé Denní úkoly ti na konci dne nijak neublíží, ale vždy se resetují. Ale pozor: pokud jsi v boji s Bossem, ublíží ti nesplněné úkoly tvých přátel v družině, pokud také nejsou v Hostinci! Navíc, jakákoliv újma, kterou uštědříš Bossovi (nebo nasbírané předměty) se ti nepřipíšou dokud se z Hostince neodhlásíš.",
"lfgPosts": "Hledá se skupina (družina)",
"tutorial": "Průvodce",
"glossary": "Slovník",
@@ -96,5 +96,25 @@
"abuseReported": "Děkujeme za nahlášení tohoto příspěvku. Moderátoři byli upozorněni.",
"abuseAlreadyReported": "Již jsi tento příspěvek nahlásil.",
"needsText": "Prosím, napiš zprávu.",
- "needsTextPlaceholder": "Napiš svou zprávu sem."
+ "needsTextPlaceholder": "Napiš svou zprávu sem.",
+ "copyMessageAsToDo": "Zkopírovat zprávu jako Úkol",
+ "messageAddedAsToDo": "Zpráva zkopírována jako Úkol",
+ "messageWroteIn": "<%= user %> napsal v <%= group %>",
+ "msgPreviewHeading": "Náhled zprávy",
+ "leaderOnlyChallenges": "Pouze velitel družiny může vytvářet Výzvy",
+ "sendGift": "Poslat dárek",
+ "inviteFriends": "Pozvat přátele",
+ "inviteAlertInfo": "Pozvi přátele pomocí Uživatelského ID.",
+ "inviteExistUser": "Pozvat existujícího uživatele",
+ "inviteByEmail": "Pozvi přátele pomocí emailu. Pokud se přidají z tvého emailu, budou automaticky pozváni do této skupiny.",
+ "byColon": "Od:",
+ "inviteNewUsers": "Pozvat nové uživatele",
+ "inviteAlertInfo2": "Nebo sdílej tento link (kopírovat/vložit):",
+ "sendGiftHeading": "Poslat dárek <%= name %>",
+ "sendGiftGemsBalance": "Z <%= number %> Drahokamů",
+ "sendGiftCost": "Celkem: $<%= cost %> USD",
+ "sendGiftFromBalance": "Z bilance",
+ "sendGiftPurchase": "Koupit",
+ "sendGiftMessagePlaceholder": "Osobní zpráva (volitelné)",
+ "sendGiftSubscription": "<%= months %> měsíc(e/ů): $<%= price %>"
}
\ No newline at end of file
diff --git a/common/locales/cs/messages.json b/common/locales/cs/messages.json
index 2f84f2171f..050e4e0a70 100644
--- a/common/locales/cs/messages.json
+++ b/common/locales/cs/messages.json
@@ -17,7 +17,7 @@
"messageHatched": "Tvé vejce se vylíhlo! Navštiv svou stáj, abys svého mazlíčka mohl vybavit.",
"messageNotEnoughGold": "Nedostatek zlaťáků",
"messageTwoHandled": "<%= gearText %> je dvouruční.",
- "messageDropFood": "Našel jsi <%= dropArticle %><%= dropText %>! <%= dropNotes %>",
+ "messageDropFood": "Copak to je? A hele, <%= dropArticle %><%= dropText %>! <%= dropNotes %>",
"messageDropEgg": "Našel jsi vejce, ze kterého se vylíhne <%= dropText %> ! <%= dropNotes %>",
"messageDropPotion": "Našel jsi <%= dropText %> líhnoucí lektvar! <%= dropNotes %>",
"messageFoundQuest": "Našel jsi výpravu \"<%= questText %>\"!"
diff --git a/common/locales/cs/npc.json b/common/locales/cs/npc.json
index dd085c85a6..f4e8191011 100644
--- a/common/locales/cs/npc.json
+++ b/common/locales/cs/npc.json
@@ -2,11 +2,11 @@
"npc": "NPC",
"npcText": "Podpořil projekt na Kickstarteru, jak to jen bylo možné! ",
"mattBoch": "Matt Boch",
- "mattShall": "<%= name %>, cítíš se na projížďku? Klikni na zvíře, které si chceš osedlat. ",
- "mattBochText1": "Vítej u mazlíčků! Jsem Matt, pán šelem. Zvol si mazlíčka, který tě bude doprovázet po tvém boku. Krm je a oni vyrostou v silná zvířata.",
+ "mattShall": "<%= name %>, cítíš se na projížďku? Jakmile dostatečně nakrmíš mazlíčka, objeví se tady a budeš se na něm moci projet. Klikni na zvíře, které si chceš osedlat. ",
+ "mattBochText1": "Vítej ve Stáji! Jsem Matt, Pán šelem. Až dosáhneš úrovně 4, budeš moci pomocí lektvarů líhnout vajíčka. Když se ti na Trhu vylíhne mazlíček, objeví se tady! Klikni na něj a objeví se u tvé postavy. Krm ho jídlem, které budeš nacházet, a on pak vyroste a budeš se na něm moci projet.",
"daniel": "Daniel",
- "danielText": "Vítej v krčmě! Chvilku se zdrž a poznej místní. Pokud si potřebuješ odpočinout (jedeš na dovolenou? náhlá nemoc?), nabízím ti pokoj v hostinci. Zatímco tu budeš ubytovaný, tvé denní úkoly budou zmrazeny tak, jak jsou (zaškrtnuté/nezaškrtnuté), dokud se nevrátíš. Na konci dne ti nijak neublíží.",
- "danielText2": "Dej pozor: Pokud se účastníš boje s bossem, ublíží ti i za nesplněné denní úkoly ostatních členů tvé družiny!",
+ "danielText": "Vítej v krčmě. Chvilku se zdrž a poznej místní. Pokud si potřebuješ odpočinout (jedeš na dovolenou? náhlá nemoc?), nabízím ti pokoj v Hostinci. Zatímco tu budeš přihlášen, tvé denní úkoly ti na konci dne neublíží, ale klidně si je můžeš odškrtnout .",
+ "danielText2": "Dej pozor: Pokud se účastníš boje s bossem, ublíží ti i za nesplněné denní úkoly ostatních členů tvé družiny! Navíc, jakákoliv újma, kterou uštědříš Bossovi (nebo nasbírané předměty) se ti nepřipíšou dokud se z Hostince neodhlásíš.",
"alexander": "Obchodník Alexander",
"welcomeMarket": "Vítej na trhu! Kup si vzácná vejce a lektvary! Prodej, co máš navíc! Objednej si užitečné služby! Přijď se podívat, co všechno nabízíme.",
"sellForGold": "Prodej <%= item %> za <%= gold %> zlaťáků",
@@ -45,9 +45,9 @@
"tourScrollDown": "Nezapomeň sjet dolů na stránce, abys viděl všechny možnosti! Klikni na svého avatara, aby ses vrátil zpět na stránku s úkoly.",
"tourMuchMore": "Když skončíš s úkoly, můžeš s přáteli vytvořit Družinu, popovídat si v zájmových ceších, přidat se k Výzvám a více!",
"tourStatsPage": "Tohle je stránka s tvými statistikami! Získej ocenění za splnění vyjmenovaných úkolů.",
- "tourTavernPage": "Vítej v Krčme, chatu pro všechny věkové kategorie! Můžeš si tu zmrazit účet, když budeš třeba nemocný nebo když budeš pryč. Stačí kliknout na \"Odpočívat v hostinci\". Pojď pozdravit!",
+ "tourTavernPage": "Vítej v Krčme, chatu pro všechny věkové kategorie! Můžeš si tu zmrazit Denní úkoly, aby ti neublížily, když budeš třeba nemocný nebo když budeš pryč. Stačí kliknout na \"Odpočívat v hostinci\". Pojď pozdravit!",
"tourPartyPage": "Tvá družina ti pomůže dodržovat cíle. Pozvi své přátele a odemkni Svitek výpravy!",
"tourGuildsPage": "Cechy jsou sociální skupiny s podobnými zájmy. Můžeš si vyhledat témata, která tě zajímají! Doporučujeme Newbies Guild neboli Cech pro nováčky.",
- "tourChallengesPage": "Přidání se k výzvě ti přidá úkoly do tvých listů. Soutěž proti ostatním uživatelům a vyhraj cenné drahokamy!",
+ "tourChallengesPage": "Výzvy jsou seznamy tématických úkolů vytvořené uživateli! Přidání se k výzvě ti přidá úkoly do tvých listů. Soutěž proti ostatním uživatelům a vyhraj cenné drahokamy!",
"tourMarketPage": "Když dosáhneš úrovně 4, začneš po splnění úkolů náhodně nacházet vejce a lektvary. Budou se objevovat tady - použij je k vylíhnutí mazlíčků! Můžeš si je také koupi na Trhu."
}
\ No newline at end of file
diff --git a/common/locales/cs/pets.json b/common/locales/cs/pets.json
index 4a9625fd40..8c25b0eab0 100644
--- a/common/locales/cs/pets.json
+++ b/common/locales/cs/pets.json
@@ -50,7 +50,7 @@
"feedPet": "Myslíš, že <%= name %> si pochutná na něčem takovém jako je <%= article %><%= text %> ?",
"useSaddle": "Koho osedláme? Bude to <%= pet %>?",
"petName": "<%= potion %> <%= egg %>",
- "mountName": "<%= potion %> <%= zkrocené zvíře %>",
+ "mountName": "<%= potion %> <%= mount %>",
"petKeyName": "Klíč ke kotcům",
"petKeyPop": "Nech své mazlíčky pobíhat na svobodě, vypusť je aby mohli začít své vlastní dobrodružství a zažij znovu vzrušení a staň se znovu pánem šelem!",
"petKeyBegin": "Klíč ke kotcům: Zažij znovu vzrušení z titulu <%= title %>!",
diff --git a/common/locales/cs/quests.json b/common/locales/cs/quests.json
index 8902afefbe..407ae91303 100644
--- a/common/locales/cs/quests.json
+++ b/common/locales/cs/quests.json
@@ -6,6 +6,8 @@
"questSend": "Kliknutí na \"Pozvat\" pošle pozvání členům tvé družiny. Poté, co všichni členové přijali nebo odmítli, může výprava začít. Stav si můžeš zobrazit v Možnosti > Komunita > Družina.",
"inviteParty": "Pozvat družinu",
"questInvitation": "Pozvánka na výpravu:",
+ "questInvitationTitle": "Pozvánka na Výpravu",
+ "questInvitationInfo": "Pozvánka na Výpravu <%= quest %>",
"askLater": "Zeptej se později",
"buyQuest": "Kup Výpravu",
"accepted": "Přijato",
@@ -17,7 +19,7 @@
"bossStrength": "Síla bosse",
"collect": "Sbírat",
"collected": "Získáno",
- "bossDmg1": "Abys zranil bosse, plň své Denní úkoly a Úkoly. Více bodů získaných za úkol znamená větší zranění bosse (plnění červených úkolů, kouzla Mága, útoky Válečníka, atd.). Boss zraní každého účastníka výpravy za každý nesplněný Denní úkol (újma je násobena jeho Silou) navíc k normálnímu zranění, takže udržuj skupinu zdravou plněním úkolů. Veškerá zranění bossovi i vám se přičítají na kronu (na konci dne).",
+ "bossDmg1": "Každý splnění Denní úkol, úkol z Úkolníčku a každý pozitivní zvyk zraní Bosse. Zraň ho víc červenějšími úkoly nebo Brutální ranou nebo Vzplanutím ohňů. Boss zraní každého účastníka výpravy za každý nesplněný Denní úkol (újma je násobena jeho Silou) navíc k normálnímu zranění, takže udržuj skupinu zdravou plněním úkolů. Veškerá zranění bossovi i vám se přičítají na kronu (na konci dne).",
"bossDmg2": "Jen ti, kteří přijmou pozvání, budou bojovat proti bossovi a rozdělí si odměnu za výpravu.",
"tavernBossInfo": "Abys zranil světového bosse, musíš splnit všechny své Denní úkoly a úkoly v Úkolníčku. Čím více bodů za úkoly získáš, tím větší zranění bossovi způsobíš (splnění červených úkolů, Mágova kouzla, útoky Válečníka, atd.) Za každý Denní úkol, který nesplníš (znásobený bossovou Sílou), se zvýší bossova Zuřivost. Jakmile jeho Zuřivost dosáhne maxima, stane se něco špatného - takže plň své Denní úkoly! Všechna újma způsobená bossovi nebo tobě se přičítá na kronu (na konci dne).",
"bossColl1": "Pro získání předmětů plň své pozitivní úkoly. Předměty z výpravy budeš nacházet stejně jako normální předměty, uvidíš je však až další den, kdy se vše, co jste našli, shromáždí a přidá na hromadu.",
diff --git a/common/locales/cs/questscontent.json b/common/locales/cs/questscontent.json
index 52c58a1e28..fdc5b66c3d 100644
--- a/common/locales/cs/questscontent.json
+++ b/common/locales/cs/questscontent.json
@@ -191,10 +191,16 @@
"questBunnyCompletion": "Posledním úderem srážíš zabijáckého králíčka k zemi. Třpytivá mlha se zvedne z jejího těla a smrskne se na obyčejného králíčka... vůbec nevypadá jako ta obluda, se kterou ses bil před chvílí. Její nosík se zaklepe a odhopká pryč zanechávajíc za sebou vejce. @Gully se směje. \"Hora Prokrastinace dokáže z malých výzev udělat skoro neporazitelné. Vezměme tato vejce a pojďme domů.\"",
"questBunnyDropBunnyEgg": "Králíček (vejce)",
"questBunnyUnlockText": "Odemyká vejce králíčka na Trhu",
- "questSlimeText": "The Jelly Regent",
- "questSlimeNotes": "As you work on your tasks, you notice you are moving slower and slower. \"It's like walking through molasses,\" @Leephon grumbles. \"No, like walking through jelly!\" @starsystemic says. \"That slimy Jelly Regent has slathered his stuff all over Habitica. It's gumming up the works. Everybody is slowing down.\" You look around. The streets are slowly filling with clear, colorful ooze, and Habiticans are struggling to get anything done. As others flee the area, you grab a mop and prepare for battle!",
- "questSlimeBoss": "Jelly Regent",
- "questSlimeCompletion": "With a final jab, you trap the Jelly Regent in an over-sized donut, rushed in by @Overomega, @LordDarkly, and @Shaner, the quick-thinking leaders of the pastry club. As everyone is patting you on the back, you feel someone slip something into your pocket. It’s the reward for your sweet success: three Marshmallow Slime eggs.",
- "questSlimeDropSlimeEgg": "Marshmallow Slime (Egg)",
- "questSlimeUnlockText": "Unlocks purchasable slime eggs in the Market"
+ "questSlimeText": "Želésprávce",
+ "questSlimeNotes": "Během práce na svých úkolech si všimneš, že se pohybuješ pomaleji a pomaleji. \"Je to jako prodírat se melasou\", bručí @Leephon. \"Ne, jako prodírat se želé!\", říká @starsystemic. \"Ten slizký Želésprávce napatlal to své želé po celé Habitice. Lepí se to na práci. Všichni se zpomalují.\" Rozhlížíš se. Ulice se pomalu plní průhledným, barevným želé a Habiťané zápasí se svými úkoly. Zatímco ostatní prchají z oblasti, ty si bereš mop a připravuješ se k bitvě!",
+ "questSlimeBoss": "Želésprávce",
+ "questSlimeCompletion": "S posledním bodnutím chytáš Želésprávce do přerostlé koblihy, kterou rychle donesli @Overomega, @LordDarkly a @Shaner, bystří vedoucí pekařského klubu. Jak tě každý poplácává po zádech, ucítíš jak ti někdo vložil něco do kapes. Je to odměna za tvůj sladký úspěch: tři vejce Marshmallow želé.",
+ "questSlimeDropSlimeEgg": "Marshmallow želé (vejce)",
+ "questSlimeUnlockText": "Odemyká vejce želé na Trhu",
+ "questSheepText": "Hromový beran",
+ "questSheepNotes": "Při toulkách Taskanským venkovem si s přáteli dáš rychlou pauzičku od povinností a najdete útulnou stodolu. Jste tak zabraní do flákání se, že si ani nevšimnete zlověstných mraku plížících se z horizontu. \"Tohle počasí se mi ne-e-e-elíbí,\" zamumlá @Misceo a všichni se podíváte na nebe. Bouřkové mraky se zlověstně víří a tak trochu to vypadá... \"Nemůžeme koukat na mraky!\" křičí @starsystemic. \"Útočí na nás!\" Hromový beran se na vás řítí a vrhá po vás blesky!",
+ "questSheepBoss": "Hromový beran",
+ "questSheepCompletion": "Všechna zloba opouští Hromového berana ohromeného vaší vytrvalostí. Hodí vám k nohám tři velké kroupy a poté za hlasitého zvuku hromu zmizí. Při bližší zkoumání zjistíte, že ty kroupy jsou vlastně tři nadýchaná vejce. Posbíráte je a vydáte se domů pod modrým nebem.",
+ "questSheepDropSheepEgg": "Beran (vejce)",
+ "questSheepUnlockText": "Odemyká vejce berana na Trhu"
}
\ No newline at end of file
diff --git a/common/locales/cs/settings.json b/common/locales/cs/settings.json
index f8d9049a2c..e3db7703a4 100644
--- a/common/locales/cs/settings.json
+++ b/common/locales/cs/settings.json
@@ -41,10 +41,10 @@
"json": "(JSON)",
"customDayStart": "Vlastní začátek dne",
"24HrClock": "24hod mód",
- "customDayStartInfo1": "HabitRPG defaults to check and reset your Dailies at midnight in your own time zone each day. It is recommended that you read the following information before changing it:",
- "customDayStartInfo2": "(show more)",
- "customDayStartInfo3": "(show less)",
- "customDayStartInfo4": "Complete all your Dailies before changing the Custom Day Start or Rest in the Inn that day. Changing your Custom Day Start may cause Cron to run immediately, but after the first day it works as expected.
Allow a window of two hours for the change to take effect. For example, if it is currently set to 0 (midnight), change it before 10pm; if you want to set it to 9pm, change it before 7pm.
Enter an hour from 0 to 23 (it uses a 24 hour clock). Typing is more effective than arrow keys. Once set, reload the page to confirm that the new value is being displayed.",
+ "customDayStartInfo1": "HabitRPG implicitně kontroluje a resetuje tvé denní úkoly vždy o půlnoci tvé časové zóny. Měl by sis přečíst následující informace, než to změníš:",
+ "customDayStartInfo2": "(zobrazit více)",
+ "customDayStartInfo3": "(zobrazit méně)",
+ "customDayStartInfo4": "Dokonči všechny své denní úkoly před změnou vlastního začátku dne nebo ten den Odpočívej v hostinci. Změna vlastního začátku dne může způsobit okamžité spuštění kronu, ale po prvním dnu bude vše fungovat tak, jak má.
Změna může trvat až dvě hodiny. Například pokud je nyní nastaven na 0 (půlnoc), změň ho před 22. hodinou; pokud ho chceš nastavit na 9. hodinu, změň ho před 7. hodinou.
Zadej hodinu od 0 do 23 (používá se 24-hodinový formát). Psaní je efektivnější než použití šipek. Jakmile máš nastaveno, obnov stránku pro kontrolu, že se již objevuje nová hodnota.",
"misc": "Ostatní",
"showHeader": "Zobrazit horní info panel",
"changePass": "Změnit heslo",
@@ -93,10 +93,12 @@
"wonChallenge": "Vyhrál jsi Výzvu",
"newPM": "Obdržena soukromá zpráva",
"giftedGems": "Darované drahokamy",
+ "giftedGemsInfo": "<%= amount %> Drahokamů - od <%= name %>",
"giftedSubscription": "Darované předplatné",
"invitedParty": "Pozván do Družiny",
"invitedGuild": "Pozván do Cechu",
"inactivityEmails": "Tvůj účet není aktivní",
+ "weeklyRecaps": "Shrnutí aktivity tvého účtu za poslední týden",
"questStarted": "Tvá výprava započla",
"invitedQuest": "Pozván na Výpravu",
"kickedGroup": "Vykopnut z družiny",
@@ -111,5 +113,10 @@
"benefits": "Benefity",
"coupon": "Kupón",
"couponPlaceholder": "Zadej kód z kupónu",
- "couponText": "Někdy pořádáme události a rozdáváme kupónové kódy na speciální výbavu. (např. těm, kdo se zastaví u našeho stánku na Wonderconu)"
+ "couponText": "Někdy pořádáme události a rozdáváme promo kódy na speciální výbavu. (např. těm, kdo se zastaví u našeho stánku na Wonderconu)",
+ "apply": "Zadat",
+ "resubscribe": "Znovu se přihlásit k odběru",
+ "promoCode": "Promo kód",
+ "promoCodeApplied": "Promo kód zadán! Koukni do Inventáře",
+ "promoPlaceholder": "Vlož promo kód"
}
\ No newline at end of file
diff --git a/common/locales/cs/spells.json b/common/locales/cs/spells.json
index 7198669203..462df3dae3 100644
--- a/common/locales/cs/spells.json
+++ b/common/locales/cs/spells.json
@@ -1,36 +1,36 @@
{
"spellWizardFireballText": "Vzplanutí ohňů",
- "spellWizardFireballNotes": "Vyšlehnou plameny a spalují úkol. Snižuje se zčervenání úkolů, zasazuješ ránu jakékoliv stvůře, se kterou bojuješ, a získáváš zkušenosti -- více za modré úkoly.",
+ "spellWizardFireballNotes": "Plameny ti vyšlehnou z rukou. Získáš zkušenostní body a uštědříš extra zásah Bossovi! Klikni na úkol, na který toto kouzlo chceš seslat. (vypočteno na základě: INT)",
"spellWizardMPHealText": "Éterický příval",
- "spellWizardMPHealNotes": "Tok magické energie vychází z tvých rukou a posiluje tvou družinu. Tvoje družina obnovuje svou manu.",
+ "spellWizardMPHealNotes": "Obětuješ manu, abys pomohl svým přátelům. Ostatní členové družiny získají manu! (vypočteno na základě: INT)",
"spellWizardEarthText": "Zemětřesení",
- "spellWizardEarthNotes": "Země pod úkoly tvé družiny praská a silně se třese, což úkoly zpomaluje a vystavuje je dalším útokům. Tvoje skupina získává víc Inteligence, což znamená více zkušeností.",
+ "spellWizardEarthNotes": "Tvá psychická síla otřásá zemi. Celá tvá družina získává bonus k Inteligenci! (vypočteno na základě: INT před přidáním)",
"spellWizardFrostText": "Ledový mráz",
- "spellWizardFrostNotes": "Led vyráží ze všech povrchů, polyká tvé úkoly a na místě je zmrazí. Tvoje šňůry denních úkolů se na konci dne neresetují. Nedokončené denní úkoly ti však stále způsobí újmu!",
+ "spellWizardFrostNotes": "Led pokrývá tvé úkoly. Žádný z tvých šňůr se zítra nezresetuje! (Jedno seslání ovlivní všechny šňůry.)",
"spellWarriorSmashText": "Brutální rána",
- "spellWarriorSmashNotes": "Divoce a vší silou udeříš jediný úkol a ten upadne do bezvědomí. Začervenání úkolu zeslábne a uštědříš extra ránu jakékoliv nestvůře, se kterou bojuješ.",
+ "spellWarriorSmashNotes": "Zasáhneš úkol vší silou. Zmodrá/červená vybledne, a zasadíš Bossům extra rány! Klikni na úkol, na který toto kouzlo chceš seslat. (vypočteno na základě: SÍL)",
"spellWarriorDefensiveStanceText": "Obranný postoj",
- "spellWarriorDefensiveStanceNotes": "Uděláš sis chvilku na odpočinek a zaujímáš obranný postoj, aby ses připravil na další útok. Snižuje újmu z nesplněných denních úkolů na konci dne nakopnutím tvé Orbany.",
+ "spellWarriorDefensiveStanceNotes": "Připravíš se na nápor úkolů. Získáváš bonus k Obraně! (vypočteno na základě: OBR před přidáním)",
"spellWarriorValorousPresenceText": "Chrabrá přítomnost",
- "spellWarriorValorousPresenceNotes": "Tvá přítomnost dodává družině odvahu. Jejich znovuobjevená statečnost jim zvyšuje sílu. Členové družiny získávají bonus k síle.",
+ "spellWarriorValorousPresenceNotes": "Tvá přítomnost dodává družině odvahu. Celá tvá družina získává přídavek k Síle! (vypočteno na základě: SÍL před přidáním)",
"spellWarriorIntimidateText": "Zastrašující pohled",
- "spellWarriorIntimidateNotes": "Tvůj pohled zasévá strach do srdcí nepřátel tvé družiny. Družina získává mírný bonus k obraně nakopnutím Obrany.",
+ "spellWarriorIntimidateNotes": "Tvůj pohled zasévá strach do srdcí nepřátel. Celá tvá družina získává bonus k Obraně! (vypočteno na základě: OBR před bonusem)",
"spellRoguePickPocketText": "Vybrat kapsy",
- "spellRoguePickPocketNotes": "Tvé hbité prsty se probírají kapsami úkolu a najdou nějaké cennosti. Za úkol získáš více zlaťáků. Čím tučnější (modřejší) úkol je, tím víc jich získáš.",
+ "spellRoguePickPocketNotes": "Okradeš blízký úkol. Získáš zlato! Klikni na úkol, na který toto kouzlo chceš seslat. (vypočteno na základě: VNM)",
"spellRogueBackStabText": "Kudla do zad",
- "spellRogueBackStabNotes": "Nezaslechnut se připlížíš za úkol a bodneš ho do zad. Způsobíš mu větší újmu s větší šancí na kritický zásah.",
+ "spellRogueBackStabNotes": "Podvedeš naivní úkol. Získáš zlato a zkušenostní body! Klikni na úkol, na který toto kouzlo chceš seslat. (vypočteno na základě: SÍL)",
"spellRogueToolsOfTradeText": "Nástroje k obchodování",
- "spellRogueToolsOfTradeNotes": "O své zlodějské nástroje se podělíš se svou družinou, abys jim pomohl získat více zlaťáků. Družina do konce dne získá více zlaťáků a předmětů za úkoly.",
+ "spellRogueToolsOfTradeNotes": "Podělíš se o své talenty s přáteli. Celá tvá družina získává bonus k Vnímání. (vypočteno na základě: VNM před bonusem)",
"spellRogueStealthText": "Plížení",
- "spellRogueStealthNotes": "Krčíš se ve stínech s nasazenou kápí. Mnoho denních úkolů tě dnes v noci nenajde - čím vyšší je tvé Vnímání, tím méně úkolů tě najde.",
+ "spellRogueStealthNotes": "Jsi velice hbitý a nikdo se tě nevšimne. Některé z tvých nesplněných denních úkolů ti dnes v noci neublíží a jejich šňůry/barva se nezmění. (Sešli vícekrát, abys ovlivnil více denních úkolů)",
"spellHealerHealText": "Léčivé světlo",
- "spellHealerHealNotes": "Světlo obklopuje tvé tělo a léčí tvá zranění. Získáváš zpět své zdraví.",
+ "spellHealerHealNotes": "Světlo obklopuje tvé tělo a léčí tvá zranění. Získáváš zpět své zdraví! (vypočteno na základě: OBR a INT)",
"spellHealerBrightnessText": " Spalující záře",
- "spellHealerBrightnessNotes": "Sešleš na své úkoly záblesk světla, který je všechny oslepí. Jejich začervenání zeslábne.",
+ "spellHealerBrightnessNotes": "Záblesk světla oslepí tvé úkoly. Jsou více modré a méně červené! (vypočteno na základě: INT)",
"spellHealerProtectAuraText": "Ochranná aura",
- "spellHealerProtectAuraNotes": "Magické aura obklopila tvoji družinu a ochraňuje je před zraněním. Členové tvé družiny získají bonus k obraně.",
+ "spellHealerProtectAuraNotes": "Chráníš svou družinu před újmou. Celá tvá družina získá bonus k Obraně! (vypočteno na základě: OBR před bonusem)",
"spellHealerHealAllText": "Požehnání",
- "spellHealerHealAllNotes": "Blahodárné světlo obklopuje tvou družinu a léčí zranění jejích členů. Všichni získáváte zpět své zdraví.",
+ "spellHealerHealAllNotes": "Obklopuje tě uklidňující aura. Celé tvé družině se obnoví zdraví! (vypočteno na základě: OBR a INT)",
"spellSpecialSnowballAuraText": "Sněhová koule",
"spellSpecialSnowballAuraNotes": "Hoď sněhovou koulí po členu družiny, co by se tak mohlo stát? Vydrží mu až do druhého dne.",
"spellSpecialSaltText": "Sůl",
diff --git a/common/locales/cs/tasks.json b/common/locales/cs/tasks.json
index a3386405db..ee2b17ea35 100644
--- a/common/locales/cs/tasks.json
+++ b/common/locales/cs/tasks.json
@@ -14,7 +14,7 @@
"save": "Uložit",
"addChecklist": "Přidat seznam",
"checklist": "Seznam",
- "checklistText": "V rámci Denních úkolů, částečně splněné seznamy snižují újmu. Například čtyř-položkový seznam se 3 splněnými úkoly snižuje zranění tohoto nesplněného Denního úkolu o 25%. Splněné položky seznamu v Úkolníčku se násobí: 3 zaškrtnutí znamenají +3x (celkem 4x) více zkušeností, zlaťáků a many. ",
+ "checklistText": "Rozděl si úkoly na menší části! Seznamy úkolů zvyšují Zkušenost a zlaťáky, které za splnění úkolu získáš, a zmírňují újmu, kterou bys dostal, za zmeškání Denního úkolu.",
"expandCollapse": "Rozbalit/Sbalit",
"text": "Text",
"extraNotes": "Další poznámky",
@@ -22,7 +22,7 @@
"advancedOptions": "Pokročilé možnosti",
"difficulty": "Obtížnost",
"difficultyHelpTitle": "Jak obtížný je tento úkol?",
- "difficultyHelpContent": "Toto násobí hodnotu bodů. Používej zřídka, raději spoléhej na naše organické algoritmy úprav bodů. Některé úkoly jsou však celkově mnohem cennější (Napiš diplomku vs Péče o zuby). Klikni pro více informací.",
+ "difficultyHelpContent": "Čím těžší úkol, tím více Zkušenosti a Zlaťáků dostaneš až ho odškrtneš... ale také ti víc ublíží, pokud to je Denní úkol nebo Zlozvyk!",
"easy": "Jednoduché",
"medium": "Středně těžké",
"hard": "Těžké",
@@ -44,7 +44,6 @@
"remaining": "Aktivní",
"complete": "Splněno",
"dated": "Datovaný",
- "datedNotSorted": "Datované Úkoly NEJSOU seřazené podle data. Řazení bude nejspíš implementováno v budoucnu.",
"due": "Zbývající",
"grey": "Dokončené",
"score": "Skóre",
@@ -78,5 +77,6 @@
"streakCoins": "Bonus za šňůru!",
"pushTaskToTop": "Přesunout úkol na vrchol",
"pushTaskToBottom": "Posunout úkol na spodek",
- "emptyTask": "Nejdřív zadej název úkolu."
+ "emptyTask": "Nejdřív zadej název úkolu.",
+ "dailiesRestingInInn": "Odpočíváš v Hostinci! Tvé Denní úkoly ti dnes NEUBLÍŽÍ, ale BUDOU se resetovat každý den. Pokud jsi na Výpravě, neuštědříš žádný úder/nebudeš sbírat předměty dokud se z Hostince neodhlásíš, ale stále ti může ublížit Boss, pokud tví přátelé v Družině nebudou plnit své Denní úkoly."
}
\ No newline at end of file
diff --git a/common/locales/da/backgrounds.json b/common/locales/da/backgrounds.json
index c638e3e380..c829393251 100644
--- a/common/locales/da/backgrounds.json
+++ b/common/locales/da/backgrounds.json
@@ -76,5 +76,19 @@
"backgroundFloralMeadowText": "Blomstereng",
"backgroundFloralMeadowNotes": "Hold Picnic på en Blomstereng.",
"backgroundGumdropLandText": "Vingummiland",
- "backgroundGumdropLandNotes": "Nyd udsigten i Vingummiland - nam nam!"
+ "backgroundGumdropLandNotes": "Nyd udsigten i Vingummiland - nam nam!",
+ "backgrounds052015": "SET 12: Released May 2015",
+ "backgroundMarbleTempleText": "Marble Temple",
+ "backgroundMarbleTempleNotes": "Pose in front of a Marble Temple.",
+ "backgroundMountainLakeText": "Mountain Lake",
+ "backgroundMountainLakeNotes": "Dip your toes in a Mountain Lake.",
+ "backgroundPagodasText": "Pagodas",
+ "backgroundPagodasNotes": "Climb to the top of Pagodas.",
+ "backgrounds062015": "SET 13: Released June 2015",
+ "backgroundDriftingRaftText": "Drifting Raft",
+ "backgroundDriftingRaftNotes": "Paddle a Drifting Raft.",
+ "backgroundShimmeryBubblesText": "Shimmery Bubbles",
+ "backgroundShimmeryBubblesNotes": "Float through a sea of Shimmery Bubbles.",
+ "backgroundIslandWaterfallsText": "Island Waterfalls",
+ "backgroundIslandWaterfallsNotes": "Picnic near Island Waterfalls."
}
\ No newline at end of file
diff --git a/common/locales/da/challenge.json b/common/locales/da/challenge.json
index 20999bece6..050b642bf6 100644
--- a/common/locales/da/challenge.json
+++ b/common/locales/da/challenge.json
@@ -16,7 +16,7 @@
"selectWinner": "Vælg en vinder og luk udfordringen:",
"deleteOrSelect": "Slet eller vælg vinder",
"endChallenge": "Afslut udfordring",
- "challengeDiscription": "Disse er udfordringens opgaver. Som brugere deltager, vil de ændre farve og få tilført grafer, som vil vise dig gruppens samlede fremskridt.",
+ "challengeDiscription": "These are the Challenge's tasks that will be added to your task dashboard when you join this Challenge. The sample Challenge tasks below will change color and gain graphs to show you the overall progress of the group.",
"hows": "Hvordan går det for folk?",
"filter": "Filter",
"groups": "Grupper",
@@ -33,16 +33,18 @@
"challengeTagPop": "Udfordringer vises på tag-lister og opgave-værktøjstips. Så selvom du bør bruge en beskrivende titel øverst, så skal du også bruge et 'kort navn'. Fx. 'Tab 10kg inden for 3 måneder' kunne blive '-10kg' (Klik for mere info).",
"challengeDescr": "Beskrivelse",
"prize": "Præmie",
- "prizePop": "Hvis nogen kan 'vinde' din udfordring, kan du belønne vinderen med Ædelsten. Max = #gems du ejer (+ guild.gems, hvis du oprettede denne udfordrings klan). Obs: Denne præmie kan ikke blive ændret senere, og vil ikke blive refunderet hvis udfordringen bliver slettet.",
+ "prizePop": "If someone can 'win' your challenge, you can optionally award that winner a Gem prize. Max = #gems you own (+ guild.gems, if you created this challenge's guild). Note: This prize can't be changed later.",
+ "prizePopTavern": "If someone can 'win' your challenge, you can optionally award that winner a Gem prize. Max = #gems you own (+ guild.gems, if you created this challenge's guild). Note: This prize can't be changed later and Tavern challenges will not be refunded if the challenge is cancelled.",
"publicChallenges": "Minimum 1 Ædelsten for offentlige udfordringer (hjælper med at forhindre spam - det gør det virkelig).",
"officialChallenge": "Officiel HabitRPG-udfordring",
"by": "af",
- "participants": "<%= membercount %> Participants",
+ "participants": "<%= membercount %> Deltagere",
"join": "Deltag",
"exportChallengeCSV": "Eksporter til CSV",
"selectGroup": "Vælg gruppe",
"challengeCreated": "Udfordring oprettet",
"sureDelCha": "Er du sikker på, at du vil slette udfordringen?",
+ "sureDelChaTavern": "Delete challenge, are you sure? Your gems will not be refunded.",
"removeTasks": "Slet opgaver",
"keepTasks": "Behold opgaver",
"closeCha": "Luk udfordringen og...",
diff --git a/common/locales/da/character.json b/common/locales/da/character.json
index b486225089..4731be0850 100644
--- a/common/locales/da/character.json
+++ b/common/locales/da/character.json
@@ -52,9 +52,11 @@
"costume": "Kostume",
"costumeText": "Hvis du foretrækker udseendet af andet udstyr end hvad du bærer, tjek \"Brug Kostume\"-feltet for at visuelt bære et kostume, mens du bærer dit kampudstyr nedenunder.",
"useCostume": "Brug kostume",
- "gearAchievement": "Du har vundet \"Det Ultimative Udstyr\"-præstationen for at opgradere til det maksimale udstyrssæt!",
+ "gearAchievement": "You have earned the \"Ultimate Gear\" Achievement for upgrading to the maximum gear set for a class! You have attained the following complete sets:",
+ "moreGearAchievements": "To attain more Ultimate Gear badges, change classes on your stats page and buy up your new class's gear!",
+ "armoireUnlocked": "You've also unlocked the Enchanted Armoire! Click on the Enchanted Armoire Reward for a random chance at special Equipment! It may also give you random XP or food items.",
"ultimGearName": "Det Ultimative Udstyr",
- "ultimGearText": "Har opgraderet til det maksimale våben- og rustningssæt",
+ "ultimGearText": "Has upgraded to the maximum weapon and armor set for the following classes:",
"level": "Niveau",
"levelUp": "Niveau op!",
"mana": "Mana",
@@ -70,6 +72,7 @@
"allocatePerPop": "Tilføj et point til Opfattelse",
"allocateInt": "Point tilføjet til Intelligens:",
"allocateIntPop": "Tilføj et point til Intelligens",
+ "noMoreAllocate": "Now that you've hit level 100, you won't gain any more Attribute Points. You can continue leveling up, or start a new adventure at level 1 by using the Orb of Rebirth, now available for free in the Market.",
"stats": "Statistikker",
"strength": "Styrke",
"strengthText": "Styrke øger chancen for vilkårlige \"fuldtræffere\" og Guld-, Erfarings- og dropchance-boost fra dem. Det hjælper også med at skade Boss-monstre.",
@@ -138,5 +141,6 @@
"displayNameDescription3": "og gå ned til Registreringssektionen for at ændre dig loginnavn.",
"unequipBattleGear": "Fjern Kamprustning",
"unequipCostume": "Fjern Kostume",
- "unequipPetMountBackground": "Fjern Kæledyr, Ridedyr, Baggrund"
+ "unequipPetMountBackground": "Fjern Kæledyr, Ridedyr, Baggrund",
+ "animalSkins": "Animal Skins"
}
\ No newline at end of file
diff --git a/common/locales/da/communityguidelines.json b/common/locales/da/communityguidelines.json
index 157ce99e5a..51b15eeb60 100644
--- a/common/locales/da/communityguidelines.json
+++ b/common/locales/da/communityguidelines.json
@@ -173,5 +173,6 @@
"commGuideLink07": "Kunst-Trello",
"commGuideLink07description": "for at indsende pixelkunst.",
"commGuideLink08": "Quest-Trello",
- "commGuideLink08description": "for at indsende Quest-tekst."
+ "commGuideLink08description": "for at indsende Quest-tekst.",
+ "lastUpdated": "Last updated"
}
\ No newline at end of file
diff --git a/common/locales/da/content.json b/common/locales/da/content.json
index 668df9f5be..94f90409e0 100644
--- a/common/locales/da/content.json
+++ b/common/locales/da/content.json
@@ -1,6 +1,10 @@
{
"potionText": "Livseliksir",
"potionNotes": "Genvind 15 liv (Øjeblikkelig Brug) ",
+ "armoireText": "Enchanted Armoire",
+ "armoireNotesFull": "Open the Armoire to randomly receive special Equipment, Experience, or food! Equipment pieces remaining:",
+ "armoireLastItem": "You've found the last piece of rare Equipment in the Enchanted Armoire.",
+ "armoireNotesEmpty": "The Armoire will have new Equipment every month. Until then, keep clicking for Experience and Food!",
"dropEggWolfText": "Ulv",
"dropEggWolfAdjective": "loyal",
"dropEggTigerCubText": "Tigerunge",
@@ -54,8 +58,10 @@
"questEggRockAdjective": "livlig",
"questEggBunnyText": "Kanin",
"questEggBunnyAdjective": "kælen",
- "questEggSlimeText": "Marshmallow Slime",
- "questEggSlimeAdjective": "sweet",
+ "questEggSlimeText": "Skumfidus-Slim",
+ "questEggSlimeAdjective": "sødt",
+ "questEggSheepText": "Sheep",
+ "questEggSheepAdjective": "woolly",
"eggNotes": "Find en udrugningseliksir til at hælde på dit æg, og det vil udklække en <%= eggAdjective(locale) %> <%= eggText(locale) %>.",
"hatchingPotionBase": "Almindelig",
"hatchingPotionWhite": "Hvid",
diff --git a/common/locales/da/front.json b/common/locales/da/front.json
index fc42d1ebc0..cbc9b63358 100644
--- a/common/locales/da/front.json
+++ b/common/locales/da/front.json
@@ -1,19 +1,99 @@
{
- "titleFront": "HabitRPG | Gør Livet Til Et Spil",
- "tagline": "En gratis vaneopbyggende app, der behandler dit liv som et spil.",
- "landingp1": "Problemet med de fleste produktivitetsapplikationer på markedet er, at de ikke giver noget incitament til at blive ved med at bruge dem. HabitRPG løser dette, ved at gøre vaneopbygning sjovt! Ved at belønne dig for dine successer og straffe dig for fejl, giver HabitRPG ekstern motivation for at færdiggøre dine dagligdagsaktiviteter.",
- "landingp2header": "Øjeblikkelig tilfredsstillelse",
- "landingp2": "Hvis du gentager en positiv vane, gennemfører en daglig opgave eller færdiggører en gammel To-Do, belønner HabitRPG dig øjeblikkeligt med erfaringspoint og guld. Efterhånden som du får erfaring vil dit niveau stige, hvilket medfører at dine attributter stiger og at du åbner op for flere funktioner, såsom klasser og kæledyr. Guld kan bruges på genstande i spillet, der ændrer din erfaring, eller personlige belønninger som du har lavet for motivation. Når selv den mindste succes giver en øjeblikkelig belønning, er det mindre sandsynligt, at du laver overspringshandlinger.",
- "landingp3header": "Konsekvenser",
- "landingp3": "Hver gang du henfalder til en dårlig vane eller ikke færdiggør en af dine daglige opgaver vil du miste helbred. Hvis dit helbred bliver for lavt dør du, og taber noget af det fremskridt du har opnået. Ved at give dig øjeblikkelige konsekvenser kan HabitRPG hjælpe med at bryde dårlige vaner og overspringscyklusser før de giver problemer i det virkelige liv.",
- "landingp4header": "Ansvarlighed",
- "landingp4": "Med et aktivt fællesskab giver HabitRPG dig den ansvarlighed du har brug for at blive på dine opgaver. Med gruppesystemet kan du tilføje dine tætteste venner til en gruppe, så de kan heppe på dig. Klansystemet tillader dig at finde folk med samme interesser eller udfordringer som dig, som du kan dele dine mål og tips til hvordan du tackler dine problemer med.",
+ "FAQ": "OSS",
+ "accept1Terms": "Ved at klikke på knappen herunder indvilliger jeg i at følge HabitRPGs",
+ "accept2Terms": "og",
+ "alexandraQuote": "Kunne ikke undlade at nævne HabitRPG under min tale i Madrid. Et klart must-have værktøj til freelancere, der stadig har brug for en chef.",
+ "althaireQuote": "Når jeg hele har tiden en quest kørende, bliver jeg konstant motiveret til at gøre alt det daglige arbejde og alle mine To-Dos. Min største motivation er at ikke lade min gruppe i stikken.",
+ "andeeliaoQuote": "Fedt produkt, er lige startet for et par dage siden og er allerede mere bevidst om og produktiv med min tid!",
+ "autumnesquirrelQuote": "Jeg laver færre overspringshandlinger på arbejde og med det huslige og betaler mine regninger til tiden.",
+ "businessSample1": "Bekræft 1 side i dit Inventar",
+ "businessSample2": "20 minutters arkivering",
+ "businessSample3": "Sortér og gennemgå din indbakke",
+ "businessSample4": "Forbered 1 dokument til en klient",
+ "businessSample5": "Ring til klienter/Udsatte telefonopkald",
+ "businessText": "Brug HabitRPG på din arbejdsplads",
+ "choreSample1": "Læg beskidt tøj i vasketøjskurven",
+ "choreSample2": "20 minutters husarbejde",
+ "choreSample3": "Tag opvasken",
+ "choreSample4": "Gør et rum rent",
+ "choreSample5": "Vask og tør en maskinfuld tøj",
+ "chores": "Pligter",
+ "communityBug": "Meddel fejl",
+ "communityExtensions": "Tilføjelser og udvidelser",
+ "communityFacebook": "Facebook",
+ "communityFeature": "Anmod om en funktion",
+ "communityForum": "Forum",
+ "communityKickstarter": "Kickstarter",
+ "communityReddit": "Reddit",
+ "companyAbout": "Hvordan det Virker",
+ "companyBlog": "Blog",
+ "companyDonate": "Donér",
+ "companyExtensions": "Udvidelser",
+ "companyPrivacy": "Fortrolighed",
+ "companyTerms": "Vilkår",
+ "companyVideos": "Videoer",
+ "contribUse": "HabitRPG contributors use",
+ "dragonsilverQuote": "Jeg kan ikke beskrive hvor mange tids- og opgaveprioriteringssystemer jeg har prøvet over de sidste årtier... HRPG er det eneste, der har hjulpet mig med rent faktisk at få ting gjort, i stedet for bare at skrive dem ned på en liste.",
+ "dreimQuote": "Da jeg sidste år opdagede HabitRPG, havde jeg lige dumpet omkring halvdelen af mine eksaminer. Takket være de Daglige har jeg kunne organisere og disciplinere mig selv, og jeg har faktisk bestået alle mine eksaminer med rigtig gode karakterer for en måned siden.",
+ "elmiQuote": "Hver morgen ser jeg frem til at stå op, så jeg kan tjene noget guld!",
+ "email": "Email",
+ "emailNewPass": "Send nyt kodeord via email",
+ "evagantzQuote": "Min allerførste aftale med tandlægen, hvor tandlægen faktisk var positivt overrasket over mine børstevaner. Tak, HabitRPG!",
+ "examplesHeading": "Players use HabitRPG to manage...",
+ "featureAchievementByline": "Gør noget fedt? Få et emblem og vis det frem!",
+ "featureAchievementHeading": "Præstationsemblem",
+ "featureEquipByline": "Buy limited edition equipment, potions, and other virtual goodies in our Market with your task rewards!",
+ "featureEquipHeading": "Udstyr og tilbehør",
+ "featurePetByline": "Du får æg og ting, når du færdiggør opgaver. Vær så produktiv som muligt for at samle kæledyr og ridedyr!",
+ "featurePetHeading": "Kæledyr og Ridedyr",
+ "featureSocialByline": "Slut dig til grupper med samme interesser og tankegange som dig. Lav Udfordringer og konkurrér mod andre brugere.",
+ "featureSocialHeading": "Socialt spil",
+ "featuredIn": "Featured in",
+ "featuresHeading": "Vi har også...",
+ "footerCommunity": "Fællesskab",
+ "footerCompany": "Firma",
+ "footerMobile": "Mobil",
+ "footerSocial": "Social",
+ "forgotPass": "Glemt Kodeord",
+ "frabjabulousQuote": "HabitRPG is the reason I got a killer, high-paying job... and even more miraculous, I'm now a daily flosser!",
+ "free": "Spil gratis",
+ "gamifyButton": "Gamify your life today!",
+ "goalSample1": "Practice Piano for 1 Hour",
+ "goalSample2": "Work on article for publication",
+ "goalSample3": "Work on blog post",
+ "goalSample4": "Japanese lesson on Duolingo",
+ "goalSample5": "Read an Informative Article",
+ "goals": "Goals",
+ "health": "Health",
+ "healthSample1": "Drink Water/Soda",
+ "healthSample2": "Chew Gum/Smoke",
+ "healthSample3": "Take Stairs/Elevator",
+ "healthSample4": "Eat Healthy/Junk Food",
+ "healthSample5": "Break a Sweat for 1 hr",
+ "history": "Historie",
+ "infhQuote": "HabitRPG has really helped me impart structure to my life in graduate school.",
+ "invalidEmail": "Det kræver en valid emailadresse for at få nulstillet dit kodeord.",
+ "irishfeet123Quote": "I've had horrible habits with clearing my place completely after meals and leaving cups all over the place. HabitRPG has cured that!",
+ "joinOthers": "Join 200,000 people making it fun to achieve goals!",
+ "kazuiQuote": "Before HabitRPG, I was stuck with my thesis, as well as dissatisfied with my personal discipline regarding housework and things like learning vocabulary and studying Go theory. It turns out breaking down these tasks into smaller manageable checklists is quite the thing to keep me motivated and constantly working.",
+ "landingadminlink": "administrative pakker",
"landingend": "Ikke overbevist endnu?",
"landingend2": "Se en mere detaljeret liste over",
- "landingfeatureslink": "vores funktioner",
"landingend3": "Leder du efter en mere privat tilgang? Se vores",
- "landingadminlink": "administrative pakker",
"landingend4": "som er perfekte for familier, lærere, støttegrupper og firmaer.",
+ "landingfeatureslink": "vores funktioner",
+ "landingp1": "Problemet med de fleste produktivitetsapplikationer på markedet er, at de ikke giver noget incitament til at blive ved med at bruge dem. HabitRPG løser dette, ved at gøre vaneopbygning sjovt! Ved at belønne dig for dine successer og straffe dig for fejl, giver HabitRPG ekstern motivation for at færdiggøre dine dagligdagsaktiviteter.",
+ "landingp2": "Hvis du gentager en positiv vane, gennemfører en daglig opgave eller færdiggører en gammel To-Do, belønner HabitRPG dig øjeblikkeligt med erfaringspoint og guld. Efterhånden som du får erfaring vil dit niveau stige, hvilket medfører at dine attributter stiger og at du åbner op for flere funktioner, såsom klasser og kæledyr. Guld kan bruges på genstande i spillet, der ændrer din erfaring, eller personlige belønninger som du har lavet for motivation. Når selv den mindste succes giver en øjeblikkelig belønning, er det mindre sandsynligt, at du laver overspringshandlinger.",
+ "landingp2header": "Øjeblikkelig tilfredsstillelse",
+ "landingp3": "Hver gang du henfalder til en dårlig vane eller ikke færdiggør en af dine daglige opgaver vil du miste helbred. Hvis dit helbred bliver for lavt dør du, og taber noget af det fremskridt du har opnået. Ved at give dig øjeblikkelige konsekvenser kan HabitRPG hjælpe med at bryde dårlige vaner og overspringscyklusser før de giver problemer i det virkelige liv.",
+ "landingp3header": "Konsekvenser",
+ "landingp4": "Med et aktivt fællesskab giver HabitRPG dig den ansvarlighed du har brug for at blive på dine opgaver. Med gruppesystemet kan du tilføje dine tætteste venner til en gruppe, så de kan heppe på dig. Klansystemet tillader dig at finde folk med samme interesser eller udfordringer som dig, som du kan dele dine mål og tips til hvordan du tackler dine problemer med.",
+ "landingp4header": "Ansvarlighed",
+ "leadText": "HabitRPG is a free habit building and productivity app that treats your real life like a game. With in-game rewards and punishments to motivate you and a strong social network to inspire you, HabitRPG can help you achieve your goals to become healthy, hard-working, and happy.",
+ "login": "Log ind",
+ "loginAndReg": "Log ind/ Registrer",
+ "loginFacebookAlt": "Log ind / registrer gennem Facebook",
+ "logout": "Log Ud",
"marketing1Header": "Forbedr dine vaner ved at spille et spil.",
"marketing1Lead1": "HabitRPG er et computerspil, der hjælper med at forbedre dine vaner i virkeligheden. Det gør dit liv til et spil ved at lave alle dine opgaver (Vaner, Daglige og To-Dos) indtil små monstre, du skal besejre. Jo bedre du er til dette, desto større fremskridt vil du gøre i spillet. Hvis du begår fejl i livet vil din karakter gå tilbage i spillet.",
"marketing1Lead2": "Få Lækkert Udstyr. Forbedr dine vaner ved at ændre din avatar. Vis det lækre udstyr, du har tjent",
@@ -26,71 +106,77 @@
"marketing2Lead2Title": "Bosser",
"marketing2Lead3": "Udfordringer gør dig i stand til at konkurrere med venner og fremmede. Hvem end, der er bedst i slutningen af en udfordring vinder særlige præmier.",
"marketing3Header": "Apps",
- "marketing3Lead1Title": "iPhone & Android",
"marketing3Lead1": "iPhone & Android apps lader dig klare dine ting på farten. Vi ved, at det nogen gange er for meget at skulle logge ind på websiden for at klikke på knapper.",
"marketing3Lead2": "Andre tredjeparts-værktøjer binder HabitRPG sammen med forskellige dele af dit liv. Vores API giver let integration med ting såsom Chrome-udvidelsen, hvor du vil miste point for at besøge uproduktive hjemmesider, og få point for at besøge produktive sider. Se mere her",
"marketing4Header": "Organisatorisk brug",
- "marketing4Lead1Title": "Brug af Spilelementer i Undervisning",
"marketing4Lead1": "Uddannelse er en af de bedste områder at bruge spilelementer. Vi ved alle, hvordan studerende nærmest er limet til deres telefon disse dage, så brug dette! Sæt dine elever til at kæmpe mod hinanden spm hyggelig konkurrence. Beløn god opførsel med sjældne præmier. Se deres karakterer og opførsel blive forbedret.",
- "marketing4Lead2Title": "Brug af Spilelementer i Sundhed og Velvære",
+ "marketing4Lead1Title": "Brug af Spilelementer i Undervisning",
"marketing4Lead2": "Prisen for sundhedssektoren stiger, og der må ske noget. Hundredevis af programmer er bygget til at reducere udgifter og forbedre velvære. Vi tror på, at HabitRPG kan bane vejen for en sundere livsstil.",
- "marketing4Lead3Title": "Spilificér Alt",
+ "marketing4Lead2Title": "Brug af Spilelementer i Sundhed og Velvære",
"marketing4Lead3-1": "Vil du gøre dit liv til et spil?",
"marketing4Lead3-2": "Interesseret i at lede en gruppe for uddannelse, velvære og mere?",
"marketing4Lead3-3": "Vil du vide mere?",
- "playButton": "Spil",
- "username": "Brugernavn",
- "password": "Kodeord",
- "useUUID": "Brug dit Unikke Bruger-ID/ API Nøgle (for Facebook brugere)",
- "passMan": "Hvis du bruger en kodeordshusker (som 1Password) og har problemer med at logge ind, så prøv at skrive dit brugernavn og kodeord manuelt.",
- "forgotPass": "Glemt Kodeord",
- "emailNewPass": "Send nyt kodeord via email",
- "invalidEmail": "Det kræver en valid emailadresse for at få nulstillet dit kodeord.",
- "email": "Email",
- "passConfirm": "Bekræft Kodeord",
- "accept1Terms": "Ved at klikke på knappen herunder indvilliger jeg i at følge HabitRPGs",
- "terms": "Betingelser og Vilkår",
- "accept2Terms": "og",
- "privacy": "Fortrolighedspolitik",
- "home": "Hjem",
- "learnMore": "Lær mere",
- "contact": "Kontakt",
- "history": "Historie",
- "anonymous": "Anonymt",
- "tasks": "Opgaver",
- "loginAndReg": "Log ind/ Registrer",
- "loginFacebookAlt": "Log ind / registrer gennem Facebook",
- "login": "Log ind",
- "register": "Registrer",
- "options": "Valgmuligheder",
- "logout": "Log Ud",
- "sync": "Synkroniser",
- "FAQ": "OSS",
- "tutorials": "Vejledninger",
- "psst": "Psst",
- "footerMobile": "Mobil",
- "mobileIOS": "iOS",
+ "marketing4Lead3Title": "Spilificér Alt",
"mobileAndroid": "Android",
- "footerCompany": "Firma",
- "companyDonate": "Donér",
- "companyAbout": "Hvordan det Virker",
- "companyVideos": "Videoer",
- "companyBlog": "Blog",
- "companyExtensions": "Udvidelser",
- "companyPrivacy": "Fortrolighed",
- "companyTerms": "Vilkår",
- "footerCommunity": "Fællesskab",
- "communityBug": "Meddel fejl",
- "communityFeature": "Anmod om en funktion",
- "communityExtensions": "Tilføjelser og udvidelser",
- "communityForum": "Forum",
- "communityKickstarter": "Kickstarter",
- "communityFacebook": "Facebook",
- "communityReddit": "Reddit",
- "footerSocial": "Social",
- "socialTitle": "HabitRPG - Gør dit liv en leg",
- "watchVideos": "Se videoer",
+ "mobileIOS": "iOS",
+ "motivate": "Motivate yourself and your team!",
+ "motivate1": "Motivate yourself to do anything.",
+ "motivate2": "Get Organized. Get Motivated. Get Gold.",
+ "passConfirm": "Bekræft Kodeord",
+ "passMan": "Hvis du bruger en kodeordshusker (som 1Password) og har problemer med at logge ind, så prøv at skrive dit brugernavn og kodeord manuelt.",
+ "password": "Kodeord",
+ "playButton": "Spil",
+ "playButtonFull": "Play HabitRPG",
"presskit": "Pressekit",
+ "presskitDownload": "Download alle billeder:",
"presskitText": "Tak for din interesse i HabitRPG! Disse billeder kan bruges for artikler eller videoer om HabitRPG. For mere information, kontakt venligst Siena Leslie på leslie@habitrpg.com.",
- "presskitDownload": "Download alle billeder:"
+ "privacy": "Fortrolighedspolitik",
+ "psst": "Psst",
+ "punishByline": "Break bad habits and procrastination cycles with immediate consequences.",
+ "punishHeading1": "Miss a daily goal?",
+ "punishHeading2": "Lose health!",
+ "questByline1": "Playing with your friends keeps you accountable for your tasks.",
+ "questByline2": "Issue each other Challenges to complete a goal together!",
+ "questHeading1": "Battle monsters with your friends!",
+ "questHeading2": "If you slack off, they all get hurt!",
+ "register": "Registrer",
+ "rewardByline1": "Spend gold on virtual and real-life rewards.",
+ "rewardByline2": "Instant rewards keep you motivated!",
+ "rewardHeading": "Complete a task to earn gold!",
+ "sampleDailies": "Sample Dailies",
+ "sampleHabits": "Sample Habits",
+ "sampleToDo": "Sample To-Dos",
+ "school": "School",
+ "schoolSample1": "Finish 1 Assignment",
+ "schoolSample2": "Study 1 hour",
+ "schoolSample3": "Meet with Study Group",
+ "schoolSample4": "Notes for 1 Chapter",
+ "schoolSample5": "Read 1 Chapter",
+ "sixteenBitFilQuote": "I'm getting my jobs and tasks done in record time thanks to HabitRPG. I'm just always so eager to reach my next level-up!",
+ "skysailorQuote": "My party and our quests keep me engaged in the game, which keeps me motivated to get things done and change my life in positive ways",
+ "socialTitle": "HabitRPG - Gør dit liv en leg",
+ "supermouse35Quote": "I'm exercising more and I haven't forgotten to take my meds for months! Thanks, Habit. :D",
+ "sync": "Synkroniser",
+ "tasks": "Opgaver",
+ "teamSample1": "Outline Meeting Itinerary for Tuesday",
+ "teamSample2": "Brainstorm Growth Hacking",
+ "teamSample3": "Discuss this week’s KPIs",
+ "teams": "Teams",
+ "terms": "Betingelser og Vilkår",
+ "testimonialHeading": "What people say...",
+ "tutorials": "Vejledninger",
+ "unlockByline1": "Achieve your goals and level up.",
+ "unlockByline2": "Unlock new motivational tools, such as pet collecting, random rewards, spell-casting, and more!",
+ "unlockHeadline": "As you stay productive, you unlock new content!",
+ "useUUID": "Brug dit Unikke Bruger-ID/ API Nøgle (for Facebook brugere)",
+ "username": "Brugernavn",
+ "watchVideos": "Se videoer",
+ "work": "Work",
+ "zelahQuote": "With HabitRPG, I can be persuaded to go to bed on time by the thought of gaining points for an early night or losing health for a late one!",
+ "reportAccountProblems": "Report Account Problems",
+ "reportCommunityIssues": "Report Community Issues",
+ "generalQuestionsSite": "General Questions about the Site",
+ "businessInquiries": "Business Inquiries",
+ "merchandiseInquiries": "Merchandise Inquiries",
+ "marketingInquiries": "Marketing/Social Media Inquiries"
}
\ No newline at end of file
diff --git a/common/locales/da/gear.json b/common/locales/da/gear.json
index 530cd179a2..119f1274c8 100644
--- a/common/locales/da/gear.json
+++ b/common/locales/da/gear.json
@@ -120,6 +120,8 @@
"weaponMystery201411Notes": "Stik dine fjender eller grib for dig af dine yndlingsretter - denne høtyv kan det hele! Giver ingen bonusser. November 2014 Abonnentvare.",
"weaponMystery201502Text": "Shimmery Winged Staff of Love and Also Truth",
"weaponMystery201502Notes": "For WINGS! For LOVE! For ALSO TRUTH! Confers no benefit. February 2015 Subscriber Item.",
+ "weaponMystery201505Text": "Green Knight Lance",
+ "weaponMystery201505Notes": "This green and silver lance has unseated many opponents from their mounts. Confers no benefit. May 2015 Subscriber Item.",
"weaponMystery301404Text": "Steampunk Stok",
"weaponMystery301404Notes": "Perfekt at svinge rundt i hele byen. Marts 3015 Abonnentvare. Giver ingen bonusser.",
"armor": "rustning",
@@ -247,6 +249,8 @@
"armorMystery201501Notes": "Galakser glimter i denne rustnings metal, og styrker bærerens beslutsomhed. Giver ingen bonusser. Januar 2015 Abonnentting.",
"armorMystery201503Text": "Aquamarine Armor",
"armorMystery201503Notes": "This blue mineral symbolizes good luck, happiness, and eternal productivity. Confers no benefit. March 2015 Subscriber Item.",
+ "armorMystery201504Text": "Busy Bee Robe",
+ "armorMystery201504Notes": "You'll be productive as a busy bee in this fetching robe! Confers no benefit. April 2015 Subscriber Item.",
"armorMystery301404Text": "Steampunk-dragt",
"armorMystery301404Notes": "Nydelig og elegant, selvfølgelig! Giver ingen bonusser. Februar 3015 Abonnentting.",
"headgear": "hovedbeklædning",
@@ -263,7 +267,7 @@
"headWarrior5Text": "Gylden Hjelm",
"headWarrior5Notes": "Kongelig krone der hører til skindende rustning. Øger Styrke med <%= str %>.",
"headRogue1Text": "Læderhætte",
- "headRogue1Notes": "Simpel beskyttende hætte. Øger Opfattelse med <%= str %>.",
+ "headRogue1Notes": "Simpel beskyttende hætte. Øger Opfattelse med <%= per %>.",
"headRogue2Text": "Sort Læderhætte",
"headRogue2Notes": "Nyttig både som forsvar og forklædning. Øger Opfattelse med <%= per %>.",
"headRogue3Text": "Kamuflagehætte",
@@ -368,6 +372,8 @@
"headMystery201412Notes": "Hvem er en pingvin? Giver ingen bonusser. December 2014 Abonnentting.",
"headMystery201501Text": "Stjernehjelm",
"headMystery201501Notes": "Stjernebilleder glimter og hvirvler på denne hjelm, og fokuserer bærerens tanker. Giver ingen bonusser. Januar 2015 Abonnentting.",
+ "headMystery201505Text": "Green Knight Helm",
+ "headMystery201505Notes": "The green plume on this iron helm waves proudly. Confers no benefit. May 2015 Subscriber Item.",
"headMystery301404Text": "Smart Tophat",
"headMystery301404Notes": "En smart tophat for de fineste folk! Giver ingen bonusser. Januar 3015 Abonnentting.",
"headMystery301405Text": "Simpel Tophat",
@@ -445,6 +451,8 @@
"backMystery201404Notes": "Gør som en sommerfugl og flaks forbi. Giver ingen bonusser. April 2014 Abonnentting.",
"backMystery201410Text": "Goblinvinger",
"backMystery201410Notes": "Styrtdyk gennem natten med disse stærke vinger. Giver ingen bonusser. Oktober 2014 Abonnentting.",
+ "backMystery201504Text": "Busy Bee Wings",
+ "backMystery201504Notes": "Buzz buzz buzz! Flit from task to task. Confers no benefit. April 2015 Subscriber Item.",
"backSpecialWonderconRedText": "Mægtig Kappe",
"backSpecialWonderconRedNotes": "Rasler af styrke og skønhed. Giver ingen bonusser. Specielt Messeudstyr.",
"backSpecialWonderconBlackText": "Lusket Kappe",
@@ -462,6 +470,8 @@
"bodySpecialSummerHealerText": "Koralkrave",
"bodySpecialSummerHealerNotes": "En tjekket krave af levende koral! Giver ingen bonusser. Specielt 2014 Sommerudstyr.",
"headAccessory": "hovedudstyr",
+ "accessories": "Accessories",
+ "animalEars": "Animal Ears",
"headAccessoryBase0Text": "Intet Hovedudstyr",
"headAccessoryBase0Notes": "Intet Hovedudstyr.",
"headAccessorySpecialSpringRogueText": "Lilla Katteører",
@@ -480,6 +490,22 @@
"headAccessorySpecialSpring2015MageNotes": "These ears listen keenly, in case somewhere a magician is revealing secrets. Confers no benefit. Limited Edition 2015 Spring Gear.",
"headAccessorySpecialSpring2015HealerText": "Grønne Katteører",
"headAccessorySpecialSpring2015HealerNotes": "These cute kitty ears will make others green with envy. Confers no benefit. Limited Edition 2015 Spring Gear.",
+ "headAccessoryBearEarsText": "Bear Ears",
+ "headAccessoryBearEarsNotes": "These ears make you look like a cuddly bear! Confers no benefit.",
+ "headAccessoryCactusEarsText": "Cactus Ears",
+ "headAccessoryCactusEarsNotes": "These ears make you look like a prickly cactus! Confers no benefit.",
+ "headAccessoryFoxEarsText": "Fox Ears",
+ "headAccessoryFoxEarsNotes": "These ears make you look like a wily fox! Confers no benefit.",
+ "headAccessoryLionEarsText": "Lion Ears",
+ "headAccessoryLionEarsNotes": "These ears make you look like a regal lion! Confers no benefit.",
+ "headAccessoryPandaEarsText": "Panda Ears",
+ "headAccessoryPandaEarsNotes": "These ears make you look like a gentle panda! Confers no benefit.",
+ "headAccessoryPigEarsText": "Pig Ears",
+ "headAccessoryPigEarsNotes": "These ears make you look like a whimsical pig! Confers no benefit.",
+ "headAccessoryTigerEarsText": "Tiger Ears",
+ "headAccessoryTigerEarsNotes": "These ears make you look like a fierce tiger! Confers no benefit.",
+ "headAccessoryWolfEarsText": "Wolf Ears",
+ "headAccessoryWolfEarsNotes": "These ears make you look like a loyal wolf! Confers no benefit.",
"headAccessoryMystery201403Text": "Skovvandrer-gevir",
"headAccessoryMystery201403Notes": "Dette gevir er dækket af glinsende mos. Giver ingen bonusser. Marts 2014 Abonnentting.",
"headAccessoryMystery201404Text": "Tusmørkesommerfugls Antenner",
diff --git a/common/locales/da/generic.json b/common/locales/da/generic.json
index afcc8eb898..da138ccbc9 100644
--- a/common/locales/da/generic.json
+++ b/common/locales/da/generic.json
@@ -5,7 +5,20 @@
"habitica": "Habitica",
"expandToolbar": "Åbn værktøjslinje",
"collapseToolbar": "Luk værktøjslinje",
- "formattingMarkdown": "Markdown-formattering tilladt",
+ "markdownBlurb": "HabitRPG uses markdown for message formatting. See the Markdown Cheat Sheet for more info.",
+ "showFormattingHelp": "Show formatting help",
+ "hideFormattingHelp": "Hide formatting help",
+ "youType": "You type:",
+ "youSee": "You see:",
+ "italics": "*Italics*",
+ "bold": "**Bold**",
+ "strikethrough": "~~Strikethrough~~",
+ "emojiExample": ":smile:",
+ "markdownLinkEx": "[HabitRPG is great!](https://habitrpg.com)",
+ "markdownImageEx": "",
+ "unorderedListHTML": "+ First item
+ Second item
+ Third item",
+ "unorderedListMarkdown": "+ First item\n+ Second item\n+ Third item",
+ "code": "`code`",
"achievements": "Præstationer",
"modalAchievement": "Præstation!",
"special": "Andet",
@@ -37,7 +50,7 @@
"notEnoughGems": "Ikke nok Ædelsten",
"alreadyHave": "Ups! Du har allerede denne ting. Ingen grund til at købe den igen!",
"delete": "Slet",
- "gemsPopoverTitle": "Gems",
+ "gemsPopoverTitle": "Ædelsten",
"gems": "Ædelsten",
"gemButton": "Du har <%= number %> Ædelsten.",
"moreInfo": "Mere Information",
diff --git a/common/locales/da/groups.json b/common/locales/da/groups.json
index 9b40a0772b..de8fb879a1 100644
--- a/common/locales/da/groups.json
+++ b/common/locales/da/groups.json
@@ -2,7 +2,7 @@
"tavern": "Værtshus",
"innCheckOut": "Forlad Kroen",
"innCheckIn": "Slap af på Kroen",
- "innText": "Hvordan er dit ophold på Kroen, <%= name %>? For at beskytte dig er din liste af Daglige frossen. Dine færdiggjorte opgaver vil ikke blive behandlet eller ryddet før i morgen (dagen efter du forlader kroen). Vær forsigtig hvis din gruppe er i en Boss-kamp, da deres forpassede opgaver stadig vil skade dig! Derudover vil du ikke skade bossen mens du er her. Klar til at smutte? Forlad kroen.",
+ "innText": "You're resting in the Inn! While checked-in, your Dailies won't hurt you at the day's end, but they will still refresh every day. Be warned: If you are participating in a Boss Quest, the Boss will still damage you for your party mates' missed Dailies unless they are also in the Inn! Also, your own damage to the Boss (or items collected) will not be applied until you check out of the Inn.",
"lfgPosts": "Leder efter Gruppe (Gruppe Søges) Poster",
"tutorial": "Vejledning",
"glossary": "Ordliste",
@@ -96,5 +96,25 @@
"abuseReported": "Tak for at anmelde denne overtrædelse. Moderatorerne er blevet informeret.",
"abuseAlreadyReported": "Du har allerede anmeldt denne besked.",
"needsText": "Indtast venligst en besked.",
- "needsTextPlaceholder": "Skriv din besked her."
+ "needsTextPlaceholder": "Skriv din besked her.",
+ "copyMessageAsToDo": "Copy message as To-Do",
+ "messageAddedAsToDo": "Message copied as To-Do.",
+ "messageWroteIn": "<%= user %> wrote in <%= group %>",
+ "msgPreviewHeading": "Message Preview",
+ "leaderOnlyChallenges": "Only group leader can create challenges",
+ "sendGift": "Send Gift",
+ "inviteFriends": "Invite Friends",
+ "inviteAlertInfo": "Invite friends by User ID here.",
+ "inviteExistUser": "Invite Existing User",
+ "inviteByEmail": "Invite friends by email. If they join via your email, they'll automatically be invited to this group.",
+ "byColon": "By:",
+ "inviteNewUsers": "Invite New User(s)",
+ "inviteAlertInfo2": "Or share this link (copy/paste):",
+ "sendGiftHeading": "Send Gift to <%= name %>",
+ "sendGiftGemsBalance": "From <%= number %> Gems",
+ "sendGiftCost": "Total: $<%= cost %> USD",
+ "sendGiftFromBalance": "From Balance",
+ "sendGiftPurchase": "Purchase",
+ "sendGiftMessagePlaceholder": "Personal message (optional)",
+ "sendGiftSubscription": "<%= months %> Month(s): $<%= price %>"
}
\ No newline at end of file
diff --git a/common/locales/da/npc.json b/common/locales/da/npc.json
index 46ca2aee8b..469088f64b 100644
--- a/common/locales/da/npc.json
+++ b/common/locales/da/npc.json
@@ -2,11 +2,11 @@
"npc": "NPC",
"npcText": "Støttede Kickstarterprojektet på det maksimale niveau!",
"mattBoch": "Matt Boch",
- "mattShall": "Skal jeg hente dit ridedyr, <%= name %>? Klik på et ridedyr for at bestige det.",
- "mattBochText1": "Velkommen til Stalden! Jeg er Matt, bæstmesteren. Vælg det kæledyr, du vil have til at følge dig, her. Giv dem mad, og de vil vokse sig til kraftfulde ridedyr.",
+ "mattShall": "Shall I bring you your steed, <%= name %>? Once you've fed a pet enough food to turn it into a mount, it will appear here. Click a mount to saddle up!",
+ "mattBochText1": "Welcome to the Stable! I'm Matt, the beast master. After level 4, you can hatch pets using eggs and potions. When you hatch a pet in the Market, it will appear here! Click a pet's image to add it to your avatar. Feed them with the food you find after level 4, and they'll grow into powerful mounts.",
"daniel": "Daniel",
- "danielText": "Velkommen til Værtshuset! Hæng ud og mød de lokale. Hvis du har brug for at slappe af (ferie? sygdom?), så er der plads på Kroen. Når du er tjekket ind på Kroen, vil dine Daglige blive fastfrosset i den tilstand, de er i (markerede/umarkerede) indtil dagen efter du tjekker ud. Du vil ikke ved dagens afslutning lide under at have sprunget dem over.",
- "danielText2": "Advarsel: Hvis du deltager i en Boss-quest vil bossen stadig skade dig for de andre gruppemedlemmers oversprungne Daglige!",
+ "danielText": "Welcome to the Tavern! Stay a while and meet the locals. If you need to rest (vacation? illness?), I'll set you up at the Inn. While checked-in, your Dailies won't hurt you at the day's end, but you can still check them off.",
+ "danielText2": "Be warned: If you are participating in a boss quest, the boss will still damage you for your party mates' missed Dailies! Also, your own damage to the Boss (or items collected) will not be applied until you check out of the Inn.",
"alexander": "Købmanden Alexander",
"welcomeMarket": "Velkommen til Markedet! Her kan du købe æg og eliksirer, der er svære at finde, eller sælge dine overskydende! Bestil nyttige tjenester! Kom og se hvad vi har at tilbyde.",
"sellForGold": "Sælg <%= item %> for <%= gold %> Guld",
@@ -45,9 +45,9 @@
"tourScrollDown": "Be sure to scroll all the way down to see all the options! Click on your avatar again to return to the tasks page.",
"tourMuchMore": "When you're done with tasks, you can form a Party with friends, chat in the shared-interest Guilds, join Challenges, and more!",
"tourStatsPage": "This is your Stats page! Earn achievements by completing the listed tasks.",
- "tourTavernPage": "Welcome to the Tavern, an all-ages chatroom! You can freeze your account in case of illness or travel by clicking \"Rest in the Inn.\" Come say hi!",
+ "tourTavernPage": "Welcome to the Tavern, an all-ages chatroom! You can keep your Dailies from hurting you in case of illness or travel by clicking \"Rest in the Inn.\" Come say hi!",
"tourPartyPage": "Your Party will help you stay accountable. Invite friends to unlock a Quest Scroll!",
"tourGuildsPage": "Guilds are social groups with common themes. Search for the subjects that interest you! We recommend the Newbies Guild.",
- "tourChallengesPage": "Joining a Challenge will add tasks to your account. Compete against other users to win gem prizes!",
+ "tourChallengesPage": "Challenges are themed task lists created by users! Joining a Challenge will add its tasks to your account. Compete against other users to win gem prizes!",
"tourMarketPage": "Starting at Level 4, eggs and hatching potions drop randomly when you complete tasks. They appear here - use them to hatch pets! You can also buy items from the Market."
}
\ No newline at end of file
diff --git a/common/locales/da/quests.json b/common/locales/da/quests.json
index f8134f6ea7..7d2d571b80 100644
--- a/common/locales/da/quests.json
+++ b/common/locales/da/quests.json
@@ -6,6 +6,8 @@
"questSend": "Send invitation til dine gruppemedlemmer ved at klikke \"Invitér\". Når alle medlemmer har accepteret eller afvist vil questen begynde. Se status under Valgmuligheder > Social > Gruppe.",
"inviteParty": "Invitér Gruppe",
"questInvitation": "Quest-invitation:",
+ "questInvitationTitle": "Quest Invitation",
+ "questInvitationInfo": "Invitation for the Quest <%= quest %>",
"askLater": "Spørg Senere",
"buyQuest": "Køb Quest",
"accepted": "Accepteret",
@@ -17,7 +19,7 @@
"bossStrength": "Boss-styrke",
"collect": "Saml",
"collected": "Indsamlet",
- "bossDmg1": "For at skade en boss skal du færdiggøre dine Daglige og Gøremål. Jo mere skade du gør på opgaver, des mere skade tager Bossen (færdiggørelse af røde opgaver, Magikeres fortryllelser, Krigeres angreb osv.). Bossen vil give skade til alle quest-deltagere for hver Daglig du springer over (ganget med bossens Styrke) oveni din sædvanlige skade, så hold din gruppe i live ved at færdiggøre dine Daglige! Al skade på og fra bossen bliver opgjort ved cron (når din dag skifter).",
+ "bossDmg1": "Each completed Daily and To-Do and each positive Habit hurts the boss. Hurt it more with redder tasks or Brutal Smash and Burst of Flames. The boss will deal damage to every quest participant for every Daily you've missed (multiplied by the boss's Strength) in addition to your regular damage, so keep your party healthy by completing your Dailies! All damage to and from a boss is tallied on cron (your day roll-over).",
"bossDmg2": "Kun deltagere vil kæmpe mod bossen og få del i quest-byttet.",
"tavernBossInfo": "For at skade en verdens-boss skal du færdiggøre dine Daglige og Gøremål. Jo mere skade du gør på opgaver, des mere skade tager Bossen (færdiggørelse af røde opgaver, Magikeres fortryllelser, Krigeres angreb osv.). Bossens Vrede stiger for hver Daglig du springer over (ganget med bossens Styrke). Når hans Vrede når maksimum vil der ske slemme ting - så færdiggør dine Daglige! Al skade på og fra bossen bliver opgjort ved cron (når din dag skifter).",
"bossColl1": "Udfør dine positive opgaver for at samle ting. Quest-ting dropper som normale ting, men du vil ikke se drops før næste dag, hvor alt hvad du har fundet vil blive opgjort og lagt i bunken.",
@@ -28,7 +30,7 @@
"questOwnerNotInRunningQuest": "Quest-lederen har forladt questen. Du kan afbryde questen hvis du har brug for det, men du kan også lade den fortsætte, og dermed lade alle tilbageværende deltagere modtage quest-præmierne når questen er overstået.",
"questOwnerNotInPendingQuestParty": "Quest-lederen har forladt gruppen og kan ikke længere starte questen. Det anbefales at du afbryder den nu. Quest-skriftrullen vil blive returneret til quest-lederen.",
"questOwnerNotInRunningQuestParty": "Quest-lederen har forladt gruppen. Du kan afbryde questen hvis du har brug for det, men du kan også lade den fortsætte, og dermed lade alle tilbageværende deltagere modtage quest-præmierne når questen er overstået.",
- "questParticipants": "Participants",
+ "questParticipants": "Deltagere",
"scrolls": "Quest-skriftruller",
"noScrolls": "Du har ingen quest-skriftruller.",
"scrollsText1": "Quests kræver grupper. Hvis du vil queste alene,",
diff --git a/common/locales/da/questscontent.json b/common/locales/da/questscontent.json
index a0ce97ecce..bb773aa39d 100644
--- a/common/locales/da/questscontent.json
+++ b/common/locales/da/questscontent.json
@@ -181,7 +181,7 @@
"questTRexUnlockText": "Åbner for køb at tyrranosaurusæg på Markedet",
"questRockText": "Escape the Cave Creature",
"questRockNotes": "Crossing Habitica's Meandering Mountains with some friends, you make camp one night in a beautiful cave laced with shining minerals. But when you wake up the next morning, the entrance has disappeared, and the floor of the cave is shifting underneath you.
\"The mountain's alive!\" shouts your companion @pfeffernusse. \"These aren't crystals - these are teeth!\"
@Painter de Cluster grabs your hand. \"We'll have to find another way out - stay with me and don't get distracted, or we could be trapped in here forever!\"",
- "questRockBoss": "Crystal Colossus",
+ "questRockBoss": "Krystal-Kæmpe",
"questRockCompletion": "Your diligence has allowed you to find a safe path through the living mountain. Standing in the sunshine, your friend @intune notices something glinting on the ground by the cave's exit. You stoop to pick it up, and see that it's a small rock with a vein of gold running through it. Beside it are a number of other rocks with rather peculiar shapes. They almost look like... eggs?",
"questRockDropRockEgg": "Sten (Æg)",
"questRockUnlockText": "Åbner for køb at stenæg på Markedet",
@@ -195,6 +195,12 @@
"questSlimeNotes": "As you work on your tasks, you notice you are moving slower and slower. \"It's like walking through molasses,\" @Leephon grumbles. \"No, like walking through jelly!\" @starsystemic says. \"That slimy Jelly Regent has slathered his stuff all over Habitica. It's gumming up the works. Everybody is slowing down.\" You look around. The streets are slowly filling with clear, colorful ooze, and Habiticans are struggling to get anything done. As others flee the area, you grab a mop and prepare for battle!",
"questSlimeBoss": "Jelly Regent",
"questSlimeCompletion": "With a final jab, you trap the Jelly Regent in an over-sized donut, rushed in by @Overomega, @LordDarkly, and @Shaner, the quick-thinking leaders of the pastry club. As everyone is patting you on the back, you feel someone slip something into your pocket. It’s the reward for your sweet success: three Marshmallow Slime eggs.",
- "questSlimeDropSlimeEgg": "Marshmallow Slime (Egg)",
- "questSlimeUnlockText": "Unlocks purchasable slime eggs in the Market"
+ "questSlimeDropSlimeEgg": "Skumfidus-Slim (Æg)",
+ "questSlimeUnlockText": "Unlocks purchasable slime eggs in the Market",
+ "questSheepText": "The Thunder Ram",
+ "questSheepNotes": "As you wander the rural Taskan countryside with friends, taking a \"quick break\" from your obligations, you find a cozy yarn shop. You are so absorbed in your procrastination that you hardly notice the ominous clouds creep over the horizon. \"I've got a ba-a-a-ad feeling about this weather,\" mutters @Misceo, and you look up. The stormy clouds are swirling together, and they look a lot like a... \"We don't have time for cloud-gazing!\" @starsystemic shouts. \"It's attacking!\" The Thunder Ram hurtles forward, slinging bolts of lightning right at you!",
+ "questSheepBoss": "Thunder Ram",
+ "questSheepCompletion": "Impressed by your diligence, the Thunder Ram is drained of its fury. It launches three huge hailstones in your direction, and then fades away with a low rumble. Upon closer inspection, you discover that the hailstones are actually three fluffy eggs. You gather them up, and then stroll home under a blue sky.",
+ "questSheepDropSheepEgg": "Sheep (Egg)",
+ "questSheepUnlockText": "Unlocks purchasable sheep eggs in the Market"
}
\ No newline at end of file
diff --git a/common/locales/da/settings.json b/common/locales/da/settings.json
index f851774bf1..d9f52c6512 100644
--- a/common/locales/da/settings.json
+++ b/common/locales/da/settings.json
@@ -42,8 +42,8 @@
"customDayStart": "Brugerdefineret Dagstart",
"24HrClock": "24-timers tid",
"customDayStartInfo1": "HabitRPG defaults to check and reset your Dailies at midnight in your own time zone each day. It is recommended that you read the following information before changing it:",
- "customDayStartInfo2": "(show more)",
- "customDayStartInfo3": "(show less)",
+ "customDayStartInfo2": "(vis mere)",
+ "customDayStartInfo3": "(vis mindre)",
"customDayStartInfo4": "Complete all your Dailies before changing the Custom Day Start or Rest in the Inn that day. Changing your Custom Day Start may cause Cron to run immediately, but after the first day it works as expected.
Allow a window of two hours for the change to take effect. For example, if it is currently set to 0 (midnight), change it before 10pm; if you want to set it to 9pm, change it before 7pm.
Enter an hour from 0 to 23 (it uses a 24 hour clock). Typing is more effective than arrow keys. Once set, reload the page to confirm that the new value is being displayed.",
"misc": "Diverse",
"showHeader": "Vis Sidehoved",
@@ -93,10 +93,12 @@
"wonChallenge": "Du vandt en Udfordring",
"newPM": "Modtaget Privatbesked",
"giftedGems": "Ædelstensgave",
+ "giftedGemsInfo": "<%= amount %> Gems - by <%= name %>",
"giftedSubscription": "Abonnementsgave",
"invitedParty": "Gruppeinvitation",
"invitedGuild": "Klaninvitation",
"inactivityEmails": "Din konto er inaktiv",
+ "weeklyRecaps": "Summaries of your account activity in the past week",
"questStarted": "Jeres Quest er Begyndt",
"invitedQuest": "Inviteret til Quest",
"kickedGroup": "Fjernet fra gruppe",
@@ -111,5 +113,10 @@
"benefits": "Fordele",
"coupon": "Kupon",
"couponPlaceholder": "Indtast Kuponkode",
- "couponText": "Nogen gange har vi events og giver kuponkoder til specielt udstyr (f.eks. til dem, der svinger forbi vores stand på Wondercon)."
+ "couponText": "We sometimes have events and give out promo codes for special gear. (eg, those who stop by our Wondercon booth)",
+ "apply": "Apply",
+ "resubscribe": "Resubscribe",
+ "promoCode": "Promo Code",
+ "promoCodeApplied": "Promo Code Applied! Check your inventory",
+ "promoPlaceholder": "Enter Promotion Code"
}
\ No newline at end of file
diff --git a/common/locales/da/spells.json b/common/locales/da/spells.json
index dca6191d62..6e609ded81 100644
--- a/common/locales/da/spells.json
+++ b/common/locales/da/spells.json
@@ -1,36 +1,36 @@
{
"spellWizardFireballText": "Flammeudbrud",
- "spellWizardFireballNotes": "Flammer springer frem og svider en opgave. Du reducerer opgavens rødhed, giver mere skade til ethvert monster som du kæmper mod, og får Erfaring - mest for blå opgaver.",
+ "spellWizardFireballNotes": "Flames burst from your hands. You gain XP, and you deal extra damage to Bosses! Click on a task to cast. (Based on: INT)",
"spellWizardMPHealText": "Æterisk Bølge",
- "spellWizardMPHealNotes": "Magisk energi flyder fra dine hænder og genoplader din gruppe. Din gruppe får MP tilbage.",
+ "spellWizardMPHealNotes": "You sacrifice mana to help your friends. The rest of your party gains MP! (Based on: INT)",
"spellWizardEarthText": "Jordskælv",
- "spellWizardEarthNotes": "Jorden under din gruppes opgaver slår revner og ryster intenst, hvilket gør dem langsommere og åbner op for flere angreb. Din gruppe for et boost Intelligens, hvilket leder til mere Erfaring.",
+ "spellWizardEarthNotes": "Your mental power shakes the earth. Your whole party gains a buff to Intelligence! (Based on: Unbuffed INT)",
"spellWizardFrostText": "Isnende Frost",
- "spellWizardFrostNotes": "Is springer frem fra alle overflader, opsluger dine opgaver og fryser dem fast. Dine Dagliges striber vil ikke blive nulstillet ved dagens afslutning. Ikke færdiggjorte Daglige vil dog stadig skade dig!",
+ "spellWizardFrostNotes": "Ice covers your tasks. None of your streaks will reset to zero tomorrow! (One cast affects all streaks.)",
"spellWarriorSmashText": "Brutalt Slag",
- "spellWarriorSmashNotes": "Du rammer en enkelt opgave med et voldsomt slag med fuld kraft. Opgavens rødhed formindskes, og du giver ekstra skade til ethvert monster som du kæmper imod.",
+ "spellWarriorSmashNotes": "You hit a task with all of your might. It gets more blue/less red, and you deal extra damage to Bosses! Click on a task to cast. (Based on: STR)",
"spellWarriorDefensiveStanceText": "Defensiv Stilling",
- "spellWarriorDefensiveStanceNotes": "Du bruger et øjeblik på at slappe af i kroppen og stiller dig defensivt klar til at håndtere opgavernes næste angreb. Reducerer skade fra Daglige ved dagens afslutning ved at booste din Konstitution.",
+ "spellWarriorDefensiveStanceNotes": "You prepare yourself for the onslaught of your tasks. You gain a buff to Constitution! (Based on: Unbuffed CON)",
"spellWarriorValorousPresenceText": "Heltemodig Fremtoning",
- "spellWarriorValorousPresenceNotes": "Din fremtoning gør din gruppe modigere. Deres nyfundne mod gør dem stærkere. Gruppemedlemmer får et boost til deres Styrke.",
+ "spellWarriorValorousPresenceNotes": "Your presence emboldens your party. Your whole party gains a buff to Strength! (Based on: Unbuffed STR)",
"spellWarriorIntimidateText": "Intimiderende Blik",
- "spellWarriorIntimidateNotes": "Dit blik sår frygt i hjertet på din gruppes fjender. Gruppen får et moderat boost til deres forsvar ved at øge deres Konstitution.",
+ "spellWarriorIntimidateNotes": "Your gaze strikes fear into your enemies. Your whole party gains a buff to Constitution! (Based on: Unbuffed CON)",
"spellRoguePickPocketText": "Lommetyveri",
- "spellRoguePickPocketNotes": "Dine rappe fingre dykker ned i opgavens lommer og finder nogle skatte til dig selv. Du får en omgående bonus fra en opgave. Jo 'tykkere' (mere blå) opgaven er, des mere guld stjæler du!",
+ "spellRoguePickPocketNotes": "You rob a nearby task. You gain gold! Click on a task to cast. (Based on: PER)",
"spellRogueBackStabText": "Snigløb",
- "spellRogueBackStabNotes": "Uden en lyd sniger du dig op bag en opgave og falder den i ryggen. Du giver mere skade til opgaven og har en højere chance for en fuldtræffer.",
+ "spellRogueBackStabNotes": "You betray a foolish task. You gain gold and XP! Click on a task to cast. (Based on: STR)",
"spellRogueToolsOfTradeText": "Fagredskaber",
- "spellRogueToolsOfTradeNotes": "Du deler dine tyveværktøjer med din gruppe for at hjælpe dem med at 'rekvirere' mere guld. Ved at booste deres Opfattelse er gruppens guldbonus for opgaver og dropchance øget resten af dagen.",
+ "spellRogueToolsOfTradeNotes": "You share your talents with friends. Your whole party gains a buff to Perception! (Based on: Unbuffed PER)",
"spellRogueStealthText": "Snigen",
- "spellRogueStealthNotes": "Du tager hætten op og falder i et med skyggerne. Mange Daglige vil ikke finde dig i nat; jo mere Opfattelse du har, des færre finder dig.",
+ "spellRogueStealthNotes": "You are too sneaky to spot. Some of your undone Dailies will not cause damage tonight, and their streaks/color will not change. (Cast multiple times to affect more Dailies)",
"spellHealerHealText": "Helende Lys",
- "spellHealerHealNotes": "Din krop dækkes af lys, der heler dine sår. Du får Helbred tilbage.",
+ "spellHealerHealNotes": "Light covers your body, healing your wounds. You regain health! (Based on: CON and INT)",
"spellHealerBrightnessText": "Blændende Lys",
- "spellHealerBrightnessNotes": "Du kaster et lysglimt, der blænder alle dine opgaver. Rødheden af dine opgaver reduceres.",
+ "spellHealerBrightnessNotes": "A burst of light dazzles your tasks. They become more blue and less red! (Based on: INT)",
"spellHealerProtectAuraText": "Beskyttende Aura",
- "spellHealerProtectAuraNotes": "En magisk aura omkranser dine gruppemedlemmer og beskytter dem mod skade. Gruppen får et moderat boost til deres forsvar ved at øge deres Konstitution.",
+ "spellHealerProtectAuraNotes": "You shield your party from damage. Your whole party gains a buff to Constitution! (Based on: Unbuffed CON)",
"spellHealerHealAllText": "Velsignelse",
- "spellHealerHealAllNotes": "Lindrende lys omkranser din gruppe og heler deres skader. Dine gruppemedlemmer får Helbred tilbage.",
+ "spellHealerHealAllNotes": "A soothing aura surrounds you. Your whole party regains health! (Based on: CON and INT)",
"spellSpecialSnowballAuraText": "Snebold",
"spellSpecialSnowballAuraNotes": "Kast en snebold efter et gruppemedlem! Kom nu, hvad kan der ske? Holder indtil medlemmet skifter dag.",
"spellSpecialSaltText": "Salt",
diff --git a/common/locales/da/tasks.json b/common/locales/da/tasks.json
index efd569549a..b52995a698 100644
--- a/common/locales/da/tasks.json
+++ b/common/locales/da/tasks.json
@@ -14,7 +14,7 @@
"save": "Gem",
"addChecklist": "Tilføj Tjekliste",
"checklist": "Tjekliste",
- "checklistText": "For Daglige vil delvist færdiggjorte tjeklister reducere skade. For eksempel, en 4-punkters tjekliste med 3 færdiggjorte reducere skade for den ikke færdiggjorte Daglige til 25%. Færdiggjorte tjekliste-punkter på en To-Do tilføjer en multiplikator: 3 tjek betyder +3x (i alt 4x) Erfaring, Guld og Mana.",
+ "checklistText": "Break a task into smaller pieces! Checklists increase the Experience and Gold gained from a To-Do, and reduce the damage caused by a Daily.",
"expandCollapse": "Åbn/Luk",
"text": "Tekst",
"extraNotes": "Ekstra Noter",
@@ -22,7 +22,7 @@
"advancedOptions": "Avancerede Indstillinger",
"difficulty": "Sværhedsgrad",
"difficultyHelpTitle": "Hvor svær er denne opgave?",
- "difficultyHelpContent": "Dette multiplikerer pointværdien. Brug sparsomt, og benyt i stedet vores organiske værdijusterende algoritmer. Men nogle opgaver er bare mere værd (Skriv Speciale vs Brug Tandtråd). Klik for mere info.",
+ "difficultyHelpContent": "The harder a task, the more Experience and Gold it awards you when you check it off... but the more it damages you if it is a Daily or Bad Habit!",
"easy": "Let",
"medium": "Medium",
"hard": "Svær",
@@ -44,7 +44,6 @@
"remaining": "Aktive",
"complete": "Færdige",
"dated": "Med dato",
- "datedNotSorted": "Dated To-Dos are NOT sorted by date. Sorting will probably be implemented in future.",
"due": "Forfalden",
"grey": "Grå",
"score": "Score",
@@ -78,5 +77,6 @@
"streakCoins": "Stribebonus!",
"pushTaskToTop": "Flyt opgave til toppen",
"pushTaskToBottom": "Flyt opgave til bunden",
- "emptyTask": "Indtast først opgavens titel."
+ "emptyTask": "Indtast først opgavens titel.",
+ "dailiesRestingInInn": "You're Resting in the Inn! Your Dailies will NOT hurt you tonight, but they WILL still refresh every day. If you're in a quest, you won't deal damage/collect items until you check out of the Inn, but you can still be injured by a Boss if your Party mates skip their own Dailies."
}
\ No newline at end of file
diff --git a/common/locales/de/backgrounds.json b/common/locales/de/backgrounds.json
index 143b36d062..3ba4643cbe 100644
--- a/common/locales/de/backgrounds.json
+++ b/common/locales/de/backgrounds.json
@@ -76,5 +76,19 @@
"backgroundFloralMeadowText": "Blumenwiese",
"backgroundFloralMeadowNotes": "Picknicke auf der Blumenwiese",
"backgroundGumdropLandText": "Weingummiland",
- "backgroundGumdropLandNotes": "Nasche ein wenig vom Weingummiland"
+ "backgroundGumdropLandNotes": "Nasche ein wenig vom Weingummiland",
+ "backgrounds052015": "SET 12: Veröffentlicht Mai 2015",
+ "backgroundMarbleTempleText": "Marmor Tempel",
+ "backgroundMarbleTempleNotes": "Posiere vor einem Marmor Tempel.",
+ "backgroundMountainLakeText": "Bergsee",
+ "backgroundMountainLakeNotes": "Tauche Deine Füße in einen Bergsee.",
+ "backgroundPagodasText": "Pagoden",
+ "backgroundPagodasNotes": "Erklimme die Spitze einer Pagode.",
+ "backgrounds062015": "SET 13: Released June 2015",
+ "backgroundDriftingRaftText": "Drifting Raft",
+ "backgroundDriftingRaftNotes": "Paddle a Drifting Raft.",
+ "backgroundShimmeryBubblesText": "Shimmery Bubbles",
+ "backgroundShimmeryBubblesNotes": "Float through a sea of Shimmery Bubbles.",
+ "backgroundIslandWaterfallsText": "Island Waterfalls",
+ "backgroundIslandWaterfallsNotes": "Picnic near Island Waterfalls."
}
\ No newline at end of file
diff --git a/common/locales/de/challenge.json b/common/locales/de/challenge.json
index 680e9004e9..1886435ab1 100644
--- a/common/locales/de/challenge.json
+++ b/common/locales/de/challenge.json
@@ -16,7 +16,7 @@
"selectWinner": "Wähle einen Gewinner und beende den Wettbewerb.",
"deleteOrSelect": "Löschen oder Gewinner wählen",
"endChallenge": "Wettbewerb beenden",
- "challengeDiscription": "Dies sind die Aufgaben des Wettbewerbs. Wenn Spieler teilnehmen, ändern die Aufgaben ihre Farben und erhalten Graphen, die Dir den Gesamtfortschritt der Gruppe zeigen.",
+ "challengeDiscription": "These are the Challenge's tasks that will be added to your task dashboard when you join this Challenge. The sample Challenge tasks below will change color and gain graphs to show you the overall progress of the group.",
"hows": "Wie läuft es bei Euch allen?",
"filter": "Filter",
"groups": "Gruppen",
@@ -33,7 +33,8 @@
"challengeTagPop": "Wettbewerbe erscheinen als Tag-Liste und Aufgabenbeschreibungen. Also ist es einerseits sinnvoll, oben einen beschreibenden Titel zu wählen, andererseits brauchst Du aber auch eine \"Kurzfassung\". Dazu kannst Du zum Beispiel \"Verliere 5 Kilo in 3 Monaten\" mit \"-5kg\" abkürzen. (Klicke auf das '?' für mehr Informationen).",
"challengeDescr": "Beschreibung",
"prize": "Preis",
- "prizePop": "Wenn jemand Deinen Wettbewerb 'gewinnen' kann, dann kannst Du, wenn Du willst, dem Gewinner einen Edelstein-Preis zusprechen. Maximal #Edelsteine in Deinem Inventar (+guild.gems, wenn Du die dazugehörige Gilde gegründet hast). Beachte: Diese Preise können später nicht mehr geändert werden und werden nicht ersetzt, wenn der Wettbewerb abgebrochen wird.",
+ "prizePop": "If someone can 'win' your challenge, you can optionally award that winner a Gem prize. Max = #gems you own (+ guild.gems, if you created this challenge's guild). Note: This prize can't be changed later.",
+ "prizePopTavern": "If someone can 'win' your challenge, you can optionally award that winner a Gem prize. Max = #gems you own (+ guild.gems, if you created this challenge's guild). Note: This prize can't be changed later and Tavern challenges will not be refunded if the challenge is cancelled.",
"publicChallenges": "Mindestens 1 Edelstein für öffentliche Wettbewerbe (Das verhindert Spam. Wirklich).",
"officialChallenge": "Offizieller HabitRPG Wettbewerb",
"by": "von",
@@ -43,6 +44,7 @@
"selectGroup": "Bitte wähle die Gruppe",
"challengeCreated": "Wettbewerb erstellt",
"sureDelCha": "Bist du sicher, dass Du den Wettbewerb löschen möchtest?",
+ "sureDelChaTavern": "Willst du die Challenge wirklich löschen? Deine Edelsteine werden dir nicht zurückerstattet.",
"removeTasks": "Aufgabe entfernen",
"keepTasks": "Aufgabe behalten",
"closeCha": "Wettbewerb auswählen und...",
diff --git a/common/locales/de/character.json b/common/locales/de/character.json
index 687d4e0f5a..342e395438 100644
--- a/common/locales/de/character.json
+++ b/common/locales/de/character.json
@@ -52,9 +52,11 @@
"costume": "Verkleidung",
"costumeText": "Wenn Du das Aussehen einer anderen Ausrüstung Deiner Kampfausrüstung vorziehst, dann klicke auf die \"Verkleidung tragen\" Box um über Deiner Kampfausrüstung andere Ausrüstungsgegenstände zu tragen.",
"useCostume": "Verkleidung tragen",
- "gearAchievement": "Du hast den \"Ultimative Ausrüstung\" Erfolg erlangt, indem du die beste Ausrüstung erworben hast.",
+ "gearAchievement": "You have earned the \"Ultimate Gear\" Achievement for upgrading to the maximum gear set for a class! You have attained the following complete sets:",
+ "moreGearAchievements": "To attain more Ultimate Gear badges, change classes on your stats page and buy up your new class's gear!",
+ "armoireUnlocked": "You've also unlocked the Enchanted Armoire! Click on the Enchanted Armoire Reward for a random chance at special Equipment! It may also give you random XP or food items.",
"ultimGearName": "Ultimative Ausrüstung",
- "ultimGearText": "Hat das beste Rüstungs- und Waffenset erworben.",
+ "ultimGearText": "Has upgraded to the maximum weapon and armor set for the following classes:",
"level": "Level",
"levelUp": "Aufgestiegen!",
"mana": "Mana",
@@ -70,6 +72,7 @@
"allocatePerPop": "Füge einen Punkt zu Warnehmung hinzu",
"allocateInt": "Intelligenzpunkte:",
"allocateIntPop": "Füge einen Punkt zu Intelligenz hinzu",
+ "noMoreAllocate": "Jetzt, da Du Level 100 erreicht hast, wirst Du keine weiteren Attributpunkte erhalten. Du kannst weiterspielen, oder ein neues Abenteuer auf Level 1 anfangen, indem du die Sphäre der Wiedergeburt benutzt. Sie ist jetzt kostenlos auf dem Marktplatz erhältich.",
"stats": "Werte",
"strength": "Stärke",
"strengthText": "Stärke erhöht die Wahrscheinlichkeit zufälliger kritischer Treffer und die Rate mit der durch sie Gold, Beute und Erfahrung gewonnen wird. Weiterhin erhöht sich der Schaden an Bossen.",
@@ -138,5 +141,6 @@
"displayNameDescription3": "und scrolle nach unten zum Registrations-Abschnitt, um deinen Login Namen zu ändern.",
"unequipBattleGear": "Kampfausrüstung ablegen",
"unequipCostume": "Kostüm ablegen",
- "unequipPetMountBackground": "Haustier, Reittier & Hintergrund zurücksetzen "
+ "unequipPetMountBackground": "Haustier, Reittier & Hintergrund zurücksetzen ",
+ "animalSkins": "Tierhäute"
}
\ No newline at end of file
diff --git a/common/locales/de/communityguidelines.json b/common/locales/de/communityguidelines.json
index 66e47df220..8435a6b9a3 100644
--- a/common/locales/de/communityguidelines.json
+++ b/common/locales/de/communityguidelines.json
@@ -173,5 +173,6 @@
"commGuideLink07": "Das Kunst Trello",
"commGuideLink07description": "um Pixelkunst einzureichen",
"commGuideLink08": "Das Quest-Trello",
- "commGuideLink08description": "um geschriebene Quests einzureichen"
+ "commGuideLink08description": "um geschriebene Quests einzureichen",
+ "lastUpdated": "Zuletzt aktualisiert"
}
\ No newline at end of file
diff --git a/common/locales/de/content.json b/common/locales/de/content.json
index 08b6ad2775..ba6a5a2fb7 100644
--- a/common/locales/de/content.json
+++ b/common/locales/de/content.json
@@ -1,6 +1,10 @@
{
"potionText": "Heiltrank",
"potionNotes": "Heilt um 15 Lebenspunkte (wird sofort angewendet)",
+ "armoireText": "Enchanted Armoire",
+ "armoireNotesFull": "Open the Armoire to randomly receive special Equipment, Experience, or food! Equipment pieces remaining:",
+ "armoireLastItem": "You've found the last piece of rare Equipment in the Enchanted Armoire.",
+ "armoireNotesEmpty": "The Armoire will have new Equipment every month. Until then, keep clicking for Experience and Food!",
"dropEggWolfText": "Wolf",
"dropEggWolfAdjective": "ergebener",
"dropEggTigerCubText": "Jungtiger",
@@ -54,8 +58,10 @@
"questEggRockAdjective": "lebendiger",
"questEggBunnyText": "Hase",
"questEggBunnyAdjective": "kuscheliger",
- "questEggSlimeText": "Marshmallow Slime",
- "questEggSlimeAdjective": "sweet",
+ "questEggSlimeText": "Marshmallow Schleim",
+ "questEggSlimeAdjective": "süß",
+ "questEggSheepText": "Schaf",
+ "questEggSheepAdjective": "wolliges",
"eggNotes": "Finde einen Schlüpftrank, den Du über dieses Ei gießen kannst, damit ein <%= eggAdjective(locale) %> <%= eggText(locale) %> schlüpfen wird.",
"hatchingPotionBase": "Normaler",
"hatchingPotionWhite": "Weißer",
diff --git a/common/locales/de/contrib.json b/common/locales/de/contrib.json
index ec7c800e31..a0dfc196d1 100644
--- a/common/locales/de/contrib.json
+++ b/common/locales/de/contrib.json
@@ -15,7 +15,7 @@
"guardianText": "Moderatoren werden sorgfältig aus den höheren Mitwirkenden Rängen ausgesucht, also bitte zeige ihnen gegenüber Respekt und höre auf ihre Vorschläge.",
"staff": "Mitarbeiter",
"heroic": "Heroisch",
- "heroicText": "Den Helden Rang tragen HabitRPG-Mitarbeitere und Mitwirkende auf Mitarbeiter-Level. Hast Du diesen Titel errungen, dann wurdest Du dazu berufen (oder von uns angestellt!).",
+ "heroicText": "Den Helden Rang tragen HabitRPG-Mitarbeiter und Mitwirkende auf Mitarbeiter-Level. Hast Du diesen Titel errungen, dann wurdest Du dazu berufen (oder von uns angestellt!).",
"npcText": "NPCs haben HabitRPG über Kickstarter mitfinanziert. Du kannst ihre Avatare sehen, wie sie über die Features des Spiels wachen.",
"modalContribAchievement": "Erfolg als Mitwirkender!",
"contribModal": "<%= name %>, Du bist fantastisch! Du hast den Rang <%= level %> Mitwirkender errungen, weil Du bei HabitRPG mithilfst. Sieh",
diff --git a/common/locales/de/front.json b/common/locales/de/front.json
index a289a9aded..345f1a69a2 100644
--- a/common/locales/de/front.json
+++ b/common/locales/de/front.json
@@ -1,19 +1,99 @@
{
- "titleFront": "HabitRPG | Meistere spielend dein Leben",
- "tagline": "Eine kostenlose gewohnheitsbildende App, die Dein Leben wie ein Spiel behandelt.",
- "landingp1": "Das Problem mit den meisten produktivitätsfördernden Apps auf dem Markt ist, dass sie keinen Anreiz geben sie längerzeitig zu verwenden. HabitRPG löst dieses Problem indem es das Bilden von Gewohnheiten mit Spaß verbindet! Indem es Euch für Erfolge belohnt und für Mißerfolge Lebenspunke kostet, bietet HabitRPG externe Motivation um Eure täglichen Aufgaben zu erfüllen.",
- "landingp2header": "Sofortige Belohnung",
- "landingp2": "Jedes Mal wenn Ihr eine gute Angewohnheit trainiert, eine tägliche Aufgabe erfüllt oder eine andere Aufgabe erfüllt, belohnt Euch HabitRPG sofort mit Erfahrungspunkten und Gold. Durch Erfahrungspunkte steigt Ihr im Level auf, verbessert Eure Charakterwerte und schaltet weitere Features frei wie Klassen und Haustiere. Gold kann für Spielgegenstände, die Eurem Charakter nützen ausgegeben werden, oder für persönliche Belohnungen, die Ihr zur Motivation erstellen könnt. Wenn auch der kleinste Erfolg Euch eine sofortige Belohnung verspricht, werdet Ihr Eure Aufgaben immer weniger aufschieben.",
- "landingp3header": "Konsequenzen",
- "landingp3": "Jedes Mal wenn Ihr einer schlechten Angewohnheit nachgebt oder Eure täglichen Aufgaben vernachlässigt verliert Ihr Lebenspunkte. Wenn Eure Lebenspunkte zu weit sinken, sterbt Ihr und verliert einen Teil Eures Fortschritts. Indem es Konsequenzen setzt kann HabitRPG dabei helfen schlechte Angewohnheiten und ständiges Hinausschieben zu beenden, bevor sie zu Problemen in Eurem Leben werden.",
- "landingp4header": "Verantwortung",
- "landingp4": "Mit einer lebendigen Community bietet HabitRPG die Verantwortung die Ihr braucht um auf Eure Aufgaben konzentriert zu bleiben. Mit dem Gruppensystem, könnt Ihr eine Gruppe Eurer besten Freunde zur Unterstützung rufen. Das Gildensystem erlaubt Euch Spieler mit ähnlichen Interessen oder Hindernissen zu finden, damit Ihr Eure Ziele gemeinsam erreichen und Tips, wie Ihr Eure Probleme angehen könnt, austauschen könnt. Auf HabitRPG steht die Community für die Unterstützung und die Verantwortung die Ihr braucht um Erfolg zu haben.",
+ "FAQ": "FAQ",
+ "accept1Terms": "Durch Klicken auf diesen Knopf, stimme ich den",
+ "accept2Terms": "zu, sowie der",
+ "alexandraQuote": "Ich konnte während meiner Rede in Madrid nicht NICHT über HabitRPG reden. Ein absolutes Must-have Hilfmittel für Freiberufler, die trotzdem einen Chef brauchen.",
+ "althaireQuote": "Kontinuierlich eine Quest zu haben, motiviert mich dazu alle meine täglichen und einmaligen Aufgaben zu erledigen. Meine größte Motivation ist, meine Gruppe nicht im Stich zu lassen.",
+ "andeeliaoQuote": "Großartiges Produkt, habe gerade erst vor einigen Tagen angefangen und gehe bereits bewusster und produktiv mit meiner Zeit um!",
+ "autumnesquirrelQuote": "Ich prokrastiniere weniger bei der Arbeit und zu Hause und zahle meine Rechnung rechtzeitig.",
+ "businessSample1": "1 Seite des Inventars überprüfen",
+ "businessSample2": "20 min Ablagen erledigen",
+ "businessSample3": "Sortieren und abarbeiten des Posteingangs",
+ "businessSample4": "Bereite 1 Dokument für den Kunden vor",
+ "businessSample5": "Kunden anrufen/Anrufe aufschieben",
+ "businessText": "HabitRPG auf der Arbeit benutzen",
+ "choreSample1": "Dreckige Klamotten in Wäschekorb stecken",
+ "choreSample2": "20 Minuten Hausarbeit",
+ "choreSample3": "Geschirr abspülen",
+ "choreSample4": "Einen Raum aufräumen ",
+ "choreSample5": "Geschirr abspülen und trocknen",
+ "chores": "Arbeiten im Haushalt",
+ "communityBug": "Bug mitteilen",
+ "communityExtensions": "Add-ons & Extensions",
+ "communityFacebook": "Facebook",
+ "communityFeature": "Nach Feature fragen",
+ "communityForum": "Forum",
+ "communityKickstarter": "Kickstarter",
+ "communityReddit": "Reddit",
+ "companyAbout": "Wie's funktioniert",
+ "companyBlog": "Blog",
+ "companyDonate": "Spenden",
+ "companyExtensions": "Extensions",
+ "companyPrivacy": "Datenschutz",
+ "companyTerms": "AGB",
+ "companyVideos": "Videos",
+ "contribUse": "HabitRPG Mitwirkende nutze ",
+ "dragonsilverQuote": "Ich habe unzählige Zeit- und Aufgabenerfassungssysteme ausprobiert… HRPG ist das einzige, das mir wirklich hilft Dinge zu erledigen, anstatt sie nur aufzuschreiben.",
+ "dreimQuote": "Als ich letzten Sommer HabitRPG entdeckte, war ich gerade durch die Hälfte meiner Prüfungen gefallen. Durch die täglichen Aufgaben konnte ich mich organisieren und zur Disziplin zwingen und tatsächlich habe ich letzten Monat alle Prüfungen mit echt guten Noten bestanden.",
+ "elmiQuote": "Jeden Morgen freue ich mich aufzustehen und etwas Gold zu verdienen!",
+ "email": "E-Mail",
+ "emailNewPass": "E-Mail neues Passwort",
+ "evagantzQuote": "Mein erster Zahnartztbesuch, bei dem die Assistentin begeistert über meine Zahnseide Gewohnheiten war. Danke HabitRPG!",
+ "examplesHeading": "Spieler benutzen HabitRPG, um folgendes zu organisieren...",
+ "featureAchievementByline": "Etwas total großartiges gemacht? Erhalte ein Abzeichen und prahle damit!",
+ "featureAchievementHeading": "Erfolgsabzeichen",
+ "featureEquipByline": "Kaufe Gegenstände in limitierter Auflage, Zaubertränke und andere virtuelle Leckerbissen auf unserem Marktplatz mit den Belohnungen für abgeschlossene Aufgaben!",
+ "featureEquipHeading": "Ausrüstung und Extras",
+ "featurePetByline": "Eier und Gegenstände erscheinen wenn du deine Aufgaben erfüllst. Sei so produktiv wie möglich, um Haus- und Reittiere zu sammeln!",
+ "featurePetHeading": "Haus- und Reittiere",
+ "featureSocialByline": "Tritt Interessensgemeinschaften bei und finde Gleichgesinnte. Erstelle Herausforderungen und tritt gegen andere an.",
+ "featureSocialHeading": "Gemeinsames Spielen",
+ "featuredIn": "Vorgestellt in",
+ "featuresHeading": "Weitere Funktionen …",
+ "footerCommunity": "Community",
+ "footerCompany": "Unternehmen",
+ "footerMobile": "Mobil",
+ "footerSocial": "Soziales",
+ "forgotPass": "Passwort vergessen",
+ "frabjabulousQuote": "HabitRPG ist der Grund weshalb ich einen tollen, gutbezahlten Job habe… und noch wunderbarer, ich benutze nun täglich Zahnseide!",
+ "free": "Umsonst spielen",
+ "gamifyButton": "Gestalte dein Leben spielerisch!",
+ "goalSample1": "1 Stunde Klavier üben",
+ "goalSample2": "An einem zu veröffentlichen Artikel arbeiten",
+ "goalSample3": "Einen Blogpost schreiben",
+ "goalSample4": "Japanischkurs auf Duolingo",
+ "goalSample5": "Einen informativen Zeitungsartikel lesen",
+ "goals": "Ziele",
+ "health": "Gesundheit",
+ "healthSample1": "Trinke Wasser/Soda",
+ "healthSample2": "Kaue Kaugummi/Rauchen",
+ "healthSample3": "Die Treppe/den Aufzug nehmen",
+ "healthSample4": "Esse gesund/Junkfood",
+ "healthSample5": "Für 1 Stunde ins Schwitzen kommen",
+ "history": "Verlauf",
+ "infhQuote": "HabitRPG hat mir geholfen Struktur in mein Leben an der Universität zu bringen.",
+ "invalidEmail": "Um das Passwort zurückzusetzen, ist eine gültige Email-Adresse notwendig.",
+ "irishfeet123Quote": "Ich hatte die schrecklichen Angewohnheiten, nach Mahlzeiten nicht aufzuräumen und Tassen in der ganzen Wohnung stehen zu lassen. HabitRPG hat das behoben.",
+ "joinOthers": "Schließe dich 200.000 Leuten an, die Spaß daran haben, ihre Ziele zu erreichen.",
+ "kazuiQuote": "Vor HabitRPG kam ich mit meiner Dissertation nicht weiter und war unzufrieden mit meiner persönlichen Disziplin bei Hausarbeiten und Dingen wie Vokabellernen und dem Studium der Go-Theorie. Es stellte sich heraus, dass das Aufteilen der Aufgaben in kleinere, machbare Checklisten etwas ist, das mich motiviert und zum konstanten Arbeiten anregt.",
+ "landingadminlink": "Verwaltungspakete",
"landingend": "Noch nicht überzeugt?",
"landingend2": "Hier ist eine genauere Liste",
- "landingfeatureslink": "unserer Features",
"landingend3": ". Sucht Ihr eine nichtöffentliche Variante? Versucht unsere",
- "landingadminlink": "Verwaltungspakete",
"landingend4": "die ideal sind für Familien, Lehrer, Selbsthilfegruppen und Gewerbe.",
+ "landingfeatureslink": "unserer Features",
+ "landingp1": "Das Problem mit den meisten produktivitätsfördernden Apps auf dem Markt ist, dass sie keinen Anreiz geben sie längerzeitig zu verwenden. HabitRPG löst dieses Problem indem es das Bilden von Gewohnheiten mit Spaß verbindet! Indem es Euch für Erfolge belohnt und für Mißerfolge Lebenspunke kostet, bietet HabitRPG externe Motivation um Eure täglichen Aufgaben zu erfüllen.",
+ "landingp2": "Jedes Mal wenn Ihr eine gute Angewohnheit trainiert, eine tägliche Aufgabe erfüllt oder eine andere Aufgabe erfüllt, belohnt Euch HabitRPG sofort mit Erfahrungspunkten und Gold. Durch Erfahrungspunkte steigt Ihr im Level auf, verbessert Eure Charakterwerte und schaltet weitere Features frei wie Klassen und Haustiere. Gold kann für Spielgegenstände, die Eurem Charakter nützen ausgegeben werden, oder für persönliche Belohnungen, die Ihr zur Motivation erstellen könnt. Wenn auch der kleinste Erfolg Euch eine sofortige Belohnung verspricht, werdet Ihr Eure Aufgaben immer weniger aufschieben.",
+ "landingp2header": "Sofortige Belohnung",
+ "landingp3": "Jedes Mal wenn Ihr einer schlechten Angewohnheit nachgebt oder Eure täglichen Aufgaben vernachlässigt verliert Ihr Lebenspunkte. Wenn Eure Lebenspunkte zu weit sinken, sterbt Ihr und verliert einen Teil Eures Fortschritts. Indem es Konsequenzen setzt kann HabitRPG dabei helfen schlechte Angewohnheiten und ständiges Hinausschieben zu beenden, bevor sie zu Problemen in Eurem Leben werden.",
+ "landingp3header": "Konsequenzen",
+ "landingp4": "Mit einer lebendigen Community bietet HabitRPG die Verantwortung die Ihr braucht um auf Eure Aufgaben konzentriert zu bleiben. Mit dem Gruppensystem, könnt Ihr eine Gruppe Eurer besten Freunde zur Unterstützung rufen. Das Gildensystem erlaubt Euch Spieler mit ähnlichen Interessen oder Hindernissen zu finden, damit Ihr Eure Ziele gemeinsam erreichen und Tips, wie Ihr Eure Probleme angehen könnt, austauschen könnt. Auf HabitRPG steht die Community für die Unterstützung und die Verantwortung die Ihr braucht um Erfolg zu haben.",
+ "landingp4header": "Verantwortung",
+ "leadText": "HabitRPG ist eine kostenlose Anwendung zur Gewohnheitsbildung und Steigerung der Produktivität, die dein Leben wie ein Spiel betrachtet. Mit Belohnungen und Bestafungen als Motivation und einem starken sozialem Netzwerk als Inspiration, kann HabitRPG dir helfen deine Ziele zu erreichen und ein gesunder, fleißiger und glücklicher Mensch zu werden.",
+ "login": "Einloggen",
+ "loginAndReg": "Einloggen / Registrieren",
+ "loginFacebookAlt": "Einloggen / Registrieren mit Facebook",
+ "logout": "Ausloggen",
"marketing1Header": "Verbessern Sie Ihre Lebensführung Durch Ein Spiel",
"marketing1Lead1": "HabitRPG ist ein Videospiel, welches Dir dabei hilft Deine Gewohnheiten im realen Leben zu verbessern. Es \"gamifiziert\" Dein Leben indem es all Deine Aufgaben (Gewohnheiten, tägliche Aufgaben und einmalige Aufgaben) in kleine Monster verwandelt, die Du besiegen musst. Je besser Du Dich dabei anstellst, umso weiter kommst Du im Spiel. Wenn Du in Deinem realen Leben nachlässt, beginnt Dein Charakter im Spiel zurückzufallen.",
"marketing1Lead2": "Bekomme coole Ausrüstung. Verbessere deine Gewohnheiten um Deinen Avatar auszustatten. Zeige Deine coole Ausrüstung die Du verdient hast.",
@@ -26,71 +106,77 @@
"marketing2Lead2Title": "Bosse",
"marketing2Lead3": "In Wettbewerben kannst Du gegen Freunde und Unbekannte antreten. Wer am besten ist, gewinnt am Ende eines Wettbewerbs spezielle Preise.",
"marketing3Header": "Apps",
- "marketing3Lead1Title": "iPhone & Android",
"marketing3Lead1": "Die iPhone & Android Apps erlauben Dir Aufgaben unterwegs abzuhaken. Es ist uns klar, dass es lästig sein kann, sich immer auf der Seite einloggen zu müssen.",
"marketing3Lead2": "Andere Werkzeuge von Drittanbietern binden HabitRPG an verschiedene Aspekte Deines Lebens. Unsere API stellt eine einfache Einbindung in Dinge wie die Chrome Erweiterung zur Verfügung, die Dir Punkte abzieht, wenn Du auf unproduktiven Websites surfst und Dir welche einbringt, wenn du auf produktiven Seiten unterwegs bist. Mehr dazu hier",
"marketing4Header": "Verwendung zur Organisation",
- "marketing4Lead1Title": "Betrachtungwinkel Ausbildung",
"marketing4Lead1": "Bildung ist einer der besten Bereiche zur Gamifizierung. Wir alle wissen wie heutzutage die Studierenden an ihren Handys und Spielen kleben. Nutze diese Macht! Lass Deine Studierenden in freundlichen Wettkämpfen gegeneinander antreten. Belohne gutes Verhalten mit seltenen Preisen. Beobachte, wie sich ihre Noten und ihr Verhalten verbessern.",
- "marketing4Lead2Title": "Betrachtungswinkel Gesundheit und Erholung",
+ "marketing4Lead1Title": "Betrachtungwinkel Ausbildung",
"marketing4Lead2": "Die Kosten für medizinische Versorgung steigen und irgendjemand muss sie tragen. Zahlreiche Pläne wurden entwickelt um Kosten zu reduzieren und das Wohlbefinden zu verbessern. Wir glauben, dass HabitRPG einen wesentlichen Beitrag zu gesünderen Lebensstilen leisten kann.",
- "marketing4Lead3Title": "Mache Alles zum Spiel",
+ "marketing4Lead2Title": "Betrachtungswinkel Gesundheit und Erholung",
"marketing4Lead3-1": "Wollen Sie ihr Leben einmal als Spiel betrachten?",
"marketing4Lead3-2": "Wollen Sie eine Gruppe für Ausbildung, Erholung etc. leiten?",
"marketing4Lead3-3": "Wollen Sie mehr wissen?",
- "playButton": "Spielen",
- "username": "Benutzername",
- "password": "Passwort",
- "useUUID": "Benutze UUID / API Token (Für Facebook Benutzer)",
- "passMan": "Falls Du einen Passwort-Manager verwendest (wie 1Password) und Probleme hast Dich einzuloggen, versuche Deinen Benutzernamen und Dein Passwort manuell einzugeben.",
- "forgotPass": "Passwort vergessen",
- "emailNewPass": "E-Mail neues Passwort",
- "invalidEmail": "Um das Passwort zurückzusetzen, ist eine gültige Email-Adresse notwendig.",
- "email": "E-Mail",
- "passConfirm": "Passwort bestätigen",
- "accept1Terms": "Durch Klicken auf diesen Knopf, stimme ich den",
- "terms": "AGB",
- "accept2Terms": "zu, sowie der",
- "privacy": "Datenschutzrichtlinie",
- "home": "Startseite",
- "learnMore": "Erfahre mehr",
- "contact": "Kontakt",
- "history": "Verlauf",
- "anonymous": "Anonyme",
- "tasks": "Aufgaben",
- "loginAndReg": "Einloggen / Registrieren",
- "loginFacebookAlt": "Einloggen / Registrieren mit Facebook",
- "login": "Einloggen",
- "register": "Registrieren",
- "options": "Optionen",
- "logout": "Ausloggen",
- "sync": "Synchronisieren",
- "FAQ": "FAQ",
- "tutorials": "Anleitungen",
- "psst": "Psst",
- "footerMobile": "Mobil",
- "mobileIOS": "iOS",
+ "marketing4Lead3Title": "Mache Alles zum Spiel",
"mobileAndroid": "Android",
- "footerCompany": "Unternehmen",
- "companyDonate": "Spenden",
- "companyAbout": "Wie's funktioniert",
- "companyVideos": "Videos",
- "companyBlog": "Blog",
- "companyExtensions": "Extensions",
- "companyPrivacy": "Datenschutz",
- "companyTerms": "AGB",
- "footerCommunity": "Community",
- "communityBug": "Bug mitteilen",
- "communityFeature": "Nach Feature fragen",
- "communityExtensions": "Add-ons & Extensions",
- "communityForum": "Forum",
- "communityKickstarter": "Kickstarter",
- "communityFacebook": "Facebook",
- "communityReddit": "Reddit",
- "footerSocial": "Soziales",
- "socialTitle": "HabitRPG - Spiele dein Leben",
- "watchVideos": "Sehen Sie sich die Videos an",
+ "mobileIOS": "iOS",
+ "motivate": "Motiviere dich und dein Team!",
+ "motivate1": "Motiviere dich, alles Mögliche zu tun.",
+ "motivate2": "Werde organisiert. Motiviere dich. Verdiene Gold.",
+ "passConfirm": "Passwort bestätigen",
+ "passMan": "Falls Du einen Passwort-Manager verwendest (wie 1Password) und Probleme hast Dich einzuloggen, versuche Deinen Benutzernamen und Dein Passwort manuell einzugeben.",
+ "password": "Passwort",
+ "playButton": "Spielen",
+ "playButtonFull": "Spiele HabitPRG",
"presskit": "Pressemappe",
+ "presskitDownload": "Alle Bilder herunterladen:",
"presskitText": "Danke für euer Interesse an HabitRPG! Die folgenden Bilder können für Artikel oder Videos über HabitRPG verwendet werden. Für weitere Informationen kontaktiert bitte Siena Leslie unter leslie@habitrpg.com.",
- "presskitDownload": "Alle Bilder herunterladen:"
+ "privacy": "Datenschutzrichtlinie",
+ "psst": "Psst",
+ "punishByline": "Überwinde schlechte Gewohnheiten und das Aufschieben von Aufgaben durch direkte Konsequenzen.",
+ "punishHeading1": "Eine tägliche Aufgabe verfehlt?",
+ "punishHeading2": "Gesundheit verloren!",
+ "questByline1": "Durch das gemeinsame Spielen trägst du die Verantwortung für deine Aufgaben.",
+ "questByline2": "Stellt euch gegenseitig Herausforderungen und meistert das Ziel gemeinsam!",
+ "questHeading1": "Besiege Monster mit deinen Freunden!",
+ "questHeading2": "Falls du faulenzt, schadet das allen!",
+ "register": "Registrieren",
+ "rewardByline1": "Kaufe mit dem Gold virtuelle und reale Belohnungen.",
+ "rewardByline2": "Sofortige Belohnungen halten dich bei Laune!",
+ "rewardHeading": "Erfülle eine Aufgabe, um Gold zu verdienen!",
+ "sampleDailies": "Musteraufgaben",
+ "sampleHabits": "Beispielgewohnheiten",
+ "sampleToDo": "Beispielaufgaben",
+ "school": "Schule",
+ "schoolSample1": "1 Aufgabe erfüllen",
+ "schoolSample2": "1 Stunde lernen",
+ "schoolSample3": "Treffen mit der Lerngruppe",
+ "schoolSample4": "Notizen für 1 Kapitel machen",
+ "schoolSample5": "1 Kapitel lesen",
+ "sixteenBitFilQuote": "Dank HabitRPG erledige ich meine Arbeit in Rekordzeit. Ich kann es kaum erwarten das nächste Level zu erreichen!",
+ "skysailorQuote": "Meine Gruppe und unsere Quests halten mich im Spiel, was mich motiviert Dinge zu erledigen und mein Leben auf eine positive Art zu verändern.",
+ "socialTitle": "HabitRPG - Spiele dein Leben",
+ "supermouse35Quote": "Ich trainiere mehr und habe meine Medikamente seit Monaten nicht vergessen. Danke Habit. :D",
+ "sync": "Synchronisieren",
+ "tasks": "Aufgaben",
+ "teamSample1": "Besprechung für Dienstag vorbereiten",
+ "teamSample2": "Gedanken zur Marketingstrategie machen",
+ "teamSample3": "Leistungskennzahlen der Woche diskutieren",
+ "teams": "Teams",
+ "terms": "AGB",
+ "testimonialHeading": "Was andere sagen…",
+ "tutorials": "Anleitungen",
+ "unlockByline1": "Erreiche deine Ziele und steige Level auf.",
+ "unlockByline2": "Schalte neue, motivierende Werkzeuge frei, wie zum Beispiel Haustiere, zufällige Belohnungen, Zaubersprüche und mehr!",
+ "unlockHeadline": "Je mehr du tust, desto mehr neue Inhalte kannst du freigeschalten!",
+ "useUUID": "Benutze UUID / API Token (Für Facebook Benutzer)",
+ "username": "Benutzername",
+ "watchVideos": "Sehen Sie sich die Videos an",
+ "work": "Arbeit",
+ "zelahQuote": "Dadurch, dass ich Punkte bekomme, wenn ich früh ins Bett gehe und Schaden nehme, wenn ich erst spät ins Bett gehe, habe ich es mit HabitRPG geschafft, mir frühe Bettzeiten anzugewöhnen.",
+ "reportAccountProblems": "Melde Probleme mit deinem Konto",
+ "reportCommunityIssues": "Melde Community-Probleme",
+ "generalQuestionsSite": "Generelle Fragen über die Webseite.",
+ "businessInquiries": "Geschäftsanfragen.",
+ "merchandiseInquiries": "Anfragen zu Handelswaren und Vermarktung",
+ "marketingInquiries": "Marketing-/Soziale Netzwerke Anfragen"
}
\ No newline at end of file
diff --git a/common/locales/de/gear.json b/common/locales/de/gear.json
index 9b78f0b33d..5b9eebf81d 100644
--- a/common/locales/de/gear.json
+++ b/common/locales/de/gear.json
@@ -25,7 +25,7 @@
"weaponRogue3Text": "Khukuri",
"weaponRogue3Notes": "Ein bekanntes Buschmesser. Sowohl Überlebenswerkzeug als auch Waffe. Erhöht Stärke um <%= str %>.",
"weaponRogue4Text": "Nunchaku",
- "weaponRogue4Notes": "Schwere Stöcke die mit einer Kette verbunden sind. Erhöht Stärke um <%= str %>.",
+ "weaponRogue4Notes": "Schwere Stöcke, die mit einer Kette verbunden sind. Erhöht Stärke um <%= str %>.",
"weaponRogue5Text": "Ninjato",
"weaponRogue5Notes": "Filigran und tödlich wie die Ninjas selbst. Erhöht Stärke um <%= str %>.",
"weaponRogue6Text": "Hakenschwert",
@@ -120,6 +120,8 @@
"weaponMystery201411Notes": "Ersteche deine Feinde oder verschling dein Lieblingsessen - diese flexible Forke ist universell einsetzbar! Gewährt keinen Bonus. November 2014 Abonnenten-Gegenstand.",
"weaponMystery201502Text": "Schimmernder Flügelstab der Liebe und auch der Wahrheit",
"weaponMystery201502Notes": "Für FLÜGEL! Für die LIEBE! Und AUCH für die WAHRHEIT! Gewährt keinen Bonus. Februar 2015 Abonnentengegenstand.",
+ "weaponMystery201505Text": "Grüne Ritterlanze",
+ "weaponMystery201505Notes": "This green and silver lance has unseated many opponents from their mounts. Confers no benefit. May 2015 Subscriber Item.",
"weaponMystery301404Text": "Steampunk Spazierstock",
"weaponMystery301404Notes": "Perfekt, um gemütlich durch die Stadt zu spazieren. März 3015 Abonnenten-Gegenstand. Gewährt keinen Bonus.",
"armor": "Rüstung",
@@ -247,6 +249,8 @@
"armorMystery201501Notes": "Du siehst Galaxien im Metall dieser Rüstung schimmern, die dem Träger der Rüstung eine unerschütterliche Entschlossenheit schenken.\nDiese Rüstung gibt keinen Attributbonus. Januar 2015 Abonnenten Gegenstand.",
"armorMystery201503Text": "Aquamarinblaue Rüstung",
"armorMystery201503Notes": "Dieses blaue Mineral symbolisiert Glück, Fröhlichkeit und endlose Produktivität. Gewährt keinen Attributbonus. März 2015 Abonnentengegenstand.",
+ "armorMystery201504Text": "Bienen Robe",
+ "armorMystery201504Notes": "In dieser Robe wirst Du fleißig sein wie eine Biene! Verleiht keine Attributboni. April 2015 Abonnentengegenstand.",
"armorMystery301404Text": "Steampunkanzug",
"armorMystery301404Notes": "Adrett und schneidig, hoho! Februar 3015 Abonennten-Gegenstand. Kein Attributbonus.",
"headgear": "Kopfschutz",
@@ -368,6 +372,8 @@
"headMystery201412Notes": "Wer ist der Pinguin? Kein Attributbonus. Dezember 2014 Abonnenten-Gegenstand.",
"headMystery201501Text": "Sternenhelm",
"headMystery201501Notes": "Die Konstellationen der Sterne funkeln in diesem Helm, und verleihen den Träger die Konzentration, seine Aufgaben zu erfüllen.\nDieser Helm gibt keinen Statuspunktebonus. Januar 2015 Abonnenten Gegenstand.",
+ "headMystery201505Text": "Grüner Ritterhelm",
+ "headMystery201505Notes": "The green plume on this iron helm waves proudly. Confers no benefit. May 2015 Subscriber Item.",
"headMystery301404Text": "Schicker Zylinder",
"headMystery301404Notes": "Ein schicker Zylinder für die feinsten Gentlemänner und -frauen! Januar 3015 Abonennten-Gegenstand. Kein Attributbonus. ",
"headMystery301405Text": "Einfacher Zylinder",
@@ -445,6 +451,8 @@
"backMystery201404Notes": "Sei ein Schmetterling und schmettere mit deinen Flügeln davon! Kein Attributbonus. April 2014 Abonennten-Gegenstand.",
"backMystery201410Text": "Kobold Flügel",
"backMystery201410Notes": "Fliege mit diesen kräftigen Flügeln im Sturzflug durch die Nacht. Kein Attributbonus. Oktober 2014 Abonennten-Gegenstand.",
+ "backMystery201504Text": "Bienen Flügel",
+ "backMystery201504Notes": "Summ summ summ! Schwirre von Aufgabe zu Aufgabe. Verleiht keine Attributboni. April 2015 Abonnentengegenstand.",
"backSpecialWonderconRedText": "Mächtiger Umhang",
"backSpecialWonderconRedNotes": "Strotzt vor Stärke und Schönheit. Kein Attributbonus. Special Edition Convention-Gegenstand.",
"backSpecialWonderconBlackText": "Tückischer Umhang",
@@ -462,6 +470,8 @@
"bodySpecialSummerHealerText": "Korallenkragen",
"bodySpecialSummerHealerNotes": "Limited Edition 2014 Sommer-Set. Ein stylischer Kragen aus lebendigen Korallen! Gewährt keinen Bonus zu Attributen.",
"headAccessory": "Kopfschmuck",
+ "accessories": "Accessoires ",
+ "animalEars": "Tierohren",
"headAccessoryBase0Text": "Kein Kopfschmuck",
"headAccessoryBase0Notes": "Kein Kopfschmuck",
"headAccessorySpecialSpringRogueText": "Lila Katzenohren",
@@ -480,6 +490,22 @@
"headAccessorySpecialSpring2015MageNotes": "Diese Ohren lauschen eifrig, falls irgendwo ein Magier Geheimnisse offenbart. Kein Attributbonus. Limited Edition 2015 Frühlingsausrüstung.",
"headAccessorySpecialSpring2015HealerText": "Grüne Kätzchenohren",
"headAccessorySpecialSpring2015HealerNotes": "Diese süßen Kätzchenohren machen andere grün vor Neid. Kein Attributbonus. Limited Edition 2015 Frühlingsausrüstung.",
+ "headAccessoryBearEarsText": "Bärchenohren",
+ "headAccessoryBearEarsNotes": "Diese Ohren verleihen dir das Aussehen eines knuffigen Bärchens! Gewährt keinen Attributbonus.",
+ "headAccessoryCactusEarsText": "Kaktusohren",
+ "headAccessoryCactusEarsNotes": "Diese Ohren verleihen Dir das Aussehen eines stacheligen Kaktus! Gewährt keinen Attributbonus.",
+ "headAccessoryFoxEarsText": "Fuchsohren",
+ "headAccessoryFoxEarsNotes": "Diese Ohren verleihen dir das Aussehen eines listigen Fuchses! Gewährt keinen Attributbonus.",
+ "headAccessoryLionEarsText": "Löwenohren",
+ "headAccessoryLionEarsNotes": "Diese Ohren verleihen dir das Aussehen eines königlichen Löwen! Gewährt keinen Attributbonus.",
+ "headAccessoryPandaEarsText": "Pandaohren",
+ "headAccessoryPandaEarsNotes": "Diese Ohren verleihen dir das Aussehen eines sanftmütigen Pandas! Gewährt keinen Attributbonus.",
+ "headAccessoryPigEarsText": "Schweinchenohren",
+ "headAccessoryPigEarsNotes": "Diese Ohren verleihen dir das Aussehen eines drolligen Schweinchens! Gewährt keinen Attributbonus.",
+ "headAccessoryTigerEarsText": "Tigerohren",
+ "headAccessoryTigerEarsNotes": "Diese Ohren verleihen dir das Aussehen eines wilden Tigers! Gewährt keinen Attributbonus.",
+ "headAccessoryWolfEarsText": "Wolfsohren",
+ "headAccessoryWolfEarsNotes": "Diese Ohren verleihen dir das Aussehen eines loyalen Wolfes! Gewährt keinen Attributbonus.",
"headAccessoryMystery201403Text": "Waldwanderergeweih",
"headAccessoryMystery201403Notes": "Diese Geweihe schimmern in Moos und Flechten. Kein Attributbonus. März 2014 Abonennten-Gegenstand.",
"headAccessoryMystery201404Text": "Schmetterlingsfühler des Zwielichts",
diff --git a/common/locales/de/generic.json b/common/locales/de/generic.json
index 4c9e411f37..2009f25d29 100644
--- a/common/locales/de/generic.json
+++ b/common/locales/de/generic.json
@@ -5,7 +5,20 @@
"habitica": "Habitica",
"expandToolbar": "Werkzeugleiste erweitern",
"collapseToolbar": "Werkzeugleiste minimieren",
- "formattingMarkdown": "Markdown Formatierung erlaubt",
+ "markdownBlurb": "HabitRPG nutzt Markdown für das Formatieren von Text. Siehe das Markdown Cheat Sheet für weitere Informationen.",
+ "showFormattingHelp": "Formatierungshilfe anzeigen",
+ "hideFormattingHelp": "Formatierungshilfe verbergen",
+ "youType": "Du schreibst:",
+ "youSee": "Du siehst:",
+ "italics": "*Kursiv*",
+ "bold": "**Fett**",
+ "strikethrough": "~~Durchgestrichen~~",
+ "emojiExample": ":smile:",
+ "markdownLinkEx": "[HabitRPG ist toll!](https://habitrpg.com)",
+ "markdownImageEx": "",
+ "unorderedListHTML": "+ Erster Gegenstand
+ Zweiter Gegenstand
+ Dritter Gegenstand",
+ "unorderedListMarkdown": "+ Erster Gegenstand\n+ Zweiter Gegenstand\n+ Dritter Gegenstand",
+ "code": "`Code`",
"achievements": "Erfolge",
"modalAchievement": "Erfolg!",
"special": "Spezial",
diff --git a/common/locales/de/groups.json b/common/locales/de/groups.json
index b4db38b3e0..8ec9715572 100644
--- a/common/locales/de/groups.json
+++ b/common/locales/de/groups.json
@@ -2,7 +2,7 @@
"tavern": "Gasthaus",
"innCheckOut": "Das Gasthaus verlassen",
"innCheckIn": "Im Gasthaus erholen",
- "innText": "Wie gefällt es Dir im Gasthaus, <%= name %>? Damit Du geschützt bist, ist die Liste Deiner täglichen Aufgaben eingefroren, solange du hier bist. Ob Aufgaben abgehakt wurden, wird bis morgen (den Tag nachdem du ausgecheckt hast) nicht verarbeitet oder zurückgesetzt. Aber Achtung, wenn sich Deine Gruppe gerade in einem Kampf gegen einen Boss befindet, erhältst Du weiterhin Schaden für die Fehler der Gruppe! Außerdem fügst Du dem Boss keinen Schaden zu. Bereit, wieder aufzubrechen? Klicke auf \"Das Gasthaus verlassen\".",
+ "innText": "Du erholst dich im Gasthaus! Während du dort verweilst, werden dir deine täglichen Aufgaben keinen Schaden zufügen, aber trotzdem täglich aktualisiert werden. Vorsicht: Wenn du an einem Bosskampf teilnimmst, erhältst du weiterhin Schaden für die verpassten Aufgaben deiner Gruppenmitglieder, sofern sich diese nicht auch im Gasthaus befinden! Außerdem wird der Schaden, den Du dem Boss zufügst, (und gefundene Gegenstände) erst angewendet, wenn du das Gasthaus verlässt.",
"lfgPosts": "Nach Gruppeneinträgen suchen",
"tutorial": "Anleitung",
"glossary": "Nomenklatur",
@@ -96,5 +96,25 @@
"abuseReported": "Danke, dass Du diesen Verstoß gemeldet hast. Die Moderatoren wurden benachrichtigt.",
"abuseAlreadyReported": "Du hast diese Nachricht bereits gemeldet.",
"needsText": "Bitte gib eine Nachricht ein.",
- "needsTextPlaceholder": "Gib Deine Nachricht hier ein."
+ "needsTextPlaceholder": "Gib Deine Nachricht hier ein.",
+ "copyMessageAsToDo": "Nachricht als To-Do übernehmen",
+ "messageAddedAsToDo": "Nachricht als To-Do übernommen.",
+ "messageWroteIn": "<%= user %> schrieb in <%= group %>",
+ "msgPreviewHeading": "Nachrichtenvorschau",
+ "leaderOnlyChallenges": "Nur der Gruppenleiter kann Wettbewerbe erstellen",
+ "sendGift": "Geschenk schicken",
+ "inviteFriends": "Lade Freunde ein",
+ "inviteAlertInfo": "Lade hier Freunde mit Benutzer ID ein.",
+ "inviteExistUser": "Lade existierenden Nutzer ein",
+ "inviteByEmail": "Lade Freunde per Email ein. Falls sie über deine Email beitreten, werden sie automatisch dieser Gruppe hinzugefügt.",
+ "byColon": "Von:",
+ "inviteNewUsers": "Lade neue(n) Benutzer ein.",
+ "inviteAlertInfo2": "Oder teile diesen Link (kopieren/einfügen):",
+ "sendGiftHeading": "Sende Geschenk an <%= name %>",
+ "sendGiftGemsBalance": "Von <%= number %> Edelsteinen",
+ "sendGiftCost": "Insgesamt: $<%= cost %> USD",
+ "sendGiftFromBalance": "Vom Saldo",
+ "sendGiftPurchase": "Kauf",
+ "sendGiftMessagePlaceholder": "Persönliche Nachricht (optional)",
+ "sendGiftSubscription": "<%= months %> Monat(e): $<%= price %>"
}
\ No newline at end of file
diff --git a/common/locales/de/npc.json b/common/locales/de/npc.json
index 42f524f8d3..0dacd7dd25 100644
--- a/common/locales/de/npc.json
+++ b/common/locales/de/npc.json
@@ -2,11 +2,11 @@
"npc": "NPC",
"npcText": "Hat die Kickstarter Kampagne auf dem höchsten Level mitgetragen!",
"mattBoch": "Matt Boch",
- "mattShall": "Soll ich Dir Dein Ross bringen, <%= name %>? Klicke auf ein Reittier um aufzusteigen.",
- "mattBochText1": "Wilkommen in den Ställen! Ich bin Matt, der Meister aller Bestien. Wähle hier ein Haustier aus damit es Dir treu zur Seite steht. Füttere sie und sie werden zu mächtigen Rössern heranwachsen.",
+ "mattShall": "Soll ich Dir Dein Ross bringen, <%= name %>? Sobald Du einem Haustier so viel Futter gegeben hast, dass es zu einem Reittier werden konnte, wird es hier erscheinen. Klicke auf ein Reittier um aufzusteigen!",
+ "mattBochText1": "Willkommen im Stall! Ich bin Matt, der Bestienmeister. Ab Level 4 kannst Du mit Hilfe von Eiern und Tränken Haustieren ausbrüten. Wenn Du auf dem Marktplatz ein Haustier schlüpfen lässt, wird es hier erscheinen! Klicke auf das Haustier, um es Deinem Avatar hinzuzufügen. Füttere Deine Tiere mit dem Futter, welches Du ab Level 4 findest, damit sie zu mächtigen Reittieren heranwachsen. ",
"daniel": "Daniel",
- "danielText": "Wilkommen im Gasthaus! Bleib ein bisschen und lerne die Einheimischen kennen. Wenn Du Dich ausruhen musst (Urlaub? Krankheit?), werde ich Dir ein Zimmer suchen. Während Du eingecheckt bist, bleiben deine täglichen Aufgaben so eingefrogen wie sie sind (abgehakt/nicht abgehakt) bis einen Tag nachdem du das Gasthaus wieder verlassen hast. Diese Aufgaben fügen Dir keinen Schaden zu, wenn du sie am Ende des Tages nicht abhakst.",
- "danielText2": "Vorsicht: Wenn Du an einer Boss-Quest teilnimmst, wird der Boss Dir weiterhin Schaden für die verpassten täglichen Aufgaben Deiner Gruppenmitglieder zufügen! ",
+ "danielText": "Willkommen im Gasthaus! Setz Dich und triff die Einheimischen. Willst Du dich ausruhen (Urlaub? Krankheit?), dann besorge ich Dir ein schönes Zimmer. Solange Du dort eingecheckt bist, werden Deine täglichen Aufgaben Dir am Ende des Tages keinen Schaden zufügen, aber Du kannst sie trotzdem abhaken.",
+ "danielText2": "Sei gewarnt: Falls Du an einem Boss-Quest teilnimmst, wird Dir der Boss immer noch Schaden für die nicht abgehakten Aufgaben Deiner Gruppenmitglieder zufügen! Außerdem wird der Schaden, den Du dem Boss zufügst (sowie gefundene Gegenstände) erst angewendet, wenn Du das Gasthaus verlässt.",
"alexander": "Alexander der Händler",
"welcomeMarket": "Willkommen auf dem Marktplatz! Kaufe schwer zu findende Eier und Tränke! Verkaufe Überflüssiges! Gib' wichtige Dienste in Auftrag! Komm' und schau', was wir anzubieten haben.",
"sellForGold": "Verkaufe <%= item %> für <%= gold %> Gold",
@@ -45,9 +45,9 @@
"tourScrollDown": "Gehe sicher, dass Du auch ganz nach unten scrollst um alle Optionen zu sehen! Klicke erneut auf Deinen Avatar um zur Aufgabenseite zurückzukehren. ",
"tourMuchMore": "Wenn Du Aufgaben erledigt hast, kannst Du mit Freunden eine Gruppe gründen, Dich in den Gilden nach Gespräche über verschiedene Themen umsehen, Wettbewerben beitreten und vieles mehr!",
"tourStatsPage": "Auf dieser Seite kannst Du Deine Statuswerte im Auge behalten. Erreiche neue Erfolge indem Du die aufgelisteten Aufgaben erledigst.",
- "tourTavernPage": "Willkommen in der Taverne, hier kannst Du Dich mit Habiticanern aus ganz Habitica unterhalten. Sie ist für alle Habitianer, allen Alters offen. Falls Du krank oder in Urlaub bist, kannst Du hier Deine Gewohnheiten vorübergehend einfrieren und Dir eine Auszeit gönnen, indem Du auf \"Im Gasthaus erholen\" klickst.",
+ "tourTavernPage": "Willkommen in der Taverne, ein Chatroom für Habiticaner aller Altersgruppen! Falls Du krank oder im Urlaub bist, kannst Du hier verhindern, dass Deine täglichen Aufgaben Dir Schaden zufügen, indem Du auf \"Im Gasthaus erholen\" klickst. Komm rein und sag Hallo! ",
"tourPartyPage": "Deine Gruppe wird Dir dabei helfen weiterhin verantwortungsbewusst Deine Aufgaben zu erledigen. Lade Freunde ein um neue Quest Rollen freizuschalten!",
"tourGuildsPage": "Gilden sind Gruppen mit gemeinsamen Interessen. Suche nach Begriffen, die Dich interessieren! Wir empfehlen die \"Gilde für Neuankömmlinge\" (Newbies Guild).",
- "tourChallengesPage": "Wenn Du einer Herausforderung beitrittst, erscheinen neue Aufgaben in Deinem Aufgabenmenü. Messe Dich mit andere Spieler und gewinne Edelsteine!",
+ "tourChallengesPage": "Wettbewerbe sind Aufgabenlisten mit bestimmten Themen, die von Benutzern erstellt wurden. Wenn Du einem Wettbewerb beitrittst, werden seine Aufgaben deinem Aufgabenmenü hinzugefügt. Messe Dich mit anderen Spielern und gewinne Edelsteine! ",
"tourMarketPage": "Sobald Du Level 4 erreichst, erhältst Du manchmal als zufällige Belohnung für erledigte Aufgaben Eier und Schlüpftränke. Diese erscheinen hier - nutze sie um Haustiere auszubrüten. Du kannst außerdem Gegenstände vom Marktplatz kaufen."
}
\ No newline at end of file
diff --git a/common/locales/de/quests.json b/common/locales/de/quests.json
index c5229ea425..f68b764f14 100644
--- a/common/locales/de/quests.json
+++ b/common/locales/de/quests.json
@@ -6,6 +6,8 @@
"questSend": "Indem Du auf \"Einladen\" klickst, sendest Du eine Einladung an Deine Gruppenmitglieder. Wenn alle Mitglieder angenommen oder abgelehnt haben beginnt das Quest. Statusabfrage unter Optionen > Soziales > Gruppe.",
"inviteParty": "Gruppe einladen",
"questInvitation": "Quest Einladung:",
+ "questInvitationTitle": "Quest-Einladung",
+ "questInvitationInfo": "Einladung zu der Quest <%= quest %>",
"askLater": "Später fragen",
"buyQuest": "Quest kaufen",
"accepted": "Angenommen",
@@ -17,7 +19,7 @@
"bossStrength": "Boss Stärke",
"collect": "Sammle ein",
"collected": "Gesammelt",
- "bossDmg1": "Um ein Bossmonster zu schwächen, musst Du Deine täglichen und einmaligen Aufgaben abhaken. Ein höherer Aufgaben Schaden führt zu höherem Bossschaden (rote Aufgaben abhaken, Zaubersprüche, Spezialattacken, usw.). Das Bossmonster fügt, zuzüglich Deinem normalen Schaden, jedem Teilnehmer des Quests Schaden für jede tägliche Aufgabe, die Du nicht abgehakt hast, zu (der Schaden wird mit der Stärke des Bossmonsters multipliziert). Also beschütze Deine Gruppe indem Du Deine täglichen Aufgaben erledigst! Der Schaden den Du dem Bossmonster zufügst und den Deine Gruppe erhält, wird in der Chronik festgehalten (dort kannst Du den täglichen Fortschritt überprüfen).",
+ "bossDmg1": "Jede erledigte tägliche Aufgabe und Aufgabe und jede positive Gewohnheit fügt dem Boss Schaden zu. Mit roteren Aufgaben, Gewaltschlag oder Flammenstoß kannst du ihm noch stärkeren Schaden zufügen. Für jede tägliche Aufgabe, die du nicht erledigt hast, wird der Boss jedem Teilnehmer der Quest Schaden zufügen (multipliziert mit der Stärke des Bosses), der zu deinem normalen Schaden noch dazukommt. Deshalb sorg dafür, dass deine Gruppe gesund bleibt, indem du deine täglichen Aufgaben erledigst! Jeder Schaden, der dem Boss zugefügt wird und den er zufügt, wird zu Cron berechnet (dein individueller Tagesbeginn).",
"bossDmg2": "Nur Teilnehmer kämpfen gegen den Boss und bekommen ihren Anteil an der Beute.",
"tavernBossInfo": "Um einem Weltbossmonster Schaden zuzufügen, musst Du Deine täglichen und einmaligen Aufgaben abhaken. Ein höherer Aufgaben Schaden führt zu höherem Bossschaden (rote Aufgaben abhaken, Zaubersprüche, Spezialattacken, usw.). Für jede tägliche Aufgabe, die Du nicht erledigst (multipliziert mit der Stärke des Bossmonsters) wird die Wut des Bossmonsters ansteigen. Hat sie das Maximum erreicht, wird etwas schlimmes passieren - also erledige Deine täglichen Aufgaben! Der Schaden den Du dem Bossmonster zufügst und die Wutpunkte, die Du an das Bossmonster verlierst, werden in der Chronik festgehalten (dort kannst Du den täglichen Fortschritt überprüfen).",
"bossColl1": "Um Gegenstände zu sammeln musst Du Deine Aufgaben erfüllen. Quest Gegenstände sind genauso wie normale Gegenstände zu finden, aber Du kannst das Ergebnis erst zum Tageswechsel sehen. Dann wird alles, was jeder Teilnehmer gefunden hat zusammengerechnet und dem Quest zugerechnet.",
diff --git a/common/locales/de/questscontent.json b/common/locales/de/questscontent.json
index d44a13ed67..21863d40ae 100644
--- a/common/locales/de/questscontent.json
+++ b/common/locales/de/questscontent.json
@@ -191,10 +191,16 @@
"questBunnyCompletion": "Von einem letzten Schlag getroffen sinkt das Killerhäschen zu Boden. Funkelnde Nebelschwaden steigen aus dem riesigen Körper auf, während dieser schrumpft und sich in ein kleines Häschen verwandelt. Keine Spur mehr von dem furchteinflössenden Monster, dem Ihr euch wenige Momente zuvor stellen musstest. Das winzige Näschen zuckt zweimal in die Luft und schon hoppelt das Häschen davon. Dabei lässt es einige Eier zurück @Gully lacht: \"Jaja, der Berg des Aufschiebens hat so eine Art selbst die kleinsten Herausforderungen riesig groß erscheinen zu lassen... Lasst uns die Eier einsammeln und uns auf den Weg nach Hause machen\"",
"questBunnyDropBunnyEgg": "Hase (Ei)",
"questBunnyUnlockText": "Schaltet die Option Haseneier auf dem Marktplatz zu kaufen frei.",
- "questSlimeText": "The Jelly Regent",
- "questSlimeNotes": "As you work on your tasks, you notice you are moving slower and slower. \"It's like walking through molasses,\" @Leephon grumbles. \"No, like walking through jelly!\" @starsystemic says. \"That slimy Jelly Regent has slathered his stuff all over Habitica. It's gumming up the works. Everybody is slowing down.\" You look around. The streets are slowly filling with clear, colorful ooze, and Habiticans are struggling to get anything done. As others flee the area, you grab a mop and prepare for battle!",
- "questSlimeBoss": "Jelly Regent",
- "questSlimeCompletion": "With a final jab, you trap the Jelly Regent in an over-sized donut, rushed in by @Overomega, @LordDarkly, and @Shaner, the quick-thinking leaders of the pastry club. As everyone is patting you on the back, you feel someone slip something into your pocket. It’s the reward for your sweet success: three Marshmallow Slime eggs.",
- "questSlimeDropSlimeEgg": "Marshmallow Slime (Egg)",
- "questSlimeUnlockText": "Unlocks purchasable slime eggs in the Market"
+ "questSlimeText": "Der Glibber König",
+ "questSlimeNotes": "Wie immer arbeitest Du gut gelaunt an Deinen Aufgaben, als Du plötzlich bemerkst, wie Du Dich immer langsamer bewegst. \"Als würde man durch einen Sumpf wandern\", grummelt @Leephon, \"Nein, das fühlt sich eher so an als ob man durch Glibber watet!\" @starsystemic meint: \"Der schleimige Glibber König hat dieses Zeug über ganz Habitica verteilt. Es verstopft die Arbeitsschritte. Alles wird verlangsamt.\" Du siehst Dich um und bemerkst, dass die Straßen sich langsam mit durchsichtigem Glibber in allen Farben füllen und die Habitianer daran hindert ihre Aufgaben zu erledigen. Im Gegensatz zu den meisten anderen, die die Flucht ergreifen, nimmst Du einen Mop zur Hand und machst Dich bereit für die Schlacht.",
+ "questSlimeBoss": "Glibber König",
+ "questSlimeCompletion": "Mit einem letzten Mopstoß stößt Du den Glibber König in die Falle, einen riesigen Donut, den @Overomega, @LordDarkly und @Shaner, die gewitzten Anführer der Feingebäck-Gilde, herangebracht haben. Anerkennend klopfen Dir die Habitianer auf den Rücken, als Du fühlst, wie Dir jemand etwas in die Tasche rutschen lässt. Es ist die Belohnung für Deinen süßen Erfolg: drei Marshmallow Schleim Eier.",
+ "questSlimeDropSlimeEgg": "Marshmallow Schleim (Ei)",
+ "questSlimeUnlockText": "Schaltet Schleim Eier auf dem Marktplatz zum Kaufen frei",
+ "questSheepText": "Der Donnerbock",
+ "questSheepNotes": "Als du mit deinen Freunden durch das ländliche Aufgabistan wanderst und eine \"kurze Pause\" von deinen Verpflichtungen einlegst, findest du einen kleinen Garnladen. Du bist so in deine Aufgabenaufschieberei vertieft, dass du die Unheil verkündenden Wolken am Horizont kaum bemerkst. \"Ich habe ein schlechtes Gefühl bei diesem Wetter\", murmelt @Misceo und du schaust nach oben. Die stürmischen Wolken brauen sich zusammen und sie sehen fast aus wie... \"Wir haben keine Zeit, in die Wolken zu schauen\", ruft @starsystemic. \"Es greift an!\" Der Donnerbock rast los und schleudert Blitze direkt auf dich zu!",
+ "questSheepBoss": "Donnerbock",
+ "questSheepCompletion": "Beeindruckt von deinem Fleiß, lässt die Wut des Donnerbocks nach. Er schießt drei riesige Hagelkörner in deine Richtung und verschwindet dann mit leisem Grollen. Bei näherer Betrachtung entdeckst du, dass die Hagelkörner eigentlich drei flauschige Eier sind. Du hebst sie auf und schlenderst unter blauem Himmel nach Hause.",
+ "questSheepDropSheepEgg": "Schaf (Ei)",
+ "questSheepUnlockText": "Ermöglicht den Kauf von Schafseiern auf dem Marktplatz"
}
\ No newline at end of file
diff --git a/common/locales/de/settings.json b/common/locales/de/settings.json
index 15db48c5ba..879c96802c 100644
--- a/common/locales/de/settings.json
+++ b/common/locales/de/settings.json
@@ -41,10 +41,10 @@
"json": "(JSON)",
"customDayStart": "Tageswechsel einstellen",
"24HrClock": "24h Uhr",
- "customDayStartInfo1": "HabitRPG defaults to check and reset your Dailies at midnight in your own time zone each day. It is recommended that you read the following information before changing it:",
- "customDayStartInfo2": "(show more)",
- "customDayStartInfo3": "(show less)",
- "customDayStartInfo4": "Complete all your Dailies before changing the Custom Day Start or Rest in the Inn that day. Changing your Custom Day Start may cause Cron to run immediately, but after the first day it works as expected.
Allow a window of two hours for the change to take effect. For example, if it is currently set to 0 (midnight), change it before 10pm; if you want to set it to 9pm, change it before 7pm.
Enter an hour from 0 to 23 (it uses a 24 hour clock). Typing is more effective than arrow keys. Once set, reload the page to confirm that the new value is being displayed.",
+ "customDayStartInfo1": "HabitRPG ist so eingestellt, dass Deine täglichen Aufgaben um Mitternacht in deiner eigenen Zeitzone überprüft und zurückgesetzt werden. Wir empfehlen den folgenden Text zu lesen, bevor Du diese Einstellungen veränderst:",
+ "customDayStartInfo2": "(mehr anzeigen)",
+ "customDayStartInfo3": "(weniger anzeigen)",
+ "customDayStartInfo4": "Erledige all Deine täglichen Aufgaben bevor Du den Beginn Deines Tages veränderst oder ruhe Dich im Gasthaus aus für diesen Tag. Wenn Du Deinen Tagesbeginn veränderst, werden eventuell deine täglichen Aufgaben sofort überprüft Cron, aber nach dem ersten Tag sollte alles wie erwartet funktionieren.
Habe bitte zwei Stunden Geduld, bis die neuen Einstellungen greifen. Wenn der Beginn zum Beispiel aktuell auf 0 Uhr (Mitternacht) eingestellt ist, dann ändere es vor 10 Uhr Abends; wenn Du ihn auf 9 Uhr Abends setzen willst, solltest Du das vor 7 Uhr Abends machen.
Gib eine Stunde zwischen 0 und 23 (24 Stunden Uhr) an. Tippen ist effektiver, als die Pfeiltasten zu benutzen. Wenn Du den Wert eingestellt hast, lade die Seite neu um sicher zu gehen, dass der neue Wert angezeigt wird. ",
"misc": "Verschiedenes",
"showHeader": "Header anzeigen",
"changePass": "Passwort ändern",
@@ -93,10 +93,12 @@
"wonChallenge": "Du hast einen Wettbewerb gewonnen",
"newPM": "Du hast eine private Nachricht erhalten",
"giftedGems": "Verschenkte Edelsteine",
+ "giftedGemsInfo": "<%= amount %> Edelsteine - von <%= name %>",
"giftedSubscription": "Verschenkte Abonnements ",
"invitedParty": "In die Gruppe eingeladen",
"invitedGuild": "In die Gilde eingeladen",
"inactivityEmails": "Dein Account ist inaktiv",
+ "weeklyRecaps": "Zusammenfassung deiner Kontoaktivitäten der letzten Woche",
"questStarted": "Dein Quest hat begonnen",
"invitedQuest": "Zu einem Quest eingeladen",
"kickedGroup": "Aus Gruppe entfernt.",
@@ -111,5 +113,10 @@
"benefits": "Vorteile",
"coupon": "Gutschein",
"couponPlaceholder": "Gib Deinen Gutschein Code ein",
- "couponText": "Manchmal nehmen wir an besonderen Events Teil und geben Gutschein Codes für spezielle Ausrüstungsgegenstände aus. (z.B. an die, die bei unserem Wondercon Stand vorbeischauen)"
+ "couponText": "Wir halten manchmal Events und geben Promo Codes für besondere Ausrüstungsgegenstände heraus. (z.B. wenn du bei unserem Wondercon Stand vorbeigeschaut hast)",
+ "apply": "Anwenden",
+ "resubscribe": "Wieder abonnieren",
+ "promoCode": "Promo Code",
+ "promoCodeApplied": "Promo Code aktiviert! Überprüfe dein Inventar",
+ "promoPlaceholder": "Promo Code eingeben"
}
\ No newline at end of file
diff --git a/common/locales/de/spells.json b/common/locales/de/spells.json
index 4d039b3a2c..62ab678a27 100644
--- a/common/locales/de/spells.json
+++ b/common/locales/de/spells.json
@@ -1,36 +1,36 @@
{
"spellWizardFireballText": "Flammenstoß",
- "spellWizardFireballNotes": "Flammen brechen hervor und versengen eine Aufgabe. Du reduzierst die Röte der Aufgabe, fügst Bossmonstern Schaden zu und erhältst Bonuserfahrung – mehr für blaue Aufgaben.",
+ "spellWizardFireballNotes": "Flammen schießen aus deinen Händen. Du erhältst XP und fügst Bossen zusätzlichen Schaden zu! Klicke auf eine Aufgabe, um sie zu verzaubern. (Basiert auf: INT Wert)",
"spellWizardMPHealText": "Ätherischer Schwall",
- "spellWizardMPHealNotes": "Eine Flut magischer Energie strömt aus Deinen Händen und erfüllt Deine Gruppe. Ihr erhaltet alle eine bestimmte Menge Mana.",
+ "spellWizardMPHealNotes": "Du opferst Mana um Deinen Freunden zu helfen. Der Rest Deiner Gruppe erhält MP! (Basiert auf: INT Wert)",
"spellWizardEarthText": "Erdbeben",
- "spellWizardEarthNotes": "Der Boden unter den Füßen Eurer Gegner bricht auf und bebt mit großer Wucht. Eure Aufgaben werden verlangsamt und stehen für Angriffe offen. Deine Gruppe erhält einen Erfahrungsbonus.",
+ "spellWizardEarthNotes": "Deine mentalen Kräfte bringen die Erde zum beben. Deine ganze Gruppe erhält Bonus Intelligenzpunkte! (Basiert auf: INT ohne Boni)",
"spellWizardFrostText": "Klirrender Frost",
- "spellWizardFrostNotes": "Eis bricht aus allen Oberflächen hervor, verschluckt deine Aufgaben und friert sie fest. Die Strähnen deiner täglichen Aufgaben werden am Ende des Tages nicht zurückgesetzt. Nicht erledigte tägliche Aufgaben fügen dir aber immer noch Schaden zu!",
+ "spellWizardFrostNotes": "Eine Eisschicht überzieht deine Aufgaben. Keine Deiner Strähnen wird morgen auf null zurückgesetzt! (Einmal gewirkt wirkt der Effekt auf all Deine Strähnen)",
"spellWarriorSmashText": "Gewaltschlag",
- "spellWarriorSmashNotes": "Du schlägst mit aller Gewalt auf eine Aufgabe ein. Du reduzierst die Röte der Aufgabe und fügst Bossmonstern Schaden zu.",
+ "spellWarriorSmashNotes": "Du triffst eine Aufgabe mit aller Kraft. Sie wird blauer/weniger rot, und du fügst Bossen extra Schaden zu! Klicke auf eine Aufgabe, um sie zu anzugreifen. (Basiert auf: STR)",
"spellWarriorDefensiveStanceText": "Verteidigungstellung",
- "spellWarriorDefensiveStanceNotes": "Du nimmst dir einen Moment Zeit um Deinen Körper zu entspannen und nimmst eine Verteidigungsstellung ein, um dich gegen die nächsten Angriffe Deiner Aufgaben zu wappnen. Das verringert den Schaden durch tägliche Aufgaben, den Du heute bei Tageswechsel nimmst.",
+ "spellWarriorDefensiveStanceNotes": "Du bereitest dich auf den Ansturm deiner Aufgaben vor. Du erhälst einen Ausdauerbonus! (Basiert auf: CON ohne Boni)",
"spellWarriorValorousPresenceText": "Tapferer Charakter",
- "spellWarriorValorousPresenceNotes": "Deine Gegenwart ermutigt Deine Gruppe. Dieser Mut lässt euch neue Kraft schöpfen. Alle Gruppenmitglieder erhalten einen Stärkebonus.",
+ "spellWarriorValorousPresenceNotes": "Deine Anwesenheit ermutigt deine Gruppe. Deine ganze Gruppe erhält einen Stärkebonus (Basiert auf: STR ohne Boni)",
"spellWarriorIntimidateText": "Einschüchternder Blick",
- "spellWarriorIntimidateNotes": "Dein Blick lässt eure Gegner vor Furcht erstarren. Deine Gruppe erhält einen Verteidigungsbonus.",
+ "spellWarriorIntimidateNotes": "Dein Blick erfüllt die Herzen Deiner Feinde mit Angst. Deine ganze Gruppe erhält einen Ausdauerbonus! (Basiert auf: CON ohne Boni)",
"spellRoguePickPocketText": "Taschendiebstahl",
- "spellRoguePickPocketNotes": "Deine geschickten Finger arbeiten sich durch die Taschen deiner Aufgabe und fördern ein paar Schätze zu Tage. Du erhältst einen sofortigen Goldbonus für die Aufgabe. Je fetter (blauer) deine Aufgabe ist, desto mehr Gold bekommst du.",
+ "spellRoguePickPocketNotes": "Du bestiehlst eine Aufgabe in der Nähe. Du erhältst Gold! Klicke auf eine Aufgabe, um sie zu bestehlen. (Basiert auf: PER)",
"spellRogueBackStabText": "Überraschungsangriff",
- "spellRogueBackStabNotes": "Lautlos schleichst Du Dich hinter eine Aufgabe und fällst ihr in den Rücken. Du fügst mehr Schaden zu und hast eine hohe Chance auf einen kritischen Treffer.",
+ "spellRogueBackStabNotes": "Du betrügst eine törichte Aufgabe. Du erhältst Gold und Erfahrungspunkte! Klicke auf eine Aufgabe, um sie zu betrügen. (Basiert auf: STR)",
"spellRogueToolsOfTradeText": "Handwerkszeug",
- "spellRogueToolsOfTradeNotes": "Du teilst deine Diebesausrüstung mit deiner Gruppe damit sie mehr Gold \"finden\". Alle Gruppenmitglieder erhalten heute einen Bonus auf Gold und Beute.",
+ "spellRogueToolsOfTradeNotes": "Du teilst Deine Talente mit Deinen Freunden. Deine ganze Gruppe erhält einen Wahrnehmungsbonus! (Basiert auf: PER ohne Boni)",
"spellRogueStealthText": "Schleichen",
- "spellRogueStealthNotes": "Du duckst Dich in die Schatten und ziehst Deine Kapuze über. Viele täglichen Aufgaben werden Dich heute Nacht nicht finden. Je höher Deine Wahrnehmung ist, desto mehr Aufgaben kannst Du entgehen.",
+ "spellRogueStealthNotes": "Du bist zu raffiniert, um entdeckt zu werden. Einige deiner täglichen Aufgaben werden heute Nacht nicht zu Schaden führen und ihre Strähnen/Farbe wird sich nicht ändern. (Mehrfache Anwendung hat Auswirkung auf mehr täglichen Aufgaben)",
"spellHealerHealText": "Heilendes Licht",
- "spellHealerHealNotes": "Licht umhüllt Deinen Körper und heilt Deine Wunden. Du wirst geheilt.",
+ "spellHealerHealNotes": "Licht strömt aus Deinem Körper, es heilt Deine Wunden. Du erhältst Lebenspunkte zurück! (Basiert auf: CON und INT)",
"spellHealerBrightnessText": "Brennende Helle",
- "spellHealerBrightnessNotes": "Du erzeugst einen Lichtblitz, der alle Aufgaben blendet. Ihr Zustand verbessert sich.",
+ "spellHealerBrightnessNotes": "Ein Lichtstoß lässt Deine Aufgaben schillern. Sie werden blauer / weniger rot! (Basiert auf: INT)",
"spellHealerProtectAuraText": "Schutzaura",
- "spellHealerProtectAuraNotes": "Eine magische Aura umfängt deine Gruppe und schützt sie vor Schaden. Alle Gruppenmitglieder erhalten einen erheblichen Verteidigungsbonus.",
+ "spellHealerProtectAuraNotes": "Du beschützt Deine Gruppe vor Schaden. Deine Gruppe erhält einen Ausdauerbonus! (Basiert auf: CON ohne Boni)",
"spellHealerHealAllText": "Segnung",
- "spellHealerHealAllNotes": "Beruhigendes Licht umhüllt deine Gruppe und heilt ihre Wunden. Alle Gruppenmitglieder werden geheilt.",
+ "spellHealerHealAllNotes": "Eine schmerzlindernde Aura umfängt Dich. Deine Gruppe erhält Lebenspunkte zurück! (Basiert auf: CON und INT)",
"spellSpecialSnowballAuraText": "Schneeball",
"spellSpecialSnowballAuraNotes": "Wirf einen Schneeball auf ein Gruppenmitglied! Was kann dabei schon schief gehen? Dauert bis zum Tageswechsel des Gruppenmitglieds an.",
"spellSpecialSaltText": "Salz",
diff --git a/common/locales/de/tasks.json b/common/locales/de/tasks.json
index 8007a84394..cf5719adc4 100644
--- a/common/locales/de/tasks.json
+++ b/common/locales/de/tasks.json
@@ -14,7 +14,7 @@
"save": "Speichern",
"addChecklist": "Checkliste hinzufügen",
"checklist": "Checkliste",
- "checklistText": "Bei täglichen Aufgaben verringert eine teilweise abgehakte Liste den Schaden. Zum Beispiel wird der Schaden einer Liste mit 4 Aufgaben bei der 3 abgehakt sind auf 25% reduziert. Erfüllte Listen bei einmaligen Aufgaben zählen als Multiplikator: 3 Aufgaben bedeutet +3x (also insgesammt 4x) Erfahrung, Gold und Mana",
+ "checklistText": "Zerlege eine Aufgabe in kleinere Teile! Checklisten erhöhen die Erfahrung und das Gold, das Du für eine Aufgabe bekommst, und verringern den Schaden, den eine tägliche Aufgabe verursacht. ",
"expandCollapse": "Auf-/Zuklappen",
"text": "Text",
"extraNotes": "Extra Notizen",
@@ -22,7 +22,7 @@
"advancedOptions": "Erweiterte Optionen",
"difficulty": "Schwierigkeit",
"difficultyHelpTitle": "Wie schwer ist die Aufgabe?",
- "difficultyHelpContent": "Das multipliziert den Wert. Benutze es bedachtsam, verlasse dich anstatt dessen auf unseren Anpassungsalgorithmus. Manche Aufgaben sind aber krass wertvoller (Schreibe an Diplomarbeit - Zahnseide verwenden). Klicke hier für mehr Informationen.",
+ "difficultyHelpContent": "Je schwieriger eine Aufgabe ist, umso mehr Erfahrung und Gold bekommst Du, wenn Du sie abhakst... aber auch umso mehr Schaden verursacht sie, wenn es eine tägliche Aufgabe oder schlechte Gewohnheit ist!",
"easy": "Einfach",
"medium": "Mittel",
"hard": "Schwer",
@@ -32,19 +32,18 @@
"otherExamples": "z.B. berufliche Unternehmungen, Hobbies, Finanzielles, usw.",
"progress": "Fortschritt",
"dailies": "Tägliche Aufgaben",
- "newDaily": "Neue tägliche Aufgabe",
+ "newDaily": "Neuer tägliche Aufgabe",
"newDailyBulk": "Neue tägliche Aufgaben (eine pro Zeile)",
"streakCounter": "Strähnenzähler",
"repeat": "Wiederholen",
"restoreStreak": "Strähne wiederherstellen",
- "todos": "Aufgaben",
- "newTodo": "Neue Aufgabe",
- "newTodoBulk": "Neue Aufgaben (eine pro Zeile)",
+ "todos": "To-Dos",
+ "newTodo": "Neuer To-Do Eintrag",
+ "newTodoBulk": "Neue To-Do Einträge (einer pro Zeile)",
"dueDate": "Frist",
"remaining": "Aktiv",
"complete": "Erledigt",
"dated": "Datiert",
- "datedNotSorted": "Einmalige Aufgaben mit Datum werden nicht nach diesem sortiert. Diese Funktion wird vermutlich bald hinzugefügt.",
"due": "Fällig",
"grey": "Grau",
"score": "Punktestand",
@@ -78,5 +77,6 @@
"streakCoins": "Strähnen Bonus!",
"pushTaskToTop": "Aufgabe nach oben verschieben",
"pushTaskToBottom": "Aufgabe nach unten verschieben",
- "emptyTask": "Gib der Aufgabe zunächst einen Titel."
+ "emptyTask": "Gib der Aufgabe zunächst einen Titel.",
+ "dailiesRestingInInn": "Du ruhst dich im Gasthaus aus! Deine täglichen Aufgaben werden dir heute Nacht keinen Schaden zufügen, sie werden sich aber dennoch täglich aktualisieren. Falls du dich in einer Quest befindest, wirst du keinen Schaden austeilen/Gegenstände finden bis du das Gasthaus wieder verlässt, allerdings kannst du durch einen Boss verletzt werden, wenn deine Gruppe tägliche Aufgaben nicht erledigt."
}
\ No newline at end of file
diff --git a/common/locales/en/backgrounds.json b/common/locales/en/backgrounds.json
index 2d9eb29130..6ccc4bb81a 100644
--- a/common/locales/en/backgrounds.json
+++ b/common/locales/en/backgrounds.json
@@ -87,5 +87,21 @@
"backgroundFloralMeadowText": "Flowering Meadow",
"backgroundFloralMeadowNotes": "Picnic in a Flowering Meadow.",
"backgroundGumdropLandText": "Gumdrop Land",
- "backgroundGumdropLandNotes": "Nibble the scenery of Gumdrop Land."
+ "backgroundGumdropLandNotes": "Nibble the scenery of Gumdrop Land.",
+
+ "backgrounds052015": "SET 12: Released May 2015",
+ "backgroundMarbleTempleText": "Marble Temple",
+ "backgroundMarbleTempleNotes": "Pose in front of a Marble Temple.",
+ "backgroundMountainLakeText": "Mountain Lake",
+ "backgroundMountainLakeNotes": "Dip your toes in a Mountain Lake.",
+ "backgroundPagodasText": "Pagodas",
+ "backgroundPagodasNotes": "Climb to the top of Pagodas.",
+
+ "backgrounds062015": "SET 13: Released June 2015",
+ "backgroundDriftingRaftText": "Drifting Raft",
+ "backgroundDriftingRaftNotes": "Paddle a Drifting Raft.",
+ "backgroundShimmeryBubblesText": "Shimmery Bubbles",
+ "backgroundShimmeryBubblesNotes": "Float through a sea of Shimmery Bubbles.",
+ "backgroundIslandWaterfallsText": "Island Waterfalls",
+ "backgroundIslandWaterfallsNotes": "Picnic near Island Waterfalls."
}
diff --git a/common/locales/en/challenge.json b/common/locales/en/challenge.json
index 36c9227e28..a22e4bf57d 100644
--- a/common/locales/en/challenge.json
+++ b/common/locales/en/challenge.json
@@ -16,7 +16,7 @@
"selectWinner": "Select a winner and close the challenge:",
"deleteOrSelect": "Delete or select winner",
"endChallenge": "End Challenge",
- "challengeDiscription": "These are the challenge's tasks. As users participate, they will change color and gain graphs to show you the overall progress of the group.",
+ "challengeDiscription": "These are the Challenge's tasks that will be added to your task dashboard when you join this Challenge. The sample Challenge tasks below will change color and gain graphs to show you the overall progress of the group.",
"hows": "How's Everyone Doing?",
"filter": "Filter",
"groups": "Groups",
@@ -33,7 +33,8 @@
"challengeTagPop": "Challenges appear on tag-lists & task-tooltips. So while you'll want a descriptive title above, you'll also need a 'short name'. Eg, 'Lose 10 pounds in 3 months' might become '-10lb' (Click for more info).",
"challengeDescr": "Description",
"prize": "Prize",
- "prizePop": "If someone can 'win' your challenge, you can optionally award that winner a Gem prize. Max = #gems you own (+ guild.gems, if you created this challenge's guild). Note: This prize can't be changed later and will not be refunded if challenge is cancelled.",
+ "prizePop": "If someone can 'win' your challenge, you can optionally award that winner a Gem prize. Max = #gems you own (+ guild.gems, if you created this challenge's guild). Note: This prize can't be changed later.",
+ "prizePopTavern": "If someone can 'win' your challenge, you can optionally award that winner a Gem prize. Max = #gems you own (+ guild.gems, if you created this challenge's guild). Note: This prize can't be changed later and Tavern challenges will not be refunded if the challenge is cancelled.",
"publicChallenges": "Minimum 1 Gem for public challenges (helps prevent spam, it really does).",
"officialChallenge": "Official HabitRPG Challenge",
"by": "by",
@@ -43,6 +44,7 @@
"selectGroup": "Please select group",
"challengeCreated": "Challenge created",
"sureDelCha": "Delete challenge, are you sure?",
+ "sureDelChaTavern": "Delete challenge, are you sure? Your gems will not be refunded.",
"removeTasks": "Remove Tasks",
"keepTasks": "Keep Tasks",
"closeCha": "Close challenge and...",
diff --git a/common/locales/en/character.json b/common/locales/en/character.json
index 0586cebff2..b6909e6c63 100644
--- a/common/locales/en/character.json
+++ b/common/locales/en/character.json
@@ -7,6 +7,7 @@
"displayName": "Display Name",
"displayPhoto": "Photo",
"displayBlurb": "Blurb",
+ "displayBlurbPlaceholder": "Please introduce yourself",
"photoUrl": "Photo Url",
"imageUrl": "Image Url",
"inventory": "Inventory",
@@ -48,13 +49,15 @@
"classBonusText": "Your class (Warrior, if you haven't unlocked or selected another class) uses its own equipment more effectively than gear from other classes. Equipped gear from your current class gets a 50% boost to the attribute bonus it grants.",
"classEquipBonus": "Class Bonus",
"battleGear": "Battle Gear",
- "battleGearText": "This is the gear you wear into battle, it affects numbers when interacting with your tasks.",
+ "battleGearText": "This is the gear you wear into battle; it affects numbers when interacting with your tasks.",
"costume": "Costume",
"costumeText": "If you prefer the look of other gear to what you have equipped, check the \"Use Costume\" box to visually don a costume while wearing your battle gear underneath.",
"useCostume": "Use Costume",
- "gearAchievement": "You have earned the \"Ultimate Gear\" Achievement for upgrading to the maximum gear set!",
+ "gearAchievement": "You have earned the \"Ultimate Gear\" Achievement for upgrading to the maximum gear set for a class! You have attained the following complete sets:",
+ "moreGearAchievements": "To attain more Ultimate Gear badges, change classes on your stats page and buy up your new class's gear!",
+ "armoireUnlocked": "You've also unlocked the Enchanted Armoire! Click on the Enchanted Armoire Reward for a random chance at special Equipment! It may also give you random XP or food items.",
"ultimGearName": "Ultimate Gear",
- "ultimGearText": "Has upgraded to the maximum weapon and armor set",
+ "ultimGearText": "Has upgraded to the maximum weapon and armor set for the following classes:",
"level": "Level",
"levelUp": "Level Up!",
"mana": "Mana",
@@ -70,6 +73,7 @@
"allocatePerPop": "Add a point to Perception",
"allocateInt": "Points allocated to Intelligence:",
"allocateIntPop": "Add a point to Intelligence",
+ "noMoreAllocate": "Now that you've hit level 100, you won't gain any more Attribute Points. You can continue leveling up, or start a new adventure at level 1 by using the Orb of Rebirth, now available for free in the Market.",
"stats": "Stats",
"strength": "Strength",
"strengthText": "Strength increases the chance of random \"critical hits\" and the Gold, Experience, and drop chance boost from them. It also helps deal damage to boss monsters.",
@@ -108,15 +112,12 @@
"taskAllocationPop": "Assigns points based on the Physical (Strength), Mental (Intelligence), Social (Constitution), and Other (Perception) categories associated with the tasks you complete.",
"distributePoints": "Distribute Unallocated Points",
"distributePointsPop": "Assigns all unallocated attribute points according to the selected allocation scheme.",
- "chooseClass1": "Choose your",
- "chooseClass2": "Class!",
- "chooseClass3": "Or opt out to choose later.",
"warriorText": "Warriors score more and better \"critical hits\", which randomly give bonus Gold, Experience, and drop chance for scoring a task. They also deal heavy damage to boss monsters. Play a Warrior if you find motivation from unpredictable jackpot-style rewards, or want to dish out the hurt in boss Quests!",
"mageText": "Mages learn swiftly, gaining Experience and Levels faster than other classes. They also get a great deal of Mana for using special abilities. Play a Mage if you enjoy the tactical game aspects of Habit, or if you are strongly motivated by leveling up and unlocking advanced features!",
"rogueText": "Rogues love to accumulate wealth, gaining more Gold than anyone else, and are adept at finding random items. Their iconic Stealth ability lets them duck the consequences of missed Dailies. Play a Rogue if you find strong motivation from Rewards and Achievements, striving for loot and badges!",
"healerText": "Healers stand impervious against harm, and extend that protection to others. Missed Dailies and bad Habits don't faze them much, and they have ways to recover Health from failure. Play a Healer if you enjoy assisting others in your Party, or if the idea of cheating Death through hard work inspires you!",
"optOut": "Opt Out",
- "optOutText": "Can't be bothered with classes? Want to choose later? Opt out - you'll be a warrior and your points handled automatically. You can enable classes later under Settings.",
+ "optOutText": "Can't be bothered with classes? Want to choose later? Opt out - you'll be a warrior with no special abilities. You can read about the class system later on the wiki and enable classes at any time under User -> Stats.",
"select": "Select",
"stealth": "Stealth",
"stealthNewDay": "When a new day begins, you will avoid damage from this many missed Dailies.",
@@ -138,5 +139,12 @@
"displayNameDescription3": "and scroll down to the Registration section to change your login name.",
"unequipBattleGear": "Unequip Battle Gear",
"unequipCostume": "Unequip Costume",
- "unequipPetMountBackground": "Unequip Pet, Mount, Background"
+ "unequipPetMountBackground": "Unequip Pet, Mount, Background",
+ "animalSkins": "Animal Skins",
+ "chooseClassHeading": "Choose your Class! Or opt out to choose later.",
+ "warriorWiki": "Warrior",
+ "mageWiki": "Mage",
+ "rogueWiki": "Rogue",
+ "healerWiki": "Healer",
+ "chooseClassLearn": "Learn more about classes"
}
diff --git a/common/locales/en/communityGuidelines.json b/common/locales/en/communityGuidelines.json
index ba77715b8a..dc08558fd1 100644
--- a/common/locales/en/communityGuidelines.json
+++ b/common/locales/en/communityGuidelines.json
@@ -180,5 +180,7 @@
"commGuideLink07": "The Art Trello",
"commGuideLink07description": "for submitting pixel art.",
"commGuideLink08": "The Quest Trello",
- "commGuideLink08description": "for submitting quest writing."
+ "commGuideLink08description": "for submitting quest writing.",
+
+ "lastUpdated": "Last updated"
}
diff --git a/common/locales/en/content.json b/common/locales/en/content.json
index 1e698f000f..c7d3618109 100644
--- a/common/locales/en/content.json
+++ b/common/locales/en/content.json
@@ -2,6 +2,11 @@
"potionText": "Health Potion",
"potionNotes": "Recover 15 Health (Instant Use)",
+ "armoireText": "Enchanted Armoire",
+ "armoireNotesFull": "Open the Armoire to randomly receive special Equipment, Experience, or food! Equipment pieces remaining: ",
+ "armoireLastItem": "You've found the last piece of rare Equipment in the Enchanted Armoire.",
+ "armoireNotesEmpty": "The Armoire will have new Equipment every month. Until then, keep clicking for Experience and Food!",
+
"dropEggWolfText": "Wolf",
"dropEggWolfAdjective": "loyal",
@@ -82,6 +87,9 @@
"questEggSlimeText": "Marshmallow Slime",
"questEggSlimeAdjective": "sweet",
+ "questEggSheepText": "Sheep",
+ "questEggSheepAdjective": "woolly",
+
"eggNotes": "Find a hatching potion to pour on this egg, and it will hatch into a <%= eggAdjective(locale) %> <%= eggText(locale) %>.",
"hatchingPotionBase": "Base",
diff --git a/common/locales/en/defaultTasks.json b/common/locales/en/defaultTasks.json
index 0cf2f31550..cf7e179494 100644
--- a/common/locales/en/defaultTasks.json
+++ b/common/locales/en/defaultTasks.json
@@ -1,11 +1,12 @@
{
- "defaultHabit1Text": "Good Habit",
- "defaultHabit1Notes": "Sample Good Habits: + Eat a vegetable +15 minutes productive work",
+ "defaultTaskNotes": " ",
+ "defaultHabit1Text": "Productive Work (Click the pencil to edit)",
+ "defaultHabit1Notes": "Sample Good Habits: + Eat a vegetable + 15 minutes productive work",
- "defaultHabit2Text": "Bad Habit",
+ "defaultHabit2Text": "Eat Junk Food (Click the pencil to edit)",
"defaultHabit2Notes": "Sample Bad Habits: - Smoke - Procrastinate",
- "defaultHabit3Text": "Good or Bad Habit",
+ "defaultHabit3Text": "Take the Stairs/Elevator (Click the pencil to edit)",
"defaultHabit3Notes": "Sample Good or Bad Habits: +/- Took Stairs/Elevator ; +/- Drank Water/Soda",
"defaultDaily1Text": "1h Personal Project",
@@ -44,7 +45,7 @@
"defaultTodo5Text": "Start a Party (private group) with your friends (Social > Party)",
- "defaultReward1Text": "1 Episode of Game of Thrones",
+ "defaultReward1Text": "15 minute break",
"defaultReward1Notes": "Custom rewards can come in many forms. Some people will hold off watching their favorite show unless they have the gold to pay for it.",
"defaultReward2Text": "Cake",
diff --git a/common/locales/en/front.json b/common/locales/en/front.json
index 232c6eb51b..328eb9b16e 100644
--- a/common/locales/en/front.json
+++ b/common/locales/en/front.json
@@ -1,100 +1,182 @@
{
- "titleFront": "HabitRPG | Gamify Your Life",
- "tagline": "A free habit building app that treats your life like a game.",
- "landingp1": "The problem with most productivity apps on the market is that they provide no incentive to continue using them. HabitRPG fixes this by making habit building fun! By rewarding you for your successes and penalizing you for slip-ups, HabitRPG provides external motivation for completing your day-to-day activities.",
- "landingp2header": "Instant Gratification",
- "landingp2": "Whenever you reinforce a positive habit, complete a daily task, or take care of an old to-do, HabitRPG immediately rewards you with experience points and gold. As you gain experience, you can level up, increasing your stats and unlocking more features, like classes and pets. Gold can be spent on in-game items that change your experience or personalized rewards you've created for motivation. When even the smallest successes provide you with an immediate reward, you're less likely to procrastinate.",
- "landingp3header": "Consequences",
- "landingp3": "Whenever you indulge in a bad habit or fail to complete one of your daily tasks, you lose health. If your health drops too low, you die and lose some of the progress you've made. By providing immediate consequences, HabitRPG can help break bad habits and procrastination cycles before they cause real-world problems.",
- "landingp4header": "Accountability",
- "landingp4": "With an active community, HabitRPG provides the accountability you need to stay on task. With the party system, you can bring in a group of your closest friends to cheer you on. The guild system allows you to find people with similar interests or obstacles, so you can share your goals and swap tips on how to tackle your problems. On HabitRPG, the community means that you have both the support and the accountability you need to succeed.",
+ "FAQ": "FAQ",
+ "accept1Terms": "By clicking the button below, I agree to the",
+ "accept2Terms": "and the",
+ "alexandraQuote": "Couldn't NOT talk about HabitRPG during my speech in Madrid. Must-have tool for freelancers who still need a boss.",
+ "althaireQuote": "Having a quest constantly on really motivates me to do all my dailies and do all my to-dos. My biggest motivation is not letting my party down.",
+ "andeeliaoQuote": "Awesome product, just started a few days ago and already more conscious and productive with my time!",
+ "autumnesquirrelQuote": "I'm procrastinating less on work and housework and pay bills on time.",
+ "businessSample1": "Confirm 1 page of Inventory",
+ "businessSample2": "20 mins Filing",
+ "businessSample3": "Sort and Process Inbox",
+ "businessSample4": "Prepare 1 Document for Client",
+ "businessSample5": "Call Clients/Put Off Phone Calls",
+ "businessText": "Use HabitRPG at your business",
+ "choreSample1": " Put Dirty Clothes in Hamper",
+ "choreSample2": "20 mins of Housework",
+ "choreSample3": "Wash a Load of Dishes",
+ "choreSample4": "Tidy One Room",
+ "choreSample5": "Wash and Dry a Load of Clothes",
+ "chores": "Chores",
+ "communityBug": "Submit Bug",
+ "communityExtensions": "Add-ons & Extensions",
+ "communityFacebook": "Facebook",
+ "communityFeature": "Request Feature",
+ "communityForum": "Forum",
+ "communityKickstarter": "Kickstarter",
+ "communityReddit": "Reddit",
+ "companyAbout": "How it Works",
+ "companyBlog": "Blog",
+ "companyDonate": "Donate",
+ "companyExtensions": "Extensions",
+ "companyPrivacy": "Privacy",
+ "companyTerms": "Terms",
+ "companyVideos": "Videos",
+ "contribUse": "HabitRPG contributors use",
+ "dragonsilverQuote": "I can't tell you how many time and task tracking systems I've tried over the decades... HRPG is the only thing I've used that actually helps me get things done rather than just list them.",
+ "dreimQuote": "When I discovered HabitRPG last summer, I had just failed about half of my exams. Thanks to the Dailies… I was able to organize and discipline myself, and I actually passed all my exams with really good grades a month ago.",
+ "elmiQuote": "Every morning I'm looking forward to getting up so I can earn some gold!",
+ "email": "Email",
+ "emailNewPass": "Email New Password",
+ "evagantzQuote": "My very first dentist appointment where the hygienist was actually excited about my flossing habits. Thanks Habitrpg!",
+ "examplesHeading": "Players use HabitRPG to manage...",
+ "featureAchievementByline": "Do something totally awesome? Get a badge and show it off!",
+ "featureAchievementHeading": "Achievement Badges",
+ "featureEquipByline": "Buy limited edition equipment, potions, and other virtual goodies in our Market with your task rewards!",
+ "featureEquipHeading": "Equipment and extras",
+ "featurePetByline": "Eggs and items drop when you complete your tasks. Be as productive as possible to collect pets and mounts!",
+ "featurePetHeading": "Pets and Mounts",
+ "featureSocialByline": "Join common-interest groups with like-minded people. Create Challenges to compete against other users.",
+ "featureSocialHeading": "Social play",
+ "featuredIn": "Featured in",
+ "featuresHeading": "We also feature...",
+ "footerCommunity": "Community",
+ "footerCompany": "Company",
+ "footerMobile": "Mobile",
+ "footerSocial": "Social",
+ "forgotPass": "Forgot Password",
+ "frabjabulousQuote": "HabitRPG is the reason I got a killer, high-paying job... and even more miraculous, I'm now a daily flosser!",
+ "free": "Play for free",
+ "gamifyButton": "Gamify your life today!",
+ "goalSample1": "Practice Piano for 1 Hour",
+ "goalSample2": "Work on article for publication",
+ "goalSample3": "Work on blog post",
+ "goalSample4": "Japanese lesson on Duolingo",
+ "goalSample5": "Read an Informative Article",
+ "goals": "Goals",
+ "health": "Health",
+ "healthSample1": "Drink Water/Soda",
+ "healthSample2": "Chew Gum/Smoke",
+ "healthSample3": "Take Stairs/Elevator",
+ "healthSample4": "Eat Healthy/Junk Food",
+ "healthSample5": "Break a Sweat for 1 hr",
+ "history": "History",
+ "infhQuote": "HabitRPG has really helped me impart structure to my life in graduate school.",
+ "invalidEmail": "A valid email address is required in order to perform a password reset.",
+ "irishfeet123Quote": "I've had horrible habits with clearing my place completely after meals and leaving cups all over the place. HabitRPG has cured that!",
+ "joinOthers": "Join 200,000 people making it fun to achieve goals!",
+ "kazuiQuote": "Before HabitRPG, I was stuck with my thesis, as well as dissatisfied with my personal discipline regarding housework and things like learning vocabulary and studying Go theory. It turns out breaking down these tasks into smaller manageable checklists is quite the thing to keep me motivated and constantly working.",
+ "landingadminlink": "administrative packages",
"landingend": "Not convinced yet?",
"landingend2": "See a more detailed list of",
- "landingfeatureslink": "our features",
"landingend3": ". Are you looking for a more private approach? Check out our",
- "landingadminlink": "administrative packages",
"landingend4": "which are perfect for families, teachers, support groups, and businesses.",
+ "landingfeatureslink": "our features",
+ "landingp1": "The problem with most productivity apps on the market is that they provide no incentive to continue using them. HabitRPG fixes this by making habit building fun! By rewarding you for your successes and penalizing you for slip-ups, HabitRPG provides external motivation for completing your day-to-day activities.",
+ "landingp2": "Whenever you reinforce a positive habit, complete a daily task, or take care of an old to-do, HabitRPG immediately rewards you with experience points and gold. As you gain experience, you can level up, increasing your stats and unlocking more features, like classes and pets. Gold can be spent on in-game items that change your experience or personalized rewards you've created for motivation. When even the smallest successes provide you with an immediate reward, you're less likely to procrastinate.",
+ "landingp2header": "Instant Gratification",
+ "landingp3": "Whenever you indulge in a bad habit or fail to complete one of your daily tasks, you lose health. If your health drops too low, you die and lose some of the progress you've made. By providing immediate consequences, HabitRPG can help break bad habits and procrastination cycles before they cause real-world problems.",
+ "landingp3header": "Consequences",
+ "landingp4": "With an active community, HabitRPG provides the accountability you need to stay on task. With the party system, you can bring in a group of your closest friends to cheer you on. The guild system allows you to find people with similar interests or obstacles, so you can share your goals and swap tips on how to tackle your problems. On HabitRPG, the community means that you have both the support and the accountability you need to succeed.",
+ "landingp4header": "Accountability",
+ "leadText": "HabitRPG is a free habit building and productivity app that treats your real life like a game. With in-game rewards and punishments to motivate you and a strong social network to inspire you, HabitRPG can help you achieve your goals to become healthy, hard-working, and happy.",
+ "login": "Login",
+ "loginAndReg": "Login / Register",
+ "loginFacebookAlt": "Login / Register with Facebook",
+ "logout": "Log Out",
"marketing1Header": "Improve Your Habits By Playing A Game",
"marketing1Lead1": "HabitRPG is a video game to help you improve real life habits. It \"gamifies\" your life by turning all your tasks (habits, dailies, and to-dos) into little monsters you have to conquer. The better you are at this, the more you progress in the game. If you slip up in life, your character starts backsliding in the game.",
"marketing1Lead2": "Get Sweet Gear. Improve your habits to build up your avatar. Show off the sweet gear you've earned",
"marketing1Lead2Title": "Get Sweet Gear",
"marketing1Lead3": "Find Random Prizes. For some, it's the gamble which motivates them, a system called \"stochastic rewarding\". HabitRPG accommodates all reinforcement styles: positive, negative, predictable, and random.",
"marketing1Lead3Title": "Find Random Prizes",
-
"marketing2Header": "Compete With Friends, Join Interest Groups",
"marketing2Lead1": "While you can solo-play HabitRPG, the lights really turn on when you start collaborating, competing, and holding each other accountable. The most effective part of any self-improvement program is social accountability, and what better an environment for accountability and competition than a video game?",
"marketing2Lead2": "Fight Bosses. What's a Role Playing Game without battles? Fight bosses with your party. Bosses are \"super accountability mode\" - a day you miss the gym is a day the boss hurts everyone.",
"marketing2Lead2Title": "Bosses",
"marketing2Lead3": "Challenges let you compete with friends and strangers. Whoever does the best at the end of a challenge wins special prizes.",
-
"marketing3Header": "Apps",
- "marketing3Lead1Title": "iPhone & Android",
"marketing3Lead1": "The iPhone & Android apps let you take care of business on the go. We realize that logging into the website to click buttons can be a drag.",
"marketing3Lead2": " Other 3rd Party Tools tie HabitRPG into various aspects of your life. Our API provides easy integration for things like the Chrome Extension, for which you lose points when browsing unproductive websites, and gain points when on productive ones. See more here",
-
"marketing4Header": "Organizational Use",
- "marketing4Lead1Title": "Gamification In Education",
"marketing4Lead1": "Education is one of the best sectors for gamification. We all know how glued to phones and games students are these days, harness that power! Pit your students against eachother in friendly competition. Reward good behavior with rare prizes. Watch their grades and behavior soar.",
- "marketing4Lead2Title": "Gamification In Health and Wellness",
+ "marketing4Lead1Title": "Gamification In Education",
"marketing4Lead2": "Health care costs are on the rise, and something's gotta give. Hundreds of programs are built to reduce costs and improve wellness. We believe HabitRPG can pave a substantial path towards healthy lifestyles.",
- "marketing4Lead3Title": "Gamify Everything",
+ "marketing4Lead2Title": "Gamification In Health and Wellness",
"marketing4Lead3-1": "Want to gamify your life?",
"marketing4Lead3-2": "Interested in running a group in education, wellness, and more?",
"marketing4Lead3-3": "Want to learn more?",
-
- "playButton": "Play",
- "username": "Username",
- "password": "Password",
- "useUUID": "Use UUID / API Token (For Facebook Users)",
- "passMan": "In case you are using a password manager (like 1Password) and have problems logging in, try typing username and password manually.",
- "forgotPass": "Forgot Password",
- "emailNewPass": "Email New Password",
- "invalidEmail": "A valid email address is required in order to perform a password reset.",
- "email": "Email",
- "passConfirm": "Confirm Password",
- "accept1Terms": "By clicking the button below, I agree to the",
- "terms": "Terms and Conditions",
- "accept2Terms": "and the",
- "privacy": "Privacy Policy",
- "home": "Home",
- "learnMore": "Learn More",
- "contact": "Contact",
- "history": "History",
- "anonymous": "Anonymous",
- "tasks": "Tasks",
- "loginAndReg": "Login / Register",
- "loginFacebookAlt": "Login / Register with Facebook",
- "login": "Login",
- "register": "Register",
- "options": "Options",
- "logout": "Log Out",
- "sync": "Sync",
- "FAQ": "FAQ",
- "tutorials": "Tutorials",
- "psst": "Psst",
- "footerMobile": "Mobile",
- "mobileIOS": "iOS",
+ "marketing4Lead3Title": "Gamify Everything",
"mobileAndroid": "Android",
- "footerCompany": "Company",
- "companyDonate": "Donate",
- "companyAbout": "How it Works",
- "companyVideos": "Videos",
- "companyBlog": "Blog",
- "companyExtensions": "Extensions",
- "companyPrivacy": "Privacy",
- "companyTerms": "Terms",
- "footerCommunity": "Community",
- "communityBug": "Submit Bug",
- "communityFeature": "Request Feature",
- "communityExtensions": "Add-ons & Extensions",
- "communityForum": "Forum",
- "communityKickstarter": "Kickstarter",
- "communityFacebook": "Facebook",
- "communityReddit": "Reddit",
- "footerSocial": "Social",
- "socialTitle": "HabitRPG - Gamify Your Life",
- "watchVideos": "Watch Videos",
+ "mobileIOS": "iOS",
+ "motivate": "Motivate yourself and your team!",
+ "motivate1": "Motivate yourself to do anything.",
+ "motivate2": "Get Organized. Get Motivated. Get Gold.",
+ "passConfirm": "Confirm Password",
+ "passMan": "In case you are using a password manager (like 1Password) and have problems logging in, try typing username and password manually.",
+ "password": "Password",
+ "playButton": "Play",
+ "playButtonFull": "Play HabitRPG",
"presskit": "Press Kit",
+ "presskitDownload": "Download all images:",
"presskitText": "Thanks for your interest in HabitRPG! The following images can be used for articles or videos about HabitRPG. For more information, please contact Siena Leslie at leslie@habitrpg.com.",
- "presskitDownload": "Download all images:"
-}
+ "privacy": "Privacy Policy",
+ "psst": "Psst",
+ "punishByline": "Break bad habits and procrastination cycles with immediate consequences.",
+ "punishHeading1": "Miss a daily goal?",
+ "punishHeading2": "Lose health!",
+ "questByline1": "Playing with your friends keeps you accountable for your tasks.",
+ "questByline2": "Issue each other Challenges to complete a goal together!",
+ "questHeading1": "Battle monsters with your friends!",
+ "questHeading2": "If you slack off, they all get hurt!",
+ "register": "Register",
+ "rewardByline1": "Spend gold on virtual and real-life rewards.",
+ "rewardByline2": "Instant rewards keep you motivated!",
+ "rewardHeading": "Complete a task to earn gold!",
+ "sampleDailies": "Sample Dailies",
+ "sampleHabits": "Sample Habits",
+ "sampleToDo": "Sample To-Dos",
+ "school": "School",
+ "schoolSample1": "Finish 1 Assignment",
+ "schoolSample2": "Study 1 hour",
+ "schoolSample3": "Meet with Study Group",
+ "schoolSample4": "Notes for 1 Chapter",
+ "schoolSample5": "Read 1 Chapter",
+ "sixteenBitFilQuote": "I'm getting my jobs and tasks done in record time thanks to HabitRPG. I'm just always so eager to reach my next level-up!",
+ "skysailorQuote": "My party and our quests keep me engaged in the game, which keeps me motivated to get things done and change my life in positive ways",
+ "socialTitle": "HabitRPG - Gamify Your Life",
+ "supermouse35Quote": "I'm exercising more and I haven't forgotten to take my meds for months! Thanks, Habit. :D",
+ "sync": "Sync",
+ "tasks": "Tasks",
+ "teamSample1": "Outline Meeting Itinerary for Tuesday",
+ "teamSample2": "Brainstorm Growth Hacking",
+ "teamSample3": "Discuss this week’s KPIs",
+ "teams": "Teams",
+ "terms": "Terms and Conditions",
+ "testimonialHeading": "What people say...",
+ "tutorials": "Tutorials",
+ "unlockByline1": "Achieve your goals and level up.",
+ "unlockByline2": "Unlock new motivational tools, such as pet collecting, random rewards, spell-casting, and more!",
+ "unlockHeadline": "As you stay productive, you unlock new content!",
+ "useUUID": "Use UUID / API Token (For Facebook Users)",
+ "username": "Username",
+ "watchVideos": "Watch Videos",
+ "work": "Work",
+ "zelahQuote": "With HabitRPG, I can be persuaded to go to bed on time by the thought of gaining points for an early night or losing health for a late one!",
+ "reportAccountProblems": "Report Account Problems",
+ "reportCommunityIssues": "Report Community Issues",
+ "generalQuestionsSite": "General Questions about the Site",
+ "businessInquiries": "Business Inquiries",
+ "merchandiseInquiries": "Merchandise Inquiries",
+ "marketingInquiries": "Marketing/Social Media Inquiries"
+}
\ No newline at end of file
diff --git a/common/locales/en/gear.json b/common/locales/en/gear.json
index 2dfe023c44..ff4b617cc3 100644
--- a/common/locales/en/gear.json
+++ b/common/locales/en/gear.json
@@ -133,9 +133,16 @@
"weaponMystery201411Notes": "Stab your enemies or dig in to your favorite foods - this versatile pitchfork does it all! Confers no benefit. November 2014 Subscriber Item.",
"weaponMystery201502Text": "Shimmery Winged Staff of Love and Also Truth",
"weaponMystery201502Notes": "For WINGS! For LOVE! For ALSO TRUTH! Confers no benefit. February 2015 Subscriber Item.",
+ "weaponMystery201505Text": "Green Knight Lance",
+ "weaponMystery201505Notes": "This green and silver lance has unseated many opponents from their mounts. Confers no benefit. May 2015 Subscriber Item.",
"weaponMystery301404Text": "Steampunk Cane",
"weaponMystery301404Notes": "Excellent for taking a turn about town. March 3015 Subscriber Item. Confers no benefit.",
+ "weaponArmoireBasicCrossbowText": "Basic Crossbow",
+ "weaponArmoireBasicCrossbowNotes": "This crossbow can pierce a task's armor from very far away! Increases Strength by <%= str %>, Perception by <%= per %>, and Constitution by <%= con %>. Enchanted Armoire: Independent Item.",
+ "weaponArmoireLunarSceptreText": "Soothing Lunar Sceptre",
+ "weaponArmoireLunarSceptreNotes": "The healing power of this wand waxes and wanes. Increases Constitution by <%= con %> and Intelligence by <%= int %>. Enchanted Armoire: Soothing Lunar Set (Item 3 of 3).",
+
"armor": "armor",
"armorBase0Text": "Plain Clothing",
@@ -275,9 +282,16 @@
"armorMystery201501Notes": "Galaxies shimmer in the metal of this armor, strengthening the wearer's resolve. Confers no benefit. January 2015 Subscriber Item.",
"armorMystery201503Text": "Aquamarine Armor",
"armorMystery201503Notes": "This blue mineral symbolizes good luck, happiness, and eternal productivity. Confers no benefit. March 2015 Subscriber Item.",
+ "armorMystery201504Text": "Busy Bee Robe",
+ "armorMystery201504Notes": "You'll be productive as a busy bee in this fetching robe! Confers no benefit. April 2015 Subscriber Item.",
"armorMystery301404Text": "Steampunk Suit",
"armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.",
+ "armorArmoireLunarArmorText": "Soothing Lunar Armor",
+ "armorArmoireLunarArmorNotes": "The light of the moon will make you strong and savvy. Increases Strength by <%= str %> and Intelligence by <%= int %>. Enchanted Armoire: Soothing Lunar Set (Item 2 of 3).",
+ "armorArmoireGladiatorArmorText": "Gladiator Armor",
+ "armorArmoireGladiatorArmorNotes": "To be a gladiator you must be not only cunning... but strong. Increases Perception by <%= per %> and Strength by <%= str %>. Enchanted Armoire: Gladiator Set (Item 2 of 3).",
+
"headgear": "headgear",
"headBase0Text": "No Helm",
@@ -411,11 +425,24 @@
"headMystery201412Notes": "Who's a penguin? Confers no benefit. December 2014 Subscriber Item.",
"headMystery201501Text": "Starry Helm",
"headMystery201501Notes": "The constellations flicker and swirl in this helm, guiding the wearer's thoughts towards focus. Confers no benefit. January 2015 Subscriber Item.",
+ "headMystery201505Text": "Green Knight Helm",
+ "headMystery201505Notes": "The green plume on this iron helm waves proudly. Confers no benefit. May 2015 Subscriber Item.",
"headMystery301404Text": "Fancy Top Hat",
"headMystery301404Notes": "A fancy top hat for the finest of gentlefolk! January 3015 Subscriber Item. Confers no benefit.",
"headMystery301405Text": "Basic Top Hat",
"headMystery301405Notes": "A basic top hat, just begging to be paired with some fancy head accessories. Confers no benefit. May 3015 Subscriber Item.",
+ "headArmoireLunarCrownText": "Soothing Lunar Crown",
+ "headArmoireLunarCrownNotes": "This crown strengthens health and sharpens senses, especially when the moon is full. Increases Constitution by <%= con %> and Perception by <%= per %>. Enchanted Armoire: Soothing Lunar Set (Item 1 of 3).",
+ "headArmoireRedHairbowText": "Red Hairbow",
+ "headArmoireRedHairbowNotes": "Become strong, tough and smart while wearing this beautiful Red Hairbow! Increases Strength by <%= str %>, Constitution by <%= con %>, and Intelligence by <%= int %>. Enchanted Armoire: Independent Item.",
+ "headArmoireVioletFloppyHatText": "Violet Floppy Hat",
+ "headArmoireVioletFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a pleasing purple color. Increases Perception by <%= per %>, Intelligence by <%= int %>, and Constitution by <%= con %>. Enchanted Armoire: Independent Item.",
+ "headArmoireGladiatorHelmText": "Gladiator Helm",
+ "headArmoireGladiatorHelmNotes": "To be a gladiator you must be not only strong.... but cunning. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Gladiator Set (Item 1 of 3).",
+ "headArmoireRancherHatText": "Rancher Hat",
+ "headArmoireRancherHatNotes": "Round up your pets and wrangle your mounts while wearing this magical Rancher Hat! Increases Strength by <%= str %>, Perception by <%= per %>, and Intelligence by <%= int %>. Enchanted Armoire: Independent Item.",
+
"offhand": "shield-hand item",
"shieldBase0Text": "No Shield-Hand Equipment",
@@ -494,6 +521,9 @@
"shieldMystery301405Text": "Clock Shield",
"shieldMystery301405Notes": "Time is on your side with this towering clock shield! Confers no benefit. June 3015 Subscriber Item.",
+ "shieldArmoireGladiatorShieldText": "Gladiator Shield",
+ "shieldArmoireGladiatorShieldNotes": "To be a gladiator you must.... eh, whatever, just bash them with your shield. Increases Constitution by <%= con %> and Strength by <%= str %>. Enchanted Armoire: Gladiator Set (Item 3 of 3).",
+
"backBase0Text": "No Back Accessory",
"backBase0Notes": "No Back Accessory.",
@@ -503,6 +533,8 @@
"backMystery201404Notes": "Be a butterfly and flutter by! Confers no benefit. April 2014 Subscriber Item.",
"backMystery201410Text": "Goblin Wings",
"backMystery201410Notes": "Swoop through the night on these strong wings. Confers no benefit. October 2014 Subscriber Item.",
+ "backMystery201504Text": "Busy Bee Wings",
+ "backMystery201504Notes": "Buzz buzz buzz! Flit from task to task. Confers no benefit. April 2015 Subscriber Item.",
"backSpecialWonderconRedText": "Mighty Cape",
"backSpecialWonderconRedNotes": "Swishes with strength and beauty. Confers no benefit. Special Edition Convention Item.",
@@ -525,6 +557,8 @@
"bodySpecialSummerHealerNotes": "A stylish collar of live coral! Confers no benefit. Limited Edition 2014 Summer Gear.",
"headAccessory": "head accessory",
+ "accessories": "Accessories",
+ "animalEars": "Animal Ears",
"headAccessoryBase0Text": "No Head Accessory",
"headAccessoryBase0Notes": "No Head Accessory.",
@@ -546,7 +580,24 @@
"headAccessorySpecialSpring2015MageNotes": "These ears listen keenly, in case somewhere a magician is revealing secrets. Confers no benefit. Limited Edition 2015 Spring Gear.",
"headAccessorySpecialSpring2015HealerText": "Green Kitty Ears",
"headAccessorySpecialSpring2015HealerNotes": "These cute kitty ears will make others green with envy. Confers no benefit. Limited Edition 2015 Spring Gear.",
-
+
+ "headAccessoryBearEarsText": "Bear Ears",
+ "headAccessoryBearEarsNotes": "These ears make you look like a cuddly bear! Confers no benefit.",
+ "headAccessoryCactusEarsText": "Cactus Ears",
+ "headAccessoryCactusEarsNotes": "These ears make you look like a prickly cactus! Confers no benefit.",
+ "headAccessoryFoxEarsText": "Fox Ears",
+ "headAccessoryFoxEarsNotes": "These ears make you look like a wily fox! Confers no benefit.",
+ "headAccessoryLionEarsText": "Lion Ears",
+ "headAccessoryLionEarsNotes": "These ears make you look like a regal lion! Confers no benefit.",
+ "headAccessoryPandaEarsText": "Panda Ears",
+ "headAccessoryPandaEarsNotes": "These ears make you look like a gentle panda! Confers no benefit.",
+ "headAccessoryPigEarsText": "Pig Ears",
+ "headAccessoryPigEarsNotes": "These ears make you look like a whimsical pig! Confers no benefit.",
+ "headAccessoryTigerEarsText": "Tiger Ears",
+ "headAccessoryTigerEarsNotes": "These ears make you look like a fierce tiger! Confers no benefit.",
+ "headAccessoryWolfEarsText": "Wolf Ears",
+ "headAccessoryWolfEarsNotes": "These ears make you look like a loyal wolf! Confers no benefit.",
+
"headAccessoryMystery201403Text": "Forest Walker Antlers",
"headAccessoryMystery201403Notes": "These antlers shimmer with moss and lichen. Confers no benefit. March 2014 Subscriber Item.",
"headAccessoryMystery201404Text": "Twilight Butterfly Antennae",
diff --git a/common/locales/en/generic.json b/common/locales/en/generic.json
index 79b346fa49..d92d82a524 100644
--- a/common/locales/en/generic.json
+++ b/common/locales/en/generic.json
@@ -5,7 +5,20 @@
"habitica": "Habitica",
"expandToolbar": "Expand Toolbar",
"collapseToolbar": "Collapse Toolbar",
- "formattingMarkdown": "Markdown formatting allowed",
+ "markdownBlurb": "HabitRPG uses markdown for message formatting. See the Markdown Cheat Sheet for more info.",
+ "showFormattingHelp": "Show formatting help",
+ "hideFormattingHelp": "Hide formatting help",
+ "youType": "You type:",
+ "youSee": "You see:",
+ "italics": "*Italics*",
+ "bold": "**Bold**",
+ "strikethrough": "~~Strikethrough~~",
+ "emojiExample": ":smile:",
+ "markdownLinkEx": "[HabitRPG is great!](https://habitrpg.com)",
+ "markdownImageEx": "",
+ "unorderedListHTML": "+ First item
+ Second item
+ Third item",
+ "unorderedListMarkdown": "+ First item\n+ Second item\n+ Third item",
+ "code": "`code`",
"achievements": "Achievements",
"modalAchievement": "Achievement!",
"special": "Special",
@@ -26,7 +39,7 @@
"close": "Close",
"saveAndClose": "Save & Close",
"cancel": "Cancel",
- "ok": "Ok",
+ "ok": "OK",
"add": "Add",
"undo": "Undo",
"continue": "Continue",
@@ -41,7 +54,7 @@
"gems": "Gems",
"gemButton": "You have <%= number %> Gems.",
"moreInfo": "More Info",
- "gemsWhatFor": "Purchased using real money. Used for buying special items and services (eggs, hatching potions, Fortify, etc.). You'll need to unlock those features before being able to use Gems.",
+ "gemsWhatFor": "Click to buy Gems! Gems let you purchase special items like Quests, avatar customizations, and seasonal equipment.",
"veteran": "Veteran",
"veteranText": "Has weathered Habit The Grey (our pre Angular website), and has gained many battle-scars from its bugs.",
"originalUser": "Original User!",
@@ -57,7 +70,6 @@
"lastLoggedIn": "- Last logged in",
"notPorted": "This feature is not yet ported from the original site.",
"buyThis": "Buy this <%= text %> with <%= price %> of your <%= gems %> Gems?",
- "untilNoFace": "Until we add Facebook, use your UUID and API Token to log in (found at https://habitrpg.com > Options > Settings).",
"noReachServer": "Server not currently reachable, try again later",
"errorUpCase": "ERROR:",
"newPassSent": "New password sent.",
diff --git a/common/locales/en/groups.json b/common/locales/en/groups.json
index c5c2cf8183..688683fc94 100644
--- a/common/locales/en/groups.json
+++ b/common/locales/en/groups.json
@@ -2,7 +2,7 @@
"tavern": "Tavern",
"innCheckOut": "Check Out of Inn",
"innCheckIn": "Rest in the Inn",
- "innText": "How's your stay in the Inn, <%= name %>? To protect you, your daily list is frozen. Your checkmarks won't be processed or cleared until tomorrow (the day after you check out). Be careful, if your party's in a Boss Battle, their misses will hurt you! Also, you won't hurt the boss. Ready to leave? Check out.",
+ "innText": "You're resting in the Inn! While checked-in, your Dailies won't hurt you at the day's end, but they will still refresh every day. Be warned: If you are participating in a Boss Quest, the Boss will still damage you for your party mates' missed Dailies unless they are also in the Inn! Also, your own damage to the Boss (or items collected) will not be applied until you check out of the Inn.",
"lfgPosts": "Looking for Group (Party Wanted) Posts",
"tutorial": "Tutorial",
"glossary": "Glossary",
@@ -39,6 +39,8 @@
"editGroup": "Edit Group",
"newGroupName": "<%= groupType %> Name",
"groupName": "Group Name",
+ "groupLeader": "Group Leader",
+ "groupID": "Group ID",
"groupDescr": "Description shown in public Guilds list (Markdown OK)",
"logoUrl": "Logo URL",
"assignLeader": "Assign Group Leader",
@@ -96,5 +98,28 @@
"abuseReported": "Thank you for reporting this violation. The moderators have been notified.",
"abuseAlreadyReported": "You have already reported this message.",
"needsText": "Please type a message.",
- "needsTextPlaceholder": "Type your message here."
+ "needsTextPlaceholder": "Type your message here.",
+ "copyMessageAsToDo": "Copy message as To-Do",
+ "messageAddedAsToDo": "Message copied as To-Do.",
+ "messageWroteIn": "<%= user %> wrote in <%= group %>",
+ "msgPreviewHeading": "Message Preview",
+ "leaderOnlyChallenges": "Only group leader can create challenges",
+ "sendGift": "Send Gift",
+ "inviteFriends": "Invite Friends",
+ "inviteAlertInfo": "Invite friends by User ID here.",
+ "inviteExistUser": "Invite Existing User",
+ "inviteByEmail": "Invite friends by email. If they join via your email, they'll automatically be invited to this group.",
+ "byColon": "By:",
+ "inviteNewUsers": "Invite New User(s)",
+ "inviteAlertInfo2": "Or share this link (copy/paste):",
+ "sendGiftHeading": "Send Gift to <%= name %>",
+ "sendGiftGemsBalance": "From <%= number %> Gems",
+ "sendGiftCost": "Total: $<%= cost %> USD",
+ "sendGiftFromBalance": "From Balance",
+ "sendGiftPurchase": "Purchase",
+ "sendGiftMessagePlaceholder": "Personal message (optional)",
+ "sendGiftSubscription": "<%= months %> Month(s): $<%= price %>",
+ "inviteFriends": "Invite Friends",
+ "startAParty": "Start a Party",
+ "addToParty": "Add someone to your party"
}
diff --git a/common/locales/en/messages.json b/common/locales/en/messages.json
index e14f302fe0..9eb8e49b08 100644
--- a/common/locales/en/messages.json
+++ b/common/locales/en/messages.json
@@ -1,6 +1,7 @@
{
"messageLostItem": "Your <%= itemText %> broke.",
"messageTaskNotFound": "Task not found.",
+ "messageDuplicateTaskID": "A task with that ID already exists.",
"messageTagNotFound": "Tag not found.",
"messagePetNotFound": ":pet not found in user.items.pets",
"messageFoodNotFound": ":food not found in user.items.food",
@@ -20,5 +21,8 @@
"messageDropFood": "You've found <%= dropArticle %><%= dropText %>! <%= dropNotes %>",
"messageDropEgg": "You've found a <%= dropText %> Egg! <%= dropNotes %>",
"messageDropPotion": "You've found a <%= dropText %> Hatching Potion! <%= dropNotes %>",
- "messageFoundQuest": "You've found the quest \"<%= questText %>\"!"
+ "messageFoundQuest": "You've found the quest \"<%= questText %>\"!",
+ "armoireEquipment": "<%= image %> You found a piece of rare Equipment in the Armoire: <%= dropText %>! Awesome!",
+ "armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropArticle %><%= dropText %>. What's that doing in here?",
+ "armoireExp": "You wrestle with the Armoire and gain Experience. Take that!"
}
diff --git a/common/locales/en/npc.json b/common/locales/en/npc.json
index b18d6e16e0..0bd0063cd0 100644
--- a/common/locales/en/npc.json
+++ b/common/locales/en/npc.json
@@ -2,11 +2,11 @@
"npc": "NPC",
"npcText": "Backed the Kickstarter project at the maximum level!",
"mattBoch": "Matt Boch",
- "mattShall": "Shall I bring you your steed, <%= name %>? Click a mount to saddle up.",
- "mattBochText1": "Welcome to the Stable! I'm Matt, the beast master. Choose a pet here to venture at your side. Feed them and they'll grow into powerful steeds.",
+ "mattShall": "Shall I bring you your steed, <%= name %>? Once you've fed a pet enough food to turn it into a mount, it will appear here. Click a mount to saddle up!",
+ "mattBochText1": "Welcome to the Stable! I'm Matt, the beast master. After level 4, you can hatch pets using eggs and potions. When you hatch a pet in the Market, it will appear here! Click a pet's image to add it to your avatar. Feed them with the food you find after level 4, and they'll grow into powerful mounts.",
"daniel": "Daniel",
- "danielText": "Welcome to the Tavern! Stay a while and meet the locals. If you need to rest (vacation? illness?), I'll set you up at the inn. While checked-in, your Dailies are frozen as-is (checked/unchecked) until the day after check-out. You will not suffer for missing them at the day's end.",
- "danielText2": "Be warned: If you are participating in a boss quest, the boss will still damage you for your party mates' missed Dailies!",
+ "danielText": "Welcome to the Tavern! Stay a while and meet the locals. If you need to rest (vacation? illness?), I'll set you up at the Inn. While checked-in, your Dailies won't hurt you at the day's end, but you can still check them off.",
+ "danielText2": "Be warned: If you are participating in a boss quest, the boss will still damage you for your party mates' missed Dailies! Also, your own damage to the Boss (or items collected) will not be applied until you check out of the Inn.",
"alexander": "Alexander the Merchant",
"welcomeMarket": "Welcome to the Market! Buy hard-to-find eggs and potions! Sell your extras! Commission useful services! Come see what we have to offer.",
"sellForGold": "Sell <%= item %> for <%= gold %> Gold",
@@ -18,7 +18,7 @@
"dismissAlert": "Dismiss This Alert",
"donateText1": "Adds 20 Gems to your account. Gems are used to buy special in-game items, such as shirts and hairstyles.",
"donateText2": "Help support HabitRPG",
- "donateText3": "As an open source project, it can use all the help we can get!",
+ "donateText3": "HabitRPG is an open source project that depends on our users for support. The money you spend on gems helps us keep the servers running, maintain a small staff, develop new features, and provide incentives for our volunteer programmers. Thank you for your generosity!",
"donationDesc": "20 Gems, Donation to HabitRPG",
"payWithCard": "Pay with Card",
"payNote": "Note: PayPal sometimes takes a long time to clear. We recommend paying with card.",
@@ -48,10 +48,36 @@
"tourMuchMore": "When you're done with tasks, you can form a Party with friends, chat in the shared-interest Guilds, join Challenges, and more!",
"tourStatsPage": "This is your Stats page! Earn achievements by completing the listed tasks.",
- "tourTavernPage": "Welcome to the Tavern, an all-ages chatroom! You can freeze your account in case of illness or travel by clicking \"Rest in the Inn.\" Come say hi!",
+ "tourTavernPage": "Welcome to the Tavern, an all-ages chat room! You can keep your Dailies from hurting you in case of illness or travel by clicking \"Rest in the Inn.\" Come say hi!",
"tourPartyPage": "Your Party will help you stay accountable. Invite friends to unlock a Quest Scroll!",
- "tourGuildsPage": "Guilds are social groups with common themes. Search for the subjects that interest you! We recommend the Newbies Guild.",
- "tourChallengesPage": "Joining a Challenge will add tasks to your account. Compete against other users to win gem prizes!",
- "tourMarketPage": "Starting at Level 4, eggs and hatching potions drop randomly when you complete tasks. They appear here - use them to hatch pets! You can also buy items from the Market."
+ "tourGuildsPage": "Guilds are common-interest chat groups created by the players, for the players. Browse through the list and join the Guilds that interest you. Be sure to check out the popular Newbies Guild, where anyone can ask questions about HabitRPG!",
+ "tourChallengesPage": "Challenges are themed task lists created by users! Joining a Challenge will add its tasks to your account. Compete against other users to win Gem prizes!",
+ "tourMarketPage": "Starting at Level 4, eggs and hatching potions drop randomly when you complete tasks. They appear here - use them to hatch pets! You can also buy items from the Market.",
+ "tourHallPage": "Welcome to the Hall of Heroes, where open-source contributors to HabitRPG are honored. Whether through code, art, music, writing, or even just helpfulness, they have earned Gems, exclusive equipment, and prestigious titles. You can contribute to HabitRPG, too!",
+ "tourPetsPage": "This is the Stable! After level 4, you can hatch pets using eggs and potions. When you hatch a pet in the Market, it will appear here! Click a pet's image to add it to your avatar. Feed them with the food you find after level 4, and they'll grow into powerful mounts.",
+ "tourMountsPage": "Once you've fed a pet enough food to turn it into a mount, it will appear here. (Pets, mounts, and food are available after level 4.) Click a mount to saddle up!",
+ "tourEquipmentPage": "This is where your Equipment is stored! Your Battle Gear affects your stats. If you want to show different Equipment on your avatar without changing your stats, click \"Enable Costume.\"",
+ "tourOkay": "Okay!",
+ "tourAwesome": "Awesome!",
+ "tourSplendid": "Splendid!",
+ "tourNifty": "Nifty!",
+
+ "tourAvatar": "Customize Your Avatar
The Golden Knight has been getting on poor Habiticans' cases. Didn't do all of your Dailies? Checked off a negative Habit? She will use this as a reason to harass you about how you should follow her example. She is the shining example of a perfect Habitican, and you are naught but a failure. Well, that is not nice at all! Everyone makes mistakes. They should not have to be met with such negativity for it. Perhaps it is time you gather some testimonies from hurt Habiticans and give the Golden Knight a stern talking-to!
", + "questGoldenknight1Notes": "The Golden Knight has been getting on poor Habiticans' cases. Didn't do all of your Dailies? Ticked off a negative Habit? She will use this as a reason to harass you about how you should follow her example. She is the shining example of a perfect Habitican, and you are naught but a failure. Well, that is not nice at all! Everyone makes mistakes. They should not have to be met with such negativity for it. Perhaps it is time you gather some testimonies from hurt Habiticans and give the Golden Knight a stern talking-to!
", "questGoldenknight1CollectTestimony": "Testimonies", "questGoldenknight1DropGoldenknight2Quest": "The Golden Knight Chain Part 2: Tarnished Gold (Scroll)", "questGoldenknight2Text": "Gold Knight", @@ -180,7 +180,7 @@ "questTRexDropTRexEgg": "Tyrannosaur (Egg)", "questTRexUnlockText": "Unlocks purchasable tyrannosaur eggs in the Market", "questRockText": "Escape the Cave Creature", - "questRockNotes": "Crossing Habitica's Meandering Mountains with some friends, you make camp one night in a beautiful cave laced with shining minerals. But when you wake up the next morning, the entrance has disappeared, and the floor of the cave is shifting underneath you.ゴールデン・ナイトは、貧しいHabiticansのケースに乗っていました。あなたの日々のタスクを全てやりませんでしたか?悪い習慣のチェックは外しましたか?あなたがどのように彼女の例に続かなければならないかについて、あなたを悩ます理由として、彼女はこれを使います。彼女は完全なHabiticanの輝く代表例です。そして、あなたは失敗以外のなにものでもありません。さて、それはまったく素晴らしくありません!誰でも、間違いをおかします。彼らは、そのために否定的に応じられる必要はありません。おそらく、あなたが傷つくHabiticansからいくらかの証言を集めて、ゴールデン・ナイトに厳しいお説教をする時です!
", + "questGoldenknight1Notes": "ゴールデン・ナイトは、貧しいHabiticansのケースに乗っていました。あなたの日課を全てやりませんでしたか?悪い習慣のチェックは外しましたか?あなたがどのように彼女の例に続かなければならないかについて、あなたを悩ます理由として、彼女はこれを使います。彼女は完全なHabiticanの輝く代表例です。そして、あなたは失敗以外のなにものでもありません。さて、それはまったく素晴らしくありません!誰でも、間違いをおかします。彼らは、そのために否定的に応じられる必要はありません。おそらく、あなたが傷つくHabiticansからいくらかの証言を集めて、ゴールデン・ナイトに厳しいお説教をする時です!
", "questGoldenknight1CollectTestimony": "証言", "questGoldenknight1DropGoldenknight2Quest": "ゴールデンナイトチェーン パート2:光沢を失った黄金(スクロール)", "questGoldenknight2Text": "ゴールドナイト", @@ -103,7 +103,7 @@ "questGoldenknight3DropGoldenPotion": "ゴールデンハッチングポーション", "questGoldenknight3DropWeapon": "ムステインのマイルストーンマッシュモーニングスター(利き手でないほうの手に装備する武器)", "questBasilistText": "バジリスト", - "questBasilistNotes": "市場には、あなたたちは出て行くべきだというたぐいの興奮があります。勇敢な冒険者になろうとして、それに向かっている替わりに、未完のToDoの塊と融合しているバジリストを見つけましょう。すぐ近くのHabiticanはバジリストの長さに恐怖し麻痺していて。動き出せません。近所のどこかから@Arcosineの叫びが聞こえます「急いで!ToDoと毎日のタスクを完了させてモンスターを無力化しよう、誰かが紙で切ってしまう前に!」冒険者よ、速く且つ注意深く攻撃し、チェックオフしましょう!もしあなたが毎日のタスクをどれかを未実施のままにしたら、バジリストはあなたとあなたのパーティを攻撃するでしょう!", + "questBasilistNotes": "市場には、あなたたちは出て行くべきだというたぐいの興奮があります。勇敢な冒険者になろうとして、それに向かっている替わりに、未完のToDoの塊と融合しているバジリストを見つけましょう。すぐ近くのHabiticanはバジリストの長さに恐怖し麻痺していて。動き出せません。近所のどこかから@Arcosineの叫びが聞こえます「急いで!ToDoと日課を完了させてモンスターを無力化しよう、誰かが紙で切ってしまう前に!」冒険者よ、速く且つ注意深く攻撃し、チェックオフしましょう!もしあなたが日課をどれかを未実施のままにしたら、バジリストはあなたとあなたのパーティを攻撃するでしょう!", "questBasilistCompletion": "バジリストは紙くずに散らばっていて、虹色に揺らめいています。「やれやれ!」と@Arcosineが言います。「君たちがここにいて良かった!」以前より手慣れて感じて、あなたは紙のあいだから落ちたゴールドを集めます。", "questBasilistBoss": "バジリスト", "questEggHuntText": "卵狩り", @@ -112,14 +112,14 @@ "questEggHuntCollectPlainEgg": "プレン卵", "questEggHuntDropPlainEgg": "プレン卵", "questDilatoryText": "ドレッドディラトリードラゴン", - "questDilatoryNotes": "私たちはその警告に注意するべきでした。
暗く輝く目。いにしえの鱗。がっしりした顎。輝く歯。私たちはぞっとする存在: ドレッドディラトリードラゴンを裂け目から呼び起こしてしまいました!海から体を起こし、恐ろしい長い首を何百フィートものばし、焼けるような咆哮で窓を砕くと、Habiticanは四方八方へ逃げました。
「これがグズグズ引き延ばしているに違いない!」Lemonessが叫びます。「これは無視されたタスクの重要な部分ではありません。暗く赤い毎日のタスクは注意をひきます!」
「魔法の力が押し寄せてくる!」@Baconsaurが叫びます。「ここまで生き延びているから、ドラゴンは自分を治癒できるに違いない!どうしたら倒せるだろう?」
なぜ同じ方法で全ての野獣を倒せたのか、生産性です!Habiticaは素早く団結してタスクを削除し私たち全員が一緒にこのモンスターと戦うのです。(以前のクエストを捨てる必要はありません。私たちはあなたの二重攻撃の能力を信じています!)ドラゴンは我々を個別に攻撃しないでしょうが、毎日のタスクをスキップすればするほど無視攻撃の契機が近づいてきます。そして私はこのドラゴンが酒場を見る目付きが好きではありません....
", + "questDilatoryNotes": "私たちはその警告に注意するべきでした。
暗く輝く目。いにしえの鱗。がっしりした顎。輝く歯。私たちはぞっとする存在: ドレッドディラトリードラゴンを裂け目から呼び起こしてしまいました!海から体を起こし、恐ろしい長い首を何百フィートものばし、焼けるような咆哮で窓を砕くと、Habiticanは四方八方へ逃げました。
「これがグズグズ引き延ばしているに違いない!」Lemonessが叫びます。「これは無視されたタスクの重要な部分ではありません。暗く赤い日課は注意をひきます!」
「魔法の力が押し寄せてくる!」@Baconsaurが叫びます。「ここまで生き延びているから、ドラゴンは自分を治癒できるに違いない!どうしたら倒せるだろう?」
なぜ同じ方法で全ての野獣を倒せたのか、生産性です!Habiticaは素早く団結してタスクを削除し私たち全員が一緒にこのモンスターと戦うのです。(以前のクエストを捨てる必要はありません。私たちはあなたの二重攻撃の能力を信じています!)ドラゴンは我々を個別に攻撃しないでしょうが、日課をスキップすればするほど無視攻撃の契機が近づいてきます。そして私はこのドラゴンが酒場を見る目付きが好きではありません....
", "questDilatoryBoss": "ドレッドディラトリードラゴン", "questDilatoryBossRageTitle": "打撃を無視しなさい", "questDilatoryBossRageDescription": "このバーがいっぱいになった時、ドレッドディラトリードラゴンはHabiticaの地形に大きな大破壊を浴びせます。", "questDilatoryDropMantisShrimpPet": "シャコ(ペット)", "questDilatoryDropMantisShrimpMount": "シャコ(マウント)", - "questDilatoryBossRageTavern": "”ドレッドドラゴンはネグレクトストライクを放しました”\n\n私達は最善の努力を尽くしましたが、いくつかのダイアリーを見落としてしまいました。 彼らの暗い赤色がドレッドドラゴンの怒りを掻きあげました。 恐ろしいネグレクトストライクで酒屋をめちゃくちゃにしました!幸運なことに私達は近くの街の宿にいたので安全でした。あなたたちはまだチャットを続けられます....しかし、貧しいバーテンダーのダニエルは最愛の建物が崩れていくのを見ているしかなかったです。!\n\nドレッドドラゴンがまた攻撃をして来ないことを祈ります!", - "questDilatoryBossRageStables": "”ドレッドドラゴンはネグレクトストライクを放しました”\n\nあぁ!私たちはまたダイアリーをいっぱいやり残していました。ドレッドドラゴンはネグレクトストライクを解き放ちました!ペットたちは四方八方に逃げています。幸いなことに私たちは安全です。\n\n悲惨なHabitica!もう二度とこんなことが起こらないことを祈ります。はやくタスクをやらなければ!", + "questDilatoryBossRageTavern": "”ドレッドドラゴンはネグレクトストライクを放しました”\n\n私達は最善の努力を尽くしましたが、いくつかの日課を見落としてしまいました。 彼らの暗い赤色がドレッドドラゴンの怒りを掻きあげました。 恐ろしいネグレクトストライクで酒屋をめちゃくちゃにしました!幸運なことに私達は近くの街の宿にいたので安全でした。あなたたちはまだチャットを続けられます....しかし、貧しいバーテンダーのダニエルは最愛の建物が崩れていくのを見ているしかなかったです。!\n\nドレッドドラゴンがまた攻撃をして来ないことを祈ります!", + "questDilatoryBossRageStables": "”ドレッドドラゴンはネグレクトストライクを放しました”\n\nあぁ!私たちはまた日課をいっぱいやり残していました。ドレッドドラゴンはネグレクトストライクを解き放ちました!ペットたちは四方八方に逃げています。幸いなことに私たちは安全です。\n\n悲惨なHabitica!もう二度とこんなことが起こらないことを祈ります。はやくタスクをやらなければ!", "questDilatoryBossRageMarket": "”ドレッドドラゴンはネグレクトストライクを放しました”\n\nああ!商人のアレックスはちょうどドレッドドラゴンのネグレクトストライクによって店を粉々に破壊されました。しかし、ドレッドドラゴンを追い詰めたようにも見えます。他の攻撃を繰り出す力があるかもしれません。\n\nだから動じないで、Habitica!この獣を私たちの海岸から追い出しましょう!", "questDilatoryCompletion": "”ドレッドドラゴンを倒しました”\n\nついにやりました!最後の叫び声とともに、ドレッドドラゴンは倒れて遠く、遠くまで流されました。Habitica人たちは歓声を上げて海岸で一列になっています。私たちはマット、ダニエルとアレックスの建物の再建に手伝いました。しかし、これは何でしょうか?\n\n”住民たちは戻りました!”\n\n今ドレッドドラゴンは既に逃げ出し、数千もののキラキラした色が海から浮き出てきました。それはカマキリエビの群れです。そして....その中に数百の人魚たちもいます!\n\n”私たちはディラトリーに囚われた民です!”と彼らのリーダーのマンタが説明します。”ドレッドドラゴンが沈没した時、私たちが海の中でも生きられるようにカマキリエビたちが呪文を唱えて私たちを人魚にしてくれたんです。しかし、それに怒って、ドレッドドラゴンは私たちを暗い裂け目に閉じ込めました。もう何百年もそこに閉じ込められましたが、今やっと自由になって街を建て直すことができます!”\n\n”ありがとうございます。”彼の友達@Ottlが言います。”このペットのカマキリエビとマウントペットのカマキリエビの他に、経験値、ゴールド、そして私たちの永遠の感謝の気持を受け取ってください。”\n\n”報酬”\n*ペット カマキリエビ\n*マウントペット カマキリエビ\n*チョコレート、青の綿飴、ピンクの綿飴、魚、蜂蜜、肉、ミルク、じゃがいも、腐った肉、いちご", "questSeahorseText": "ディラトリーダービー", @@ -154,16 +154,16 @@ "questPenguinDropPenguinEgg": "ペンギン(卵)", "questPenguinUnlockText": "市場でのペンギンの卵購入のアンロック", "questStressbeastText": "Stoïkalm草原の不快なストレス獣", - "questStressbeastNotes": "毎日のタスクとTodoを完了させてワールドボスにダメージを与えましょう!未完了の毎日のタスクはストレスストライクバーを充填します。ストレスストライクバーが満杯になるとワールドボスはNPCを攻撃します。ワールドボスは個々の個人やアカウントに対してはどのような形でも決して攻撃しないでしょう。宿屋に泊まっていないアクティブなアカウントだけが未完のタスクを勘定されます。A Cavaleira Dourada tem pego no pé dos pobres Habiticanos. Não fez todas as suas tarefas diárias? Checou um hábito negativo? Ela irá usar isso como motivo para atormentá-lo sobre como você deveria seguir seu exemplo. Ela é o exemplo ilustre de um perfeito Habiticano e você, não é nada mais que um fracassado. Hora, isso não é nada gentil! Todo mundo comete erros. Eles não deveriam ter de lidar com tamanha negatividade por causa disso. Talvez seja hora de acumular alguns depoimentos de Habiticanos abatidos e dar à Cavaleira Dourada a bronca que ela merece!
", + "questGoldenknight1Notes": "A Amazona Dourada tem pego no pé dos pobres Habiticanos. Não fez todas as suas tarefas diárias? Checou um hábito negativo? Ela irá usar isso como motivo para atormentá-lo sobre como você deveria seguir seu exemplo. Ela é o exemplo ilustre de um perfeito Habiticano, e você não é nada mais que um fracassado. Bem, isso não é nada gentil! Todo mundo comete erros. Eles não deveriam ter de lidar com tamanha negatividade por causa disso. Talvez seja hora de reunir alguns depoimentos de Habiticanos atingidos e dar à Amazona Dourada a bronca que ela merece!
", "questGoldenknight1CollectTestimony": "Testemunhos", "questGoldenknight1DropGoldenknight2Quest": "Arco da Cavaleira Dourada, Parte 2: Ouro Deslustrado (Pergaminho)", "questGoldenknight2Text": "Cavaleira Dourada", @@ -191,10 +191,16 @@ "questBunnyCompletion": "Com um golpe final, a coelha assassina vai ao chão. Uma névoa brilhante surge ao redor do seu corpo enquanto ela encolhe, até tornar-se uma pequena coelha... que não se parece em nada com a fera cruel que você enfrentou há um momento atrás. O nariz dela move-se de forma adorável; e, pulando, ela vai embora, deixando alguns ovos para trás. @Gully gargalha. \"O Monte da Procrastinação consegue fazer com que mesmo os menores desafios pareçam insuperáveis. Vamos coletar estes ovos e ir para casa.\"", "questBunnyDropBunnyEgg": "Coelho (Ovo)", "questBunnyUnlockText": "Desbloqueia ovos de coelho para compra no Mercado", - "questSlimeText": "The Jelly Regent", - "questSlimeNotes": "As you work on your tasks, you notice you are moving slower and slower. \"It's like walking through molasses,\" @Leephon grumbles. \"No, like walking through jelly!\" @starsystemic says. \"That slimy Jelly Regent has slathered his stuff all over Habitica. It's gumming up the works. Everybody is slowing down.\" You look around. The streets are slowly filling with clear, colorful ooze, and Habiticans are struggling to get anything done. As others flee the area, you grab a mop and prepare for battle!", - "questSlimeBoss": "Jelly Regent", - "questSlimeCompletion": "With a final jab, you trap the Jelly Regent in an over-sized donut, rushed in by @Overomega, @LordDarkly, and @Shaner, the quick-thinking leaders of the pastry club. As everyone is patting you on the back, you feel someone slip something into your pocket. It’s the reward for your sweet success: three Marshmallow Slime eggs.", - "questSlimeDropSlimeEgg": "Marshmallow Slime (Egg)", - "questSlimeUnlockText": "Unlocks purchasable slime eggs in the Market" + "questSlimeText": "O Regente Geléia", + "questSlimeNotes": "Na medida em que você trabalha nas suas tarefas, você nota que está se movendo cada vez mais devagar. \"É como andar pelo melado\", resmunga @Leephon. \"Não, é como andar pela geléia!\" diz @starsystemic. \"Aquele viscoso Regente Geléia derramou suas coisas por toda Habitica. Isto está emperrando os trabalhos. Todo mundo está ficando lento! Você olha ao redor. As ruas estão, aos poucos, se enchendo com uma gosma límpida e colorida, e os Habiticanos estão se debatendo para fazer suas coisas. Enquanto alguns fogem da área, você pega o esfregão e se prepara para a batalha! ", + "questSlimeBoss": "Regente Geléia", + "questSlimeCompletion": "Com um soco final, você tranca o Regente Geléia em uma rosquinha gigante, auxiliado por @Overomega, @LordDarkly e @Shaner, os espertos lideres do clube da confeitaria. Enquanto todos estão lhe parabenizando, você sente algo escorregar para dentro de seu bolso. É a recompensa por seu doce sucesso: três ovos de Gosma Marshmallow. ", + "questSlimeDropSlimeEgg": "Gosma Marshmallow (Ovo)", + "questSlimeUnlockText": "Destranca ovos de gosma para compra no Mercado", + "questSheepText": "O Carneiro do Trovão", + "questSheepNotes": "Enquanto perambula pela zona rural Tarefana com seus amigos, dando uma \"pausa rápida\" em suas obrigações, você encontra uma loja aconchegante de linhas para costura. Você está tão absorvido em sua procrastinação que mal percebe as nuvens sinistras que se arrastam sobre o horizonte. \"Eu tenho um ma-a-a-al pressentimento sobre este tempo,\" murmura @Misceo, e você olha para cima. As nuvens tempestuosas se unem e giram em um turbilhão, e elas se parecem muito com um... \"Nós não temos tempo para contemplar nuvens!\" @starsystemic grita. \"Está atacando!\" O Carneiro do Trovão se move, correndo rapidamente e violentamente, lançando raios bem na sua direção!", + "questSheepBoss": "Carneiro do Trovão", + "questSheepCompletion": "Impressionado pela sua diligência, o Carneiro do Trovão deixa a raiva ir embora. Ele atira três enormes pedras de granizo na sua direção; e então, lentamente, desaparece, emitindo um estrondo grave. Ao olhar mais atentamente, você descobre que as pedras de granizo eram, na verdade, três ovos macios e peludos. Você os recolhe, e depois caminha calmamente de volta para casa sob um céu azul.", + "questSheepDropSheepEgg": "Ovelha (Ovo)", + "questSheepUnlockText": "Desbloqueia ovos de ovelha para comprar no Mercado" } \ No newline at end of file diff --git a/common/locales/pt/settings.json b/common/locales/pt/settings.json index 4c1ea83006..7cec019b18 100644 --- a/common/locales/pt/settings.json +++ b/common/locales/pt/settings.json @@ -41,10 +41,10 @@ "json": "(JSON)", "customDayStart": "Início do Dia Personalizado", "24HrClock": "Relógio 24hrs", - "customDayStartInfo1": "HabitRPG defaults to check and reset your Dailies at midnight in your own time zone each day. It is recommended that you read the following information before changing it:", - "customDayStartInfo2": "(show more)", - "customDayStartInfo3": "(show less)", - "customDayStartInfo4": "Complete all your Dailies before changing the Custom Day Start or Rest in the Inn that day. Changing your Custom Day Start may cause Cron to run immediately, but after the first day it works as expected.Страшная болезнь поразила Хаббитанцев. Давно забытые плохие Привычки растут с удвоенной силой. Тарелки лежат немытые, учебники не прочитаны и прокрастинация достигает угрожающего размаха!
Вы проследили, как некоторые из ваших плохих привычек вернулись на Болота Застоя и обнаружили виновника: призрачная Некромантша, Рецидивина. Вы ринулись вперед, размахивая оружием, но они их удары не причиняют призраку вреда.
\"Не беспокоить\", - прошипела она с сухим треском. \"Без ожеоелья лунных камней, ничто не может причинить мне вред, а мастер-ювелир @aurakami давно разбросал все лунные камни по Хаббитике!\" Задыхаясь, вы отступаете... но вы знаете, что нужно сделать.
", + "questMoonstone1Notes": "Страшная болезнь поразила Хаббитанцев. Давно забытые плохие Привычки растут с удвоенной силой. Тарелки лежат немытые, учебники не прочитаны и прокрастинация достигает угрожающего размаха!
Вы проследили, как некоторые из ваших плохих привычек вернулись на Болота Застоя и обнаружили виновника: призрачная Некромантша, Рецидивина. Вы ринулись вперед, размахивая оружием, но они их удары не причиняют призраку вреда.
\"Не беспокоить\", – прошипела она с сухим треском. \"Без ожеоелья лунных камней, ничто не может причинить мне вред, а мастер-ювелир @aurakami давно разбросал все лунные камни по Хаббитике!\" Задыхаясь, вы отступаете... но вы знаете, что нужно сделать.
", "questMoonstone1CollectMoonstone": "Лунные камни", "questMoonstone1DropMoonstone2Quest": "Ожерелье лунных камней, часть 2: Некромант Рецидивина (Свиток)", "questMoonstone2Text": "Некромант Рецидивина", - "questMoonstone2Notes": "Отважный оружейник @Inventrix помог вам сковать зачарованные лунные камни в ожерелье. Теперь вы готовы противостоять Рецидивине, но как только вы зашли в Болота Застоя, страшный холод окутал вас.
Гнилое дыхание прошептало вам на ухо. \"Вернулся? Какая прелесть...\" Вы попятились и сделали выпод, под светом ожерелья лунных камней, ваше оружие поразило твердую плоть. \"Вы еще призовете меня обратно в мир\", - огрызнулась Рецидивина, - \"но сейчас твое время распрощаться с ним!\"
", + "questMoonstone2Notes": "Отважный оружейник @Inventrix помог вам сковать зачарованные лунные камни в ожерелье. Теперь вы готовы противостоять Рецидивине, но как только вы зашли в Болота Застоя, страшный холод окутал вас.
Гнилое дыхание прошептало вам на ухо. \"Вернулся? Какая прелесть...\" Вы попятились и сделали выпод, под светом ожерелья лунных камней, ваше оружие поразило твердую плоть. \"Вы еще призовете меня обратно в мир\", – огрызнулась Рецидивина, – \"но сейчас твое время распрощаться с ним!\"
", "questMoonstone2Boss": "Некромант", "questMoonstone2DropMoonstone3Quest": "Ожерелье лунных камней, часть 3: Рецидивина трансформировалась (Свиток)", "questMoonstone3Text": "Рецидивина трансформировалась", - "questMoonstone3Notes": "Рецидивина упала на землю, и вы ударили ее ожерельем лунным камней. К вашему ужасу Рецидивина схватила самоцветы, ее взгляд наполнился торжеством.
\"Глупое создание из плоти!\"- закричала она. \"Эти лунные камни восстановят физическую оболочку, правда, не так, как ты себе представляешь. Как только полная луна появится из темноты - это наполнит меня силой. Из теней я призываю призрак твоего самого страшного врага!\"
Болезненный зеленый туман поднимается из болота, и тело Рецидивины содрогается, принимая форму, которая поднимает в вас волну ужаса, - неживое тело Вайса, ужасного возрожденного.
", - "questMoonstone3Completion": "Вам становится сложнее дышать, пот щиплет глаза, когда умирает восставший Змей. Остатки Рецидивины рассеиваются в прозрачный серый туман, который быстро уносит освежающий ветерок. Вы слышите отдаленные восторженные крики Хаббитанцев, которые победили свои вредные Привычки раз и навсегда.
@Baconsaur Повелитель зверей приземляется на грифоне. \"Я видел конец вашей битвы с неба, и я был глубоко тронут. Пожалуйста, примите эту зачарованную тунику - ваша храбрость говорит о благородном сердце, и я верю, что вы должны получить ее\".
", + "questMoonstone3Notes": "Рецидивина упала на землю, и вы ударили ее ожерельем лунным камней. К вашему ужасу Рецидивина схватила самоцветы, ее взгляд наполнился торжеством.
\"Глупое создание из плоти!\" – закричала она. \"Эти лунные камни восстановят физическую оболочку, правда, не так, как ты себе представляешь. Как только полная луна появится из темноты – это наполнит меня силой. Из теней я призываю призрак твоего самого страшного врага!\"
Болезненный зеленый туман поднимается из болота, и тело Рецидивины содрогается, принимая форму, которая поднимает в вас волну ужаса, – неживое тело Вайса, ужасного возрожденного.
", + "questMoonstone3Completion": "Вам становится сложнее дышать, пот щиплет глаза, когда умирает восставший Змей. Остатки Рецидивины рассеиваются в прозрачный серый туман, который быстро уносит освежающий ветерок. Вы слышите отдаленные восторженные крики Хаббитанцев, которые победили свои вредные Привычки раз и навсегда.
@Baconsaur Повелитель зверей приземляется на грифоне. \"Я видел конец вашей битвы с неба, и я был глубоко тронут. Пожалуйста, примите эту зачарованную тунику – ваша храбрость говорит о благородном сердце, и я верю, что вы должны получить ее\".
", "questMoonstone3Boss": "Некро-Вайс", "questMoonstone3DropRottenMeat": "Тухлое мясо (еда)", "questMoonstone3DropZombiePotion": "Зомби Инкубационный эликсир", @@ -96,31 +96,31 @@ "questGoldenknight2Boss": "Золотой Рыцарь", "questGoldenknight2DropGoldenknight3Quest": "Золотой Рыцарь, часть 3: Железный Рыцарь (Свиток)", "questGoldenknight3Text": "Железный Рыцарь", - "questGoldenknight3Notes": "@Jon Arinbjorn пытается привлечь ваше внимание. После битвы новая фигура предстает пред вашим взором. Это закованный в черную сталь рыцарь с обнаженным мечом в руке. И он медленно приближается. \"Нет, отец!\"- кричит ему Золотой Рыцарь, но без толку - новый противник движется вперед. \n\"Прости меня, герой,- сокрушенно говорит Золотой Рыцарь,- я не осознавала, что обратила свои добрые помыслы в жестокость. Но пред тобой мой отец - рыцарь с самым черным и жестоким сердцем. Если ты не сразишь его, то все мы обречены! Вот! Возьми мой верный моргенштерн и победи Железного Рыцаря!\"
", - "questGoldenknight3Completion": "С лязгом и звоном Железный Рыцарь падает на колени. \"Ты силён,- выдыхает он,- я сражен и унижен.\" Золотой Рыцарь приближается к вам. \"Благодарю тебя, герой. Мы извлекли урок из этих событий. Я переговорю с отцом. И, возможно, нам стоит принести свои извинения обитателям страны Habitica.\" Золотой Рыцарь на мгновение задумывается и принимает решение. \"Возьми мой моргенштерн. Он служил мне верой и правдой, так пусть же теперь у него будет более достойный владелец!\"
", + "questGoldenknight3Notes": "@Jon Arinbjorn пытается привлечь ваше внимание. После битвы новая фигура предстает пред вашим взором. Это закованный в черную сталь рыцарь с обнаженным мечом в руке. И он медленно приближается. \"Нет, отец!\" – кричит ему Золотой Рыцарь, но без толку – новый противник движется вперед. \n\"Прости меня, герой, – сокрушенно говорит Золотой Рыцарь, – я не осознавала, что обратила свои добрые помыслы в жестокость. Но пред тобой мой отец – рыцарь с самым черным и жестоким сердцем. Если ты не сразишь его, то все мы обречены! Вот! Возьми мой верный моргенштерн и победи Железного Рыцаря!\"
", + "questGoldenknight3Completion": "С лязгом и звоном Железный Рыцарь падает на колени. \"Ты силён, – выдыхает он, – я сражен и унижен.\" Золотой Рыцарь приближается к вам. \"Благодарю тебя, герой. Мы извлекли урок из этих событий. Я переговорю с отцом. И, возможно, нам стоит принести свои извинения обитателям страны Habitica.\" Золотой Рыцарь на мгновение задумывается и принимает решение. \"Возьми мой моргенштерн. Он служил мне верой и правдой, так пусть же теперь у него будет более достойный владелец!\"
", "questGoldenknight3Boss": "Железный Рыцарь", "questGoldenknight3DropHoney": "Мёд (Еда)", "questGoldenknight3DropGoldenPotion": "Золотой Инкубационный эликсир", "questGoldenknight3DropWeapon": "«Рубежи сминающая» булава Мастейна (оружие в левую руку)", - "questBasilistText": "Бази-Лист", - "questBasilistNotes": "Странное волнение на рынке, то от которого вы должны были бы сбежать. Будучи мужественным искателем приключений, вы бежите на шум и видите Бази-Листа, сливающегося с зарослями незавершенных Заданий! Хаббитанцы парализованы от страха при длине Бази-Листа, и не в состоянии приступить к работе. Откуда-то неподалеку вы слышите крик @Arcosine: \"Быстро завершите Задания и Ежедневные задания, чтобы обезвредить монстра, пока кого-то не порезали на конфетти!\" Быстро приготовься, приключенец, и проверь свои списки - но будь осторожен! Если вы оставите любое Ежедневное задание невыполненным, Бази-Лист нападет на вас и вашу команду!", - "questBasilistCompletion": "Бази-Лист рассыпался бумажными ошметками всех цветов радуги. \"Фуф!\" - произнес @Arcosine. \"Хорошо, что вы, ребята, были здесь!\" Чувствуя себя более опытными, чем прежде, вы подбираете из обрезков бумаги немного золота.", - "questBasilistBoss": "Бази-Лист", + "questBasilistText": "Василист", + "questBasilistNotes": "На рынке суматоха, да такая, что должна бы заставить вас бежать прочь. Но, будучи отважным искателем приключений, вы, наоборот, спешите на шум и видите Василиста – слившийся воедино список из вороха незавершенных Задач! Оказавшиеся поблизости жители страны Habitica не могут начать работу, они парализованы от страха, видя длину Василиста. Где-то поблизости вы слышите крик @Arcosine: «Быстрее! Выполните Задачи и Ежедневные задания, чтобы обезвредить монстра, пока никто не получил болезненных порезов от бумаги!» Наноси удар скорее, искатель приключений, – выполните одну из своих Задач, но будьте осторожны! Если вы не отметите хотя бы одно из Ежедневных заданий, Василист атакует вас и вашу команду!", + "questBasilistCompletion": "Василист рассыпался на бумажные клочки всех цветов радуги. «Фух!» – выдыхает @Arcosine. «Хорошо, что вы, ребята, оказались здесь!» Чувствуя себя более опытными, чем прежде, вы подбираете немного золота, оказавшегося среди обрезков бумаги.", + "questBasilistBoss": "Василист", "questEggHuntText": "Поиски яиц", "questEggHuntNotes": "Этой ночью повсюду появились странные неокрашенные яйца: в стойлах, за прилавком в Таверне и даже среди обычных яиц на рынке! Что за напасть! «Никто не знает, откуда они взялись и кто из них может вылупиться, — говорит Megan, — но мы не можем оставить их просто лежать повсюду! Усердно работайте и ищите, чтобы помочь мне собрать эти таинственные яйца. Возможно, если вы соберете достаточно, то найдется кое-что и для вас...»", "questEggHuntCompletion": "Вы справились! В благодарность Megan дает вам десять яиц. «Я уверена, эликсиры окрасят их в чудесные цвета! Интересно, что случится, когда они вырастут в скакунов...»", "questEggHuntCollectPlainEgg": "Неокрашенные яйца", "questEggHuntDropPlainEgg": "Неокрашенное яйцо", "questDilatoryText": "Ужасный Дракон Промедления", - "questDilatoryNotes": "Мы были слепы к предзнаменованиям.
Иссиня-черные сверкающие глаза. Древняя чешуя. Массивные челюсти и острые зубы. Мы пробудили что-то ужасающее, что никогда не должно было покидать своей расщелины:Ужасный Дракон Промедления! Кричащие жители Habitica рассыпаются во всех направлениях, когда его извивающаяся шея длиной в десятки метров рассекает водную гладью, а дикий рёв заставляет дрожать окна близлежащих домов.
«Мы должны положить конец Промедлению!», — кричит Lemoness. «Именно откладываемые задачи и красные ежедневные задания привлекли его внимание!»
«Он излучает магическую энергию!» — кричит @Baconsaur. «Живя так долго, он научился исцелять себя! Как мы сможем побороть его?»
Очень просто: так же, как и всех Боссов -- продуктивностью! Быстрее, Habitica, объединяйся и сражай свои задачи, вместе мы победим этого монстра. (Нет нужды бросать начатые квесты, мы уверены в ваших возможностях сражаться на двух фронтах). Он не нападет на мирных жителей, но чем больше ежедневных заданий мы пропускаем, тем больше сил он получает для Незамедлительной Атаки! И мне не нравится, как он поглядывает на Таверну...", + "questDilatoryNotes": "
Мы были слепы к предзнаменованиям.
Иссиня-черные сверкающие глаза. Древняя чешуя. Массивные челюсти и острые зубы. Мы пробудили что-то ужасающее, что никогда не должно было покидать своей расщелины:Ужасный Дракон Промедления! Кричащие жители Habitica рассыпаются во всех направлениях, когда его извивающаяся шея длиной в десятки метров рассекает водную гладью, а дикий рёв заставляет дрожать окна близлежащих домов.
«Мы должны положить конец Промедлению!», — кричит Lemoness. «Именно откладываемые задачи и красные ежедневные задания привлекли его внимание!»
«Он излучает магическую энергию!» — кричит @Baconsaur. «Живя так долго, он научился исцелять себя! Как мы сможем побороть его?»
Очень просто: так же, как и всех Боссов – продуктивностью! Быстрее, Habitica, объединяйся и сражай свои задачи, вместе мы победим этого монстра. (Нет нужды бросать начатые квесты, мы уверены в ваших возможностях сражаться на двух фронтах). Он не нападет на мирных жителей, но чем больше ежедневных заданий мы пропускаем, тем больше сил он получает для Незамедлительной Атаки! И мне не нравится, как он поглядывает на Таверну...",
"questDilatoryBoss": "Ужасный Дракон Промедления",
"questDilatoryBossRageTitle": "Незамедлительная атака",
"questDilatoryBossRageDescription": "Как только эта полоса заполнится полностью, Ужасный Дракон Промедления обрушит свою ярость на местность Habitica.",
"questDilatoryDropMantisShrimpPet": "Рак-богомол (Питомец)",
"questDilatoryDropMantisShrimpMount": "Рак-богомол (Скакун)",
- "questDilatoryBossRageTavern": "'Ужасный Дракон наносит НЕЗАМЕДЛИТЕЛЬНУЮ АТАКУ!'\n\nО нет! Несмотря на наши усилия, мы позволили некоторым заданиям ускользнуть, и их красный цвет навлек ярость Дракона! Он уничтожил Таверну своей ужасающей Незамедлительной Атакой! К счастью, мы установили Трактир в ближайшем городе и вы можете свободно общаться на берегу моря... но бедный Даниель, он до сих пор оплакивает свое любимое здание, разрушившееся прямо у него за спиной!\n\nНадеемся, что монстр не атакует вновь!",
- "questDilatoryBossRageStables": "'Ужасный Дракон наносит НЕЗАМЕДЛИТЕЛЬНУЮ АТАКУ!'\n\nИ снова мы не выполнили много ежедневных заданий. Дракон обрушил свою Незамедлительную Атаку на стойла Мэтта! Питомцы разбежались во всех направлениях. К счастью, все вы в безопастности!\n\nБедная Habitica! Надеемся, что это не повторится. Торопитесь выполнить все свои задания! ",
- "questDilatoryBossRageMarket": "'Ужасный Дракон наносит НЕЗАМЕДЛИТЕЛЬНУЮ АТАКУ!'\n\nТорговец Александр только что потерял свой магазин, который был разрушен до основания Незамедлительной Атакой Ужасного Дракона. Но кажется, что мы скоро одержим над ним верх, сомневаюсь, что он накопит сил для нового удара.\n\nСейчас не время расслабляться, Habitica! Прогоним это чудовище с наших берегов вместе!",
+ "questDilatoryBossRageTavern": "«Ужасный Дракон наносит НЕЗАМЕДЛИТЕЛЬНУЮ АТАКУ!»\n\nО нет! Несмотря на наши усилия, мы позволили некоторым заданиям ускользнуть, и их красный цвет навлек ярость Дракона! Он уничтожил Таверну своей ужасающей Незамедлительной Атакой! К счастью, мы установили Трактир в ближайшем городе и вы можете свободно общаться на берегу моря... но бедный Даниель, он до сих пор оплакивает свое любимое здание, разрушившееся прямо у него за спиной!\n\nНадеемся, что монстр не атакует вновь!",
+ "questDilatoryBossRageStables": "«Ужасный Дракон наносит НЕЗАМЕДЛИТЕЛЬНУЮ АТАКУ!»\n\nИ снова мы не выполнили много ежедневных заданий. Дракон обрушил свою Незамедлительную Атаку на стойла Мэтта! Питомцы разбежались во всех направлениях. К счастью, все вы в безопастности!\n\nБедная Habitica! Надеемся, что это не повторится. Торопитесь выполнить все свои задания! ",
+ "questDilatoryBossRageMarket": "«Ужасный Дракон наносит НЕЗАМЕДЛИТЕЛЬНУЮ АТАКУ!»\n\nТорговец Александр только что потерял свой магазин, который был разрушен до основания Незамедлительной Атакой Ужасного Дракона. Но кажется, что мы скоро одержим над ним верх, сомневаюсь, что он накопит сил для нового удара.\n\nСейчас не время расслабляться, Habitica! Прогоним это чудовище с наших берегов вместе!",
"questDilatoryCompletion": "`Уничтожение Ужасного Дракона Промедления`\n\nМы сделали это\" С жутким рёвом Ужасный Дракон Промедления падает в воду и уплывает далеко, далеко отсюда. Толпа ликующих жителей Habitica собрались у берега моря. После празднования мы помогли Мэтту, Дэниелю и Александру починить их дома. Но... что это? \n\n`Возвращение горожан!`\n\nТеперь, когда Дракон исчез, тысячи сияющих пятен выходят из морской пены. Это радужные креветки-богомолы и... среди них сотни русалок!\n\n\"Мы потерянные жители Промедления!\", объясняет их лидер, Манта. \"Когда Промедление затонуло, креветки-богомолы, что жили в этих водах, использовали свою магию, чтобы превратить нас в русалок ради нашей безопасности. Но в порыве ярости Ужасный Дракон заточил нас в темной расщелине на сотни лет. Но теперь мы наконец-то свободны и можем построить заново свой город!\"\n\n\"В благодарность,\" говорит его друг @Ottl, \"Пожалуйста примите питомца и скакуна креветку-богомола, очки опыта, золото и нашу вечную признательность.\"\n\n`Награды`\n* Питомец Креветка-Богомол.\n* Скакун Креветка-Богомол\n* Шоколад, Синяя сладкая вата, Розовая сладкая вата, Рыба, Мёд, Мясо, Молоко, Картошка, Гнилое мясо, Клубника.",
"questSeahorseText": "Ежегодные скачки в Промедлении",
"questSeahorseNotes": "Это день скачек, и все жители Habitica со всего континента отправились в славный город Промедление для того, чтобы испробовать силы своих питомцев, морских коньков. Внезапно огромный всплеск и рычание разрушает идиллию. Вы слышите Хранителя Морских Коньков @Kiwibot, кричащую громче бурлящих волн. \"Собрание морских коньков привлекло ярость Морского Жеребца!\", она кричит. \"Он разрушает стойла и уничтожает древние тропы! Кто сможет его укротить?\"",
@@ -143,36 +143,36 @@
"questAtom3DropPotion": "Простой инкубационный эликсир",
"questOwlText": "Сова-Полуночник",
"questOwlNotes": "В Таверне свет горит всю ночь.
Но вдруг пропал! Как тут помочь?
Как друга друг теперь найдет?
Но @Twitching уж бойцов зовет:
Сова, враг звезд, закрыла свет.
Сражайтесь! Времени ждать нет!
Сову прогоним от дверей,
Чтоб снова стала ночь светлей!\"",
- "questOwlCompletion": "С рассветом прочь летит Сова,
Герои ж - на ногах едва.
Пора, пожалуй, и поспать...
Но кто гнездо принес в кровать?
Мы часто любим, как Сова,
Сидеть всю ночь и до утра.
Но тихий писк совят даст знать:
Пора заканчивать и спать.",
+ "questOwlCompletion": "С рассветом прочь летит Сова,
Герои ж – на ногах едва.
Пора, пожалуй, и поспать...
Но кто гнездо принес в кровать?
Мы часто любим, как Сова,
Сидеть всю ночь и до утра.
Но тихий писк совят даст знать:
Пора заканчивать и спать.",
"questOwlBoss": "Сова-Полуночник",
- "questOwlDropOwlEgg": "Сова (яйцо)",
+ "questOwlDropOwlEgg": "Филин (яйцо)",
"questOwlUnlockText": "Позволяет покупать на рынке сову в яйце.",
"questPenguinText": "Птичий холод",
- "questPenguinNotes": "Хотя южная часть страны Habitica и наслаждается жарким летним днем, на окрестности Жизнерадостного Озера опустился неестественный холод. И вот уже сильный морозный ветер поднимается над замерзшим побережьем. Ледяные пики как будто вырастают из земли. @Melynnrose и @Breadstrings бегут к вам.
\"Помогите!\" - восклицает @Melynnrose. \"Мы завели гигантского пингвина, чтобы он заморозил озеро и сделал из него каток, но у нас кончилась рыба, которую он ел!\"
\"Теперь он и зол и замораживает все вокруг своим ледяным дыханием!\" - вторит @Breadstrings. - \"Пожалуйста, усмирите его, пока он тут нас всех не заморозил!\" Похоже, пора помочь этому пингвину немного... остыть.",
- "questPenguinCompletion": "Пингвин повержен, и лед начинает таять. Гигантский пингвин устраивается на солнышке, заглатывая целое ведро рыбы, что вы собрали. Прокатываясь вдоль озера, он слегка дует на него, создавая гладкую, сверкающую ледяную поверхность. Что за странная птица! \"Похоже, он оставил несколько яиц\", - говорит @Painter de Cluster.
@Rattify смеется. \"Может, хоть эти пингвины окажутся... с холодной головой?\"",
+ "questPenguinNotes": "Хотя южная часть страны Habitica и наслаждается жарким летним днем, на окрестности Жизнерадостного Озера опустился неестественный холод. И вот уже сильный морозный ветер поднимается над замерзшим побережьем. Ледяные пики как будто вырастают из земли. @Melynnrose и @Breadstrings бегут к вам.
\"Помогите!\" – восклицает @Melynnrose. \"Мы завели гигантского пингвина, чтобы он заморозил озеро и сделал из него каток, но у нас кончилась рыба, которую он ел!\"
\"Теперь он и зол и замораживает все вокруг своим ледяным дыханием!\" – вторит @Breadstrings. – \"Пожалуйста, усмирите его, пока он тут нас всех не заморозил!\" Похоже, пора помочь этому пингвину немного... остыть.",
+ "questPenguinCompletion": "Пингвин повержен, и лед начинает таять. Гигантский пингвин устраивается на солнышке, заглатывая целое ведро рыбы, что вы собрали. Прокатываясь вдоль озера, он слегка дует на него, создавая гладкую, сверкающую ледяную поверхность. Что за странная птица! \"Похоже, он оставил несколько яиц\", – говорит @Painter de Cluster.
@Rattify смеется. \"Может, хоть эти пингвины окажутся... с холодной головой?\"",
"questPenguinBoss": "Морозный пингвин",
"questPenguinDropPenguinEgg": "Пингвин (яйцо)",
"questPenguinUnlockText": "Позволяет покупать на рынке пингвина в яйце.",
"questStressbeastText": "Отвратительный Стрессозверь из Стойкальмских степей",
- "questStressbeastNotes": "Complete Dailies and To-Dos to damage the World Boss! Incomplete Dailies fill the Stress Strike Bar. When the Stress Strike bar is full, the World Boss will attack an NPC. A World Boss will never damage individual players or accounts in any way. Only active accounts who are not resting in the inn will have their incomplete Dailies tallied.
~*~
The first thing we hear are the footsteps, slower and more thundering than the stampede. One by one, Habiticans look outside their doors, and words fail us.
We've all seen Stressbeasts before, of course - tiny vicious creatures that attack during difficult times. But this? This towers taller than the buildings, with paws that could crush a dragon with ease. Frost swings from its stinking fur, and as it roars, the icy blast rips the roofs off our houses. A monster of this magnitude has never been mentioned outside of distant legend.
\"Beware, Habiticans!\" SabreCat cries. \"Barricade yourselves indoors - this is the Abominable Stressbeast itself!\"
\"That thing must be made of centuries of stress!\" Kiwibot says, locking the Tavern door tightly and shuttering the windows.
\"The Stoïkalm Steppes,\" Lemoness says, face grim. \"All this time, we thought they were placid and untroubled, but they must have been secretly hiding their stress somewhere. Over generations, it grew into this, and now it's broken free and attacked them - and us!\"
There's only one way to drive away a Stressbeast, Abominable or otherwise, and that's to attack it with completed Dailies and To-Dos! Let's all band together and fight off this fearsome foe - but be sure not to slack on your tasks, or our undone Dailies may enrage it so much that it lashes out...",
+ "questStressbeastNotes": "Выполняйте ежедневные задания и задачи, чтобы наносить урон Мировому боссу! Незавершенные ежедневные задания заполняют полоску Стрессового удара. Когда индикатор полностью заполнится, Мировой босс атакует неигрового персонажа. Мировой босс никогда не наносит вреда отдельным игрокам и никак не влияет на их аккаунты. Учитываются только достижения активных игроков, которые не отдыхают в Гостинице.
~*~
Первое, что мы слышим, – это шаги, напоминающие шум спасающегося бегством стада, но более медленные и грохочущие. Один за другим, жители страны Habitica выглядывают из своих домов и не находят слов, чтобы описать увиденное.
Мы все уже, конечно, видели Стрессозверей – мелких злобных существ, которые атакуют в непростое время. Но это? Эта громадина возвышается над зданиями. Лапы же существа моли бы с легкостью раздавить дракона. От его зловонного меха веет холодом, а его рык превращается в ледяной порыв, срывающий крыши домов. Монстры такой величины раньше никогда не покидали пределы старинных легенд.
«Берегитесь, жители страны Habitica! – кричит SabreCat – Забаррикадируйтесь внутри домов, это сам Ужасный Стрессозверь!»
«Этот зверь, наверняка, сделан из веков стресса», – говорит Kiwibot, крепко запирая дверь Таверны и захлопывая ставни.
«Стойкальмские степи, – говорит Lemoness мрачно – всё это время мы думали, что там все спокойно и безмятежно, но они, наверное, скрывали свой стресс где-то. Поколения спустя, он вырос в этого зверя, который сейчас вырвался на свободу и атаковал их – и нас!»
Есть только один способ отогнать Стрессозверя, Ужасного или любого другого, – и это атаковать его выполненными ежедневными заданиями и задачами! Давайте объединимся и отобьёмся от этого зловещего супостата – но убедитесь в том, что не дадите слабину, разбираясь с задачами, или же невыполненные ежедневные задания могут взбесить его настолько, что он может вскипеть и выплеснуть гнев…",
"questStressbeastBoss": "Отвратительный Стрессозверь",
"questStressbeastBossRageTitle": "Стресс-атака",
"questStressbeastBossRageDescription": "Когда этот датчик заполнится, Отвратительный Стрессозверь выпустит на страну Habitica ярость своей стресс-атаки!",
"questStressbeastDropMammothPet": "Мамонт (Питомец)",
"questStressbeastDropMammothMount": "Мамонт (Скакун)",
- "questStressbeastBossRageStables": "`Abominable Stressbeast uses STRESS STRIKE!`\n\nThe surge of stress heals Abominable Stressbeast!\n\nOh no! Despite our best efforts, we've let some Dailies get away from us, and their dark-red color has infuriated the Abominable Stressbeast and caused it to regain some of its health! The horrible creature lunges for the Stables, but Matt the Beast Master heroically leaps into the fray to protect the pets and mounts. The Stressbeast has seized Matt in its vicious grip, but at least it's distracted for the moment. Hurry! Let's keep our Dailies in check and defeat this monster before it attacks again!",
+ "questStressbeastBossRageStables": "`Ужасный Стрессозверь использует СТРЕССОВЫЙ УДАР!`\n\nВсплеск стресса восстанавливает здоровье Ужасного Стрессозверя!\n\nО, нет! Несмотря на все наши старания, мы упустили некоторые ежедневные задания из виду и их красный цвет привел Ужасного Стрессозверя в ярость, восполнив его здоровье! Вселяющее ужас создание бросается к Стойлам, но Мэтт, повелитель зверей, по-геройски бросается на защиту питомцев и скакунов. Стрессозверь стискивает Мэтта жесткой хваткой, но, по крайней мере, он отвлекся на какой-то момент. Скорей! Давайте держать наши ежедневные задания в порядке, чтобы победить этого монстра, пока он не атаковал вновь!",
"questStressbeastBossRageBailey": "`Отвратительный Стрессозверь применяет СТРЕСС-АТАКУ!`\n\nНарастающий стресс исцеляет Отвратительного Стрессозверя!\n\nААААА!!! Наши незаверешенные ежедневные задания раздражают Стрессозверя больше обычного и он восстанавливает часть здоровья! Глашатай Бэйли раздавала горожанам указания по безопасности, но зверь схватил ее свободной рукой. Только посмотрите, как отважно она сообщает последние новости, пока Стрессозверь вращает ее по кругу... Давайте докажем, что достойны подобной смелости и сделаем все, что в наших силах, чтобы спасти наших NPC!",
"questStressbeastBossRageGuide": "`Отвратительный Стрессозверь применяет СТРЕСС-АТАКУ!`\n\nНарастающий стресс исцеляет Отвратительного Стрессозверя!\n\nОсторожнее! Проводник Justin пытается отвлечь Стрессозверя, бегая вокруг его лодыжек и выкрикивая полезные советы по повышению работоспособности! Отвратительный Стрессозверь бешено топчется на месте, но похоже, мы его действительно измотали. Сомневаюсь, что ему хватит сил на очередной удар. Не сдавайтесь... скоро мы с ним разберемся!",
- "questStressbeastDesperation": "`Abominable Stressbeast reaches 500K health! Abominable Stressbeast uses Desperate Defense!`\n\nWe're almost there, Habiticans! With diligence and Dailies, we've whittled the Stressbeast's health down to only 500K! The creature roars and flails in desperation, rage building faster than ever. Bailey and Matt yell in terror as it begins to swing them around at a terrifying pace, raising a blinding snowstorm that makes it harder to hit.\n\nWe'll have to redouble our efforts, but take heart - this is a sign that the Stressbeast knows it is about to be defeated. Don't give up now!",
- "questStressbeastCompletion": "The Abominable Stressbeast is DEFEATED!
We've done it! With a final bellow, the Abominable Stressbeast dissipates into a cloud of snow. The flakes twinkle down through the air as cheering Habiticans embrace their pets and mounts. Our animals and our NPCs are safe once more!
Stoïkalm is Saved!
SabreCat speaks gently to a small sabertooth. \"Please find the citizens of the Stoïkalm Steppes and bring them to us,\" he says. Several hours later, the sabertooth returns, with a herd of mammoth riders following slowly behind. You recognize the head rider as Lady Glaciate, the leader of Stoïkalm.
\"Mighty Habiticans,\" she says, \"My citizens and I owe you the deepest thanks, and the deepest apologies. In an effort to protect our Steppes from turmoil, we began to secretly banish all of our stress into the icy mountains. We had no idea that it would build up over generations into the Stressbeast that you saw! When it broke loose, it trapped all of us in the mountains in its stead and went on a rampage against our beloved animals.\" Her sad gaze follows the falling snow. \"We put everyone at risk with our foolishness. Rest assured that in the future, we will come to you with our problems before our problems come to you.\"
She turns to where @Baconsaur is snuggling with some of the baby mammoths. \"We have brought your animals an offering of food to apologize for frightening them, and as a symbol of trust, we will leave some of our pets and mounts with you. We know that you will all take care good care of them.\"",
- "questStressbeastCompletionChat": "`The Abominable Stressbeast is DEFEATED!`\n\nWe've done it! With a final bellow, the Abominable Stressbeast dissipates into a cloud of snow. The flakes twinkle down through the air as cheering Habiticans embrace their pets and mounts. Our animals and our NPCs are safe once more!\n\n`Stoïkalm is Saved!`\n\nSabreCat speaks gently to a small sabertooth. \"Please find the citizens of the Stoïkalm Steppes and bring them to us,\" he says. Several hours later, the sabertooth returns, with a herd of mammoth riders following slowly behind. You recognize the head rider as Lady Glaciate, the leader of Stoïkalm.\n\n\"Mighty Habiticans,\" she says, \"My citizens and I owe you the deepest thanks, and the deepest apologies. In an effort to protect our Steppes from turmoil, we began to secretly banish all of our stress into the icy mountains. We had no idea that it would build up over generations into the Stressbeast that you saw! When it broke loose, it trapped all of us in the mountains in its stead and went on a rampage against our beloved animals.\" Her sad gaze follows the falling snow. \"We put everyone at risk with our foolishness. Rest assured that in the future, we will come to you with our problems before our problems come to you.\"\n\nShe turns to where @Baconsaur is snuggling with some of the baby mammoths. \"We have brought your animals an offering of food to apologize for frightening them, and as a symbol of trust, we will leave some of our pets and mounts with you. We know that you will all take care good care of them.\"",
+ "questStressbeastDesperation": "`Здоровье Ужасного Стрессозверя достигает 500 тыс.! Ужасный Стрессозверь использует Отчаянную защиту!`\n\nМы почти у цели, жители страны Habitica! Благодаря усердию и выполенным ежедневным заданиям мы опустили здоровье Стрессозверя до 500 тыс.! Существо рычит и бьется в отчаянии, его ярость растет, как никогда. Бэйли и Мэтт кричат в ужасе – зверь поднял их в воздух и крутит с ужасающей скоростью, вызывая снежную бурю. Теперь наносить ему удары его гораздо сложнее.\n\nМы должны удвоить наши усилия, но не унывайте – это знак того, что Стрессозверь понимает, что вот-вот будет побежден. Не время сдаваться!",
+ "questStressbeastCompletion": "Ужасный Стрессозверь ПОБЕЖДЁН!
Мы это сделали! Издав последний вопль, Ужасный Стрессозверь рассеивается облаком снега. Снежинки, сверкая, опускаются на землю, а воодушевленные жители страны Habitica обнимаются со своими питомцами и скакунами. Наши животные и наши неигровые персонажи вновь в безопасности
Стойкальм спасён!
SabreCat мягко говорит маленькому саблезубику: «Пожалуйста, найди жителей Стойкальма и приведи их к нам». Спустя несколько часов саблезубик возвращается с группой наездников мамонтов, которые следуют за ним. Вы узнаете в первом наезднике Lady Glaciate, главу Стойкальма.
«Могущественные жители страны Habitica – говорит она – мои люди и я должны от души вас поблагодарить и принести глубочайшие извинения. Пытаясь защитить наши Степи от паники, мы стали скрытно изгонять весь наш стресс в ледяные горы. Мы даже не представляли, что за поколения он превратится в Стрессозверя, которого вы видели! Когда он вырвался на свободу, он загнал нас в ловушку в горах, в своей вотчине и стал срывать ярость на наших любимых животных». Её грустный взгляд следит за падающим снегом. «Своей глупостью мы подвергли всех опасности. Будьте уверены, что в будущем мы придем к вам при появлении проблем до того, как наши проблемы придут к вам.»
Она поворачивается туда, где @Baconsaur удобно устроился с некоторыми мамонтятами. «Мы пришли с предложением еды для ваших животных в качестве извинений за ужас, который они испытали. Также, как символ доверия, мы оставим некоторых наших питомцев и скакунов у вас. Мы уверены, что вы хорошо о них позаботитесь».",
+ "questStressbeastCompletionChat": "`Ужасный Стрессозверь ПОБЕЖДЁН!`\n\nМы это сделали! Издав последний вопль, Ужасный Стрессозверь рассеивается облаком снега. Снежинки, сверкая, опускаются на землю, а воодушевленные жители страны Habitica обнимаются со своими питомцами и скакунами. Наши животные и наши неигровые персонажи вновь в безопасности!\n\n`Стойкальм спасён!`\n\nSabreCat мягко говорит маленькому саблезубику: «Пожалуйста, найди жителей Стойкальма и приведи их к нам». Спустя несколько часов саблезубик возвращается с группой наездников мамонтов, которые следуют за ним. Вы узнаете в первом наезднике Lady Glaciate, главу Стойкальма.\n\n«Могущественные жители страны Habitica – говорит она – мои люди и я должны от души вас поблагодарить и принести глубочайшие извинения. Пытаясь защитить наши Степи от паники, мы стали скрытно изгонять весь наш стресс в ледяные горы. Мы даже не представляли, что за поколения он превратится в Стрессозверя, которого вы видели! Когда он вырвался на свободу, он загнал нас в ловушку в горах, в своей вотчине и стал срывать ярость на наших любимых животных». Её грустный взгляд следит за падающим снегом. «Своей глупостью мы подвергли всех опасности. Будьте уверены, что в будущем мы придем к вам при появлении проблем до того, как наши проблемы придут к вам.»\n\nОна поворачивается туда, где @Baconsaur удобно устроился с некоторыми мамонтятами. «Мы пришли с предложением еды для ваших животных в качестве извинений за ужас, который они испытали. Также, как символ доверия, мы оставим некоторых наших питомцев и скакунов у вас. Мы уверены, что вы хорошо о них позаботитесь».",
"questTRexText": "Король динозавров",
"questTRexNotes": "Теперь, когда древние создания из Стойкальмских степей разбежались по всей стране Habitica, @Urse решает приютить взрослого тираннозавра. Что может пойти не так?
Все.",
"questTRexCompletion": "Дикий динозавр наконец прекратил буйствовать и теперь пытается подружиться с гигантскими петухами. @Urse смотрит на него с улыбкой. \"Не такие уж они и ужасные питомцы, в самом деле. Им просто нужно немного дисциплины. Вот, возьмите себе тоже несколько яиц\".",
"questTRexBoss": "Огромный Тиранозавр",
"questTRexUndeadText": "Динозавра раскопали!",
"questTRexUndeadNotes": "Пока древние динозавры из Стойкальмских степей разбегаются по Habit City, из Большого Музея доносится вопль ужаса. @Baconsaur кричит: \"Скелет тираннозавра в музее шевелится! Должно быть, он почуял сородичей!\" Костлявое чудище обнажает зубы и бросается, гремя костями, в вашу сторону. Как убить того, кто уже мертв? Бейте, пока он не исцелился!",
- "questTRexUndeadCompletion": "Блеск в глазах тираннозавра гаснет, и он взбирается обратно на свой пьедестал. Все облегченно вздыхают. \"Смотрите! - говорит @Baconsaur. - Некоторые из окаменелых яиц теперь блестящие и новые. Может, из них кто-то вылупится?\"",
+ "questTRexUndeadCompletion": "Блеск в глазах тираннозавра гаснет, и он взбирается обратно на свой пьедестал. Все облегченно вздыхают. \"Смотрите! – говорит @Baconsaur. – Некоторые из окаменелых яиц теперь блестящие и новые. Может, из них кто-то вылупится?\"",
"questTRexUndeadBoss": "Костяной тираннозавр",
"questTRexUndeadRageTitle": "Костяное лечение",
"questTRexUndeadRageDescription": "Эта полоска заполняется, когда вы не выполняете ежедневные задания. Когда полоска заполнится, Костяной тираннозавр восстановится на 30% oт своего оставшегося здоровья!",
@@ -180,21 +180,27 @@
"questTRexDropTRexEgg": "Тираннозавр (яйцо)",
"questTRexUnlockText": "Позволяет покупать на рынке тираннозавра в яйце.",
"questRockText": "Побег от пещерного чудища",
- "questRockNotes": "Пересекая с друзьями Бесцельные Горы страны Habitica, вы остановились на ночь в прекрасной пещере, усыпанной сверкающими минералами. Однако, проснувшись утром, вы обнаруживаете, что вход исчез, а пол под вами движется!
\"Гора живая!\" - кричит ваш спутник @pfeffernusse. - \"Это не кристаллы - это зубы!\"
@Painter de Cluster хватает вас за руку. \"Нужно найти другой путь наружу - не отходи от меня и не отвлекайся, иначе мы застрянем тут навечно!\"",
+ "questRockNotes": "Пересекая с друзьями Бесцельные Горы страны Habitica, вы остановились на ночь в прекрасной пещере, усыпанной сверкающими минералами. Однако, проснувшись утром, вы обнаруживаете, что вход исчез, а пол под вами движется!
\"Гора живая!\" – кричит ваш спутник @pfeffernusse. – \"Это не кристаллы – это зубы!\"
@Painter de Cluster хватает вас за руку. \"Нужно найти другой путь наружу – не отходи от меня и не отвлекайся, иначе мы застрянем тут навечно!\"",
"questRockBoss": "Кристальный колосс",
"questRockCompletion": "Благодаря усердию вы отыскали безопасный путь через живую гору. Выйдя на свет, ваш друг @intune замечает странный блеск на земле возле выхода из пещеры. Остановившись, вы подбираете небольшой камень с золотой прожилкой. Вокруг много других камней довольно необычной формы. Они похожи на... яйца?",
"questRockDropRockEgg": "Камень (яйцо)",
"questRockUnlockText": "Позволяет покупать на рынке камень в яйце.",
"questBunnyText": "Крольчиха-убийца",
- "questBunnyNotes": "Много непростых дней спустя вы достигли вершины Пика Прокрастинации и теперь стоите перед внушительными дверьми Крепости Пренебрежения. Надпись на камне гласит: \"Внутри обитает чудовище, воплощающее ваши самые большие страхи - причина вашего бездействия. Стучите и встретьтесь с ним лицом к лицу!\" Вы дрожите, представляя ужас, ожидающий внутри, и готовы вот-вот сбежать, как уже делали не раз. @Draayder удерживает вас. \"Спокойно, друг мой! Время пришло. Вы должны это сделать!\"
Вы стучите, и двери открываются внутрь. Из темноты доносится оглушительный рев. Вы обнажаете оружие.",
+ "questBunnyNotes": "Много непростых дней спустя вы достигли вершины Пика Прокрастинации и теперь стоите перед внушительными дверьми Крепости Пренебрежения. Надпись на камне гласит: \"Внутри обитает чудовище, воплощающее ваши самые большие страхи – причина вашего бездействия. Стучите и встретьтесь с ним лицом к лицу!\" Вы дрожите, представляя ужас, ожидающий внутри, и готовы вот-вот сбежать, как уже делали не раз. @Draayder удерживает вас. \"Спокойно, друг мой! Время пришло. Вы должны это сделать!\"
Вы стучите, и двери открываются внутрь. Из темноты доносится оглушительный рев. Вы обнажаете оружие.",
"questBunnyBoss": "Крольчиха-убийца",
- "questBunnyCompletion": "С последним ударом крольчиха-убийца падает навзничь. Искрящийся туман поднимается от ее тела, которое сжимается до размеров крольчонка - ничего общего с ужасным монстром, с которым вы только что сразились. Крольчиха очаровательно морщит носик и прыгает прочь, оставив несколько яиц. @Gully смеется. \"Пик Прокрастинации даже простые задачи заставляет казаться непреодолимыми. Собирайте яйца, и пойдем домой\".",
+ "questBunnyCompletion": "С последним ударом крольчиха-убийца падает навзничь. Искрящийся туман поднимается от ее тела, которое сжимается до размеров крольчонка – ничего общего с ужасным монстром, с которым вы только что сразились. Крольчиха очаровательно морщит носик и прыгает прочь, оставив несколько яиц. @Gully смеется. \"Пик Прокрастинации даже простые задачи заставляет казаться непреодолимыми. Собирайте яйца, и пойдем домой\".",
"questBunnyDropBunnyEgg": "Кролик (яйцо)",
"questBunnyUnlockText": "Позволяет покупать на рынке кролика в яйце.",
- "questSlimeText": "The Jelly Regent",
- "questSlimeNotes": "As you work on your tasks, you notice you are moving slower and slower. \"It's like walking through molasses,\" @Leephon grumbles. \"No, like walking through jelly!\" @starsystemic says. \"That slimy Jelly Regent has slathered his stuff all over Habitica. It's gumming up the works. Everybody is slowing down.\" You look around. The streets are slowly filling with clear, colorful ooze, and Habiticans are struggling to get anything done. As others flee the area, you grab a mop and prepare for battle!",
- "questSlimeBoss": "Jelly Regent",
- "questSlimeCompletion": "With a final jab, you trap the Jelly Regent in an over-sized donut, rushed in by @Overomega, @LordDarkly, and @Shaner, the quick-thinking leaders of the pastry club. As everyone is patting you on the back, you feel someone slip something into your pocket. It’s the reward for your sweet success: three Marshmallow Slime eggs.",
- "questSlimeDropSlimeEgg": "Marshmallow Slime (Egg)",
- "questSlimeUnlockText": "Unlocks purchasable slime eggs in the Market"
+ "questSlimeText": "Желейный Регент",
+ "questSlimeNotes": "Вы замечаете, что, выполняя свои задания, двигаетесь все медленнее и медленнее. «Все равно, что идти по патоке», – ворчит @Leephon. «Нет, как сквозь желе идти!» – говорит @starsystemic. «Этот склизкий Желейный Регент размазал свои следы по всей стране Habitica. И это вещество склеивает всю работу. Все замедляются». Вы оглядываетесь вокруг. Улицы медленно заполняются чистой красочной слизью, а жители страны Habitica мучаются, пытаясь хоть что-то сделать. Пока другие спасаются бегством, вы хватаетесь за швабру и готовитесь к битве!",
+ "questSlimeBoss": "Желейный Регент",
+ "questSlimeCompletion": "Нанеся последний удар, вам удается поймать Желейного Регента в ловушку – гигантский пончик, который поспешили подкатить скорые на ум лидеры клуба выпечки @Overomega, @LordDarkly и @Shaner. Пока все стремятся одобрительно похлопать вас по спине, вы чувствуете, как кто-то сунул что-то вам в карман. Эта награда за ваш сладкий успех: три зефирных слизня в яйце.",
+ "questSlimeDropSlimeEgg": "Зефирный слизень (яйцо)",
+ "questSlimeUnlockText": "Позволяет покупать на рынке слизня в яйце",
+ "questSheepText": "Грозовой Баран",
+ "questSheepNotes": "As you wander the rural Taskan countryside with friends, taking a \"quick break\" from your obligations, you find a cozy yarn shop. You are so absorbed in your procrastination that you hardly notice the ominous clouds creep over the horizon. \"I've got a ba-a-a-ad feeling about this weather,\" mutters @Misceo, and you look up. The stormy clouds are swirling together, and they look a lot like a... \"We don't have time for cloud-gazing!\" @starsystemic shouts. \"It's attacking!\" The Thunder Ram hurtles forward, slinging bolts of lightning right at you!",
+ "questSheepBoss": "Грозовой Баран",
+ "questSheepCompletion": "Impressed by your diligence, the Thunder Ram is drained of its fury. It launches three huge hailstones in your direction, and then fades away with a low rumble. Upon closer inspection, you discover that the hailstones are actually three fluffy eggs. You gather them up, and then stroll home under a blue sky.",
+ "questSheepDropSheepEgg": "Овца (яйцо)",
+ "questSheepUnlockText": "Позволяет покупать на рынке овцу в яйце."
}
\ No newline at end of file
diff --git a/common/locales/ru/settings.json b/common/locales/ru/settings.json
index a0e4ae0659..c3af2b6b87 100644
--- a/common/locales/ru/settings.json
+++ b/common/locales/ru/settings.json
@@ -3,17 +3,17 @@
"language": "Язык",
"americanEnglishGovern": "В случае несоответствия информации в переводах, правильной следует считать версию на американском английском.",
"helpWithTranslation": "Хотите помочь с переводом HabitRPG? Отлично! Посмотрите эту карточку Trello.",
- "showHeaderPop": "Показать ваш аватар, полоски здоровья/опыта и команду.",
+ "showHeaderPop": "Показывать ваш аватар, полоски здоровья/опыта и команду.",
"stickyHeader": "Закрепить область персонажа",
"stickyHeaderPop": "Прикрепить область персонажа к верхней границе экрана. Если отключить, она будет скрываться при прокрутке страницы. ",
"newTaskEdit": "Открывать режим редактирования для новых заданий",
"newTaskEditPop": "Если данная опция установлена, в момент создания задания будет открыта форма для установки параметров задания, таких, как заметки и теги.",
- "dailyDueDefaultView": "Вкладка 'Сегодня' отображается в Ежедневных задачах по умолчанию",
- "dailyDueDefaultViewPop": "При включении этой опции в Ежедневных задачах по умолчанию будет отображаться вкладка 'Сегодня' вместо вкладки 'Все'",
+ "dailyDueDefaultView": "Вкладка «Сегодня» отображается в Ежедневных заданиях по умолчанию",
+ "dailyDueDefaultViewPop": "При включении этой опции в Ежедневных задачах по умолчанию будет отображаться вкладка «Сегодня» вместо вкладки 'Все'",
"startCollapsed": "Список тегов в заданиях свернут по умолчанию",
"startCollapsedPop": "Когда этот параметр включен, при открытии задания для редактирования список тегов будет отображаться в свернутом виде.",
- "startAdvCollapsed": "Дополнительные параметры в задачах свернуты по умолчанию",
- "startAdvCollapsedPop": "Когда этот параметр включен, при открытии задания для редактирования дополнительные параметры будут отображаться в свернутом виде.",
+ "startAdvCollapsed": "Раздел «Дополнительные параметры» в задачах свернут по умолчанию",
+ "startAdvCollapsedPop": "Когда этот параметр включен, при открытии задания для редактирования раздел «Дополнительные параметры» будет отображаться в свернутом виде.",
"showTour": "Показать тур",
"restartTour": "Запустить ознакомительный тур, который вы видели, когда зарегистрировались на HabitRPG.",
"showBailey": "Показать Бэйли",
@@ -41,10 +41,10 @@
"json": "(JSON)",
"customDayStart": "Персональное начало суток",
"24HrClock": "24-часовой формат",
- "customDayStartInfo1": "HabitRPG defaults to check and reset your Dailies at midnight in your own time zone each day. It is recommended that you read the following information before changing it:",
- "customDayStartInfo2": "(show more)",
- "customDayStartInfo3": "(show less)",
- "customDayStartInfo4": "Complete all your Dailies before changing the Custom Day Start or Rest in the Inn that day. Changing your Custom Day Start may cause Cron to run immediately, but after the first day it works as expected.
Allow a window of two hours for the change to take effect. For example, if it is currently set to 0 (midnight), change it before 10pm; if you want to set it to 9pm, change it before 7pm.
Enter an hour from 0 to 23 (it uses a 24 hour clock). Typing is more effective than arrow keys. Once set, reload the page to confirm that the new value is being displayed.",
+ "customDayStartInfo1": "HabitRPG по умолчанию проверяет и сбрасывает ваши ежедневные задачи каждый день в полночь по вашему часовому поясу. Рекомендуем прочитать следующую информацию, прежде чем изменять настройки:",
+ "customDayStartInfo2": "(больше)",
+ "customDayStartInfo3": "(меньше)",
+ "customDayStartInfo4": "Выполните все ежедневные задания, прежде чем изменить персональное начало суток или отдохните один день в гостинице. Изменение настройки персонального начала дня может привести к тому, что момент смены суток, или крон, наступит немедленно, но на следующий день все произодет по расписанию.
Учитывайте, что для вступления настроек в силу может потребоваться до двух часов. Например, если смена суток сейчас установлена на 0 часов (полночь), измените этот параметр до 22 часов, если хотите установить его на 21 час, внесите изменения до 19 часов.
Введите час между 0 и 23 (используется 24-часовой формат). Ввести цифру с клавиатуры может быть проще, чем с помощью стрелок. После установки перезагрузите страницу, чтобы убедиться, что отображается новое значение.",
"misc": "Разное",
"showHeader": "Показывать область персонажа",
"changePass": "Изменение пароля",
@@ -65,7 +65,7 @@
"resetDo": "Да, сделать сброс учетной записи!",
"fixValues": "Исправить данные",
"fixValuesText1": "Если в результате программной ошибки или непреднамеренных действий изменились параметры персонажа (урон, который не должен был быть причинен; золото, которое вы на самом деле не заработали), вы можете вручную исправить значения. Да, таким образом возможно жульничать, поэтому мудро используйте эту функцию, если не хотите подорвать весь процесс выработки привычек!",
- "fixValuesText2": "Обратите внимание, что здесь невозможно восстановить серии выполненных подряд отдельных заданий. Для этого войдите в редактирование ежедневного задания и воспользуйтесь полем 'Восстановление серии' в разделе дополнительных настроек.",
+ "fixValuesText2": "Обратите внимание, что здесь невозможно восстановить серии выполненных подряд отдельных заданий. Для этого войдите в редактирование ежедневного задания и воспользуйтесь полем – «Восстановить серию» в разделе «Дополнительные параметры».",
"disabledWinterEvent": "Отключено во время празднования Winter Wonderland Event Pt.4 (так как награды доступны к покупке за золото)",
"fix21Streaks": "Серии в 21 день подряд",
"discardChanges": "Отменить изменения",
@@ -86,24 +86,26 @@
"username": "Имя пользователя",
"email": "Email",
"registeredWithFb": "Зарегистрирован с помощью Facebook",
- "loginNameDescription1": "Это то, что вы используете для входа в HabitRPG. Идите в",
+ "loginNameDescription1": "Это ваше имя пользователя для входа в HabitRPG. Зайдите в",
"loginNameDescription2": "Пользователь->Профиль",
"loginNameDescription3": "чтобы изменить имя, которое появляется на вашем аватаре и в чате.",
"emailNotifications": "Уведомления по электронной почте",
"wonChallenge": "Вы выиграли испытание",
"newPM": "Получено личное сообщение",
"giftedGems": "Подаренные самоцветы",
+ "giftedGemsInfo": "<%= amount %> Gems - by <%= name %>",
"giftedSubscription": "Подписка в подарок",
"invitedParty": "Приглашен в команду",
"invitedGuild": "Приглашен в гильдию",
"inactivityEmails": "Ваш аккаунт не активен",
+ "weeklyRecaps": "Обзоры действий с вашего аккаунта за последние недели",
"questStarted": "Ваш Квест начался",
"invitedQuest": "Приглашен в Квест",
"kickedGroup": "Исключен из группы",
"remindersToLogin": "Напоминания о заданиях в HabitRPG",
- "unsubscribedSuccessfully": "Unsubscribed successfully!",
- "unsubscribedTextUsers": "You have successfully unsubscribed from all HabitRPG emails. You can enable only the emails you want to receive from the settings (requires login).",
- "unsubscribedTextOthers": "You won't receive any other email from HabitRPG.",
+ "unsubscribedSuccessfully": "Подписка успешно отменена!",
+ "unsubscribedTextUsers": "Вы успешно отписались от всех рассылок HabitRPG. Вы можете разрешить отправку только нужных вам сообщений в настройках (требуется вход).",
+ "unsubscribedTextOthers": "Больше вы не будете получать email-сообщений от HabitRPG",
"unsubscribeAllEmails": "Поставьте галочку, чтобы отписаться от е-мейлов.",
"unsubscribeAllEmailsText": "Отписываясь от е-мейлов, я понимаю, что HabitRPG никогда не сможет известить меня по электронной почте о важных изменениях на сайте или в моем аккаунте.",
"correctlyUnsubscribedEmailType": "Вы успешно отписались от уведомлений \"<%= emailType %>\".",
@@ -111,5 +113,10 @@
"benefits": "Преимущества",
"coupon": "Промо",
"couponPlaceholder": "Введите Промо Код",
- "couponText": "Время от времени мы проводим особые мероприятия и раздаем коды куопонов на специальную экипировку. (например, тем, кто останавливался на нашем стенде на Wondercon)"
+ "couponText": "Иногда мы проводим мероприятия и дарим промокоды на особую экипировку (например, тем, кто заглянет на наш стенд на Wondercon)",
+ "apply": "Применить",
+ "resubscribe": "Повторить подписку",
+ "promoCode": "Промокод",
+ "promoCodeApplied": "Промокод принят! Проверьте инвентарь",
+ "promoPlaceholder": "Введите Промокод"
}
\ No newline at end of file
diff --git a/common/locales/ru/spells.json b/common/locales/ru/spells.json
index 1dc4e1fe91..6b4e302095 100644
--- a/common/locales/ru/spells.json
+++ b/common/locales/ru/spells.json
@@ -1,42 +1,42 @@
{
"spellWizardFireballText": "Всплеск пламени",
- "spellWizardFireballNotes": "Языки пламени вырываются вперед и сжигают задание. Вы уменьшаете красноту задания, наносите урон любому монстру, с которым сражаетесь, и получаете опыт — больше для синих заданий.",
+ "spellWizardFireballNotes": "Языки пламени срываются с ваших рук. Вы получаете очки опыта и наносите дополнительный урон боссам! Нажмите на одно из заданий для применения. (На основе ИНТ)",
"spellWizardMPHealText": "Эфирная зарядка",
- "spellWizardMPHealNotes": "Поток магической энергии устремляется из ваших рук и заряжает вашу команду. Ваша команда восстанавливает Ману.",
+ "spellWizardMPHealNotes": "Вы жертвуете ману, чтобы помочь друзьям. Другие участники команды восстанавливают ману! (На основе ИНТ)",
"spellWizardEarthText": "Землетрясение",
- "spellWizardEarthNotes": "Земля под задачами вашей команды покрывается трещинами и ощутимо трясется, замедляя задачи и сбивая их защиту для ваших атак. Ваша команда получает прибавку к получаемому опыту.",
+ "spellWizardEarthNotes": "Силой ума вы сотрясаете землю. Вся ваша команда получает баф к интеллекту! (На основе ИНТ без бафов)",
"spellWizardFrostText": "Пронизывающий мороз",
- "spellWizardFrostNotes": "Лед прорывается из под земли и поглощает ваши задачи, замораживая их. Серии не обнулятся в конце дня, но незавершенные ежедневные задания все равно будут наносить вам урон!",
+ "spellWizardFrostNotes": "Ваши задачи покрывает лед. Ни одна из серий не обнулится завтра! (Одно заклинание действует на все серии)",
"spellWarriorSmashText": "Мощный удар",
- "spellWarriorSmashNotes": "Вы вкладываете все силы в жесточайший удар по одному заданию. Краснота задания уменьшается, и вы наносите дополнительный урон монстру, с которым сражаетесь.",
+ "spellWarriorSmashNotes": "Вы вкладываете все силы в удар по заданию. Оно становится более синим / менее красным, и вы наносите дополнительный урон боссам! Нажмите на одно из заданий для применения. (На основе СИЛ)",
"spellWarriorDefensiveStanceText": "Защитная стойка",
- "spellWarriorDefensiveStanceNotes": "Вы делаете передышку, чтобы расслабиться, и встаете в защитную стойку, приготовившись к натиску задач. Уменьшается урон от ежедневных заданий в конце дня.",
+ "spellWarriorDefensiveStanceNotes": "Вы готовитесь к натиску задач. Вы получаете баф к телосложению! (На основе ТЕЛ без бафов)",
"spellWarriorValorousPresenceText": "Присутствие духа",
- "spellWarriorValorousPresenceNotes": "Ваше присутствие воодушевляет команду. Обретенная храбрость дает им заряд силы. Члены команды получают дополнительные очки Силы.",
+ "spellWarriorValorousPresenceNotes": "Ваше присутствие воодушевляет команду. Вся команда получает баф к силе! (На основе СИЛ без бафов)",
"spellWarriorIntimidateText": "Устрашающий взор",
- "spellWarriorIntimidateNotes": "Магическая аура окружает вашу команду, защищая вас от повреждений. Члены команды получают ощутимый бонус к Телосложению.",
+ "spellWarriorIntimidateNotes": "Ваш пристальный взгляд вселяет страх в сердца врагов. Вся команда получает баф к телосложению! (На основе ТЕЛ без бафов)",
"spellRoguePickPocketText": "Карманная кража",
- "spellRoguePickPocketNotes": "Ваши ловкие пальцы обшаривают карманы задачи и находят сокровища. Вы немедленно получаете бонус в виде золота от задачи. Чем 'жирнее' (синее) задача, тем больше золота вы крадете!",
+ "spellRoguePickPocketNotes": "Вы грабите ближайшую задачу. Вы получаете золото! Нажмите на одно из заданий для применения. (На основе ВОС)",
"spellRogueBackStabText": "Удар в спину",
- "spellRogueBackStabNotes": "Беззвучно вы возникаете за спиной задачи и наносите удар. Вы наносите повышенный урон задачи с увеличенной вероятностью критического удара.",
+ "spellRogueBackStabNotes": "Вы предаете глупое задание. Вы получаете золото и очки опыта! Нажмите на одно из заданий для применения. (На основе СИЛ)",
"spellRogueToolsOfTradeText": "Орудия труда",
- "spellRogueToolsOfTradeNotes": "Вы делитесь своим воровским инструментом с компаньонами, чтобы помочь им в «приобретении» золота. Количество получаемого золота за задачи и шансы выпадения предметов увеличиваются для всей команды в течение этого дня.",
+ "spellRogueToolsOfTradeNotes": "Вы делитесь своими талантами с друзьями. Вся ваша команда получает баф к восприятию! (На основе ВОС без бафов)",
"spellRogueStealthText": "Уйти в тень",
- "spellRogueStealthNotes": "Вы погружаетесь в тень, натягивая капюшон. Чем выше ваше Восприятие, тем меньше ежедневных заданий обнаружат вас этой ночью.",
+ "spellRogueStealthNotes": "Вы скрытны и вас невозможно заметить. Часть невыполненных ежедневных заданий не нанесут вреда сегодня, и их серии / цвет не изменятся. (Наложите заклинание несколько раз, чтобы охватить больше ежедневных заданий)",
"spellHealerHealText": "Исцеляющий свет",
- "spellHealerHealNotes": "Свет окутывает ваше тело, исцеляя раны. Вы восстанавливаете здоровье.",
+ "spellHealerHealNotes": "Свет окутывает ваше тело, исцеляя раны. Вы восстанавливаете здоровье! (На основе ТЕЛ и ИНТ)",
"spellHealerBrightnessText": "Ослепляющая вспышка",
- "spellHealerBrightnessNotes": "Вы вызываете вспышку света, которая ослепляет ваши задачи. Краснота ваших задач снижается.",
+ "spellHealerBrightnessNotes": "Вспышка света ослепляет ваши задачи. Они становятся более синими и менее красными! (На основе ИНТ)",
"spellHealerProtectAuraText": "Защитная аура",
- "spellHealerProtectAuraNotes": "Магическая аура окружает вашу команду, защищая вас повреждений. Члены команды получают прибавку к Телосложению.",
+ "spellHealerProtectAuraNotes": "Вы ограждаете команду щитом от урона. Вся команда получает баф к телосложению! (На основе ТЕЛ без бафов)",
"spellHealerHealAllText": "Благословение",
- "spellHealerHealAllNotes": "Успокаивающий свет окутывает вашу команду и исцеляет их раны. Члены вашей команды восстанавливают здоровье.",
+ "spellHealerHealAllNotes": "Вас окружает аура, облегчающая боль. Вся команда восстанавливает здоровье! (На основе ТЕЛ и ИНТ)",
"spellSpecialSnowballAuraText": "Снежок",
"spellSpecialSnowballAuraNotes": "Бросьте снежок в товарища по команде! Что может пойти не так? Эффект длится до наступления нового дня компаньона.",
"spellSpecialSaltText": "Соль",
"spellSpecialSaltNotes": "Кто-то кинул в вас снежок. Ха-ха, очень смешно. А теперь стряхните с меня снег!",
"spellSpecialSpookDustText": "Зловещие искры",
- "spellSpecialSpookDustNotes": "Turn a friend into a floating blanket with eyes!",
+ "spellSpecialSpookDustNotes": "Превратите друга в парящую простыню с глазами!",
"spellSpecialOpaquePotionText": "Эликсир непрозрачности",
"spellSpecialOpaquePotionNotes": "Отменить эффект Зловещих искр",
"spellSpecialShinySeedText": "Солнечное семя",
diff --git a/common/locales/ru/subscriber.json b/common/locales/ru/subscriber.json
index 994b4dfe1b..f02e0e151c 100644
--- a/common/locales/ru/subscriber.json
+++ b/common/locales/ru/subscriber.json
@@ -16,7 +16,7 @@
"supportDevsText": "Этому проекту с открытым исходным кодом пригодится любая помощь. Помогите нам поддерживать HabitRPG!",
"monthUSD": "долларов США в месяц",
"organization": "Организация",
- "groupPlans": "Corporate Plans",
+ "groupPlans": "Корпоративные планы",
"indivPlan1": "Игра в HabitRPG бесплатна для индивидуальных пользователей. Даже для небольших групп с общими интересами — бесплатные (или недорогие)",
"indivPlan2": "могут использоваться для мотивации участников к совершенствованию: например, для литературных групп, художественных конкурсов и прочего.",
"groupText1": "В то же время некоторым из руководителей групп требуется больше контроля, конфиденциальности, безопасности и поддержки. Примерами таких групп служат семьи, трудовые коллективы и так далее. Следующие тарифы предоставляют возможность использования группой или организацией частных версий HabitRPG, безопасной и независимой",
diff --git a/common/locales/ru/tasks.json b/common/locales/ru/tasks.json
index 73294f9e0b..e01913cc86 100644
--- a/common/locales/ru/tasks.json
+++ b/common/locales/ru/tasks.json
@@ -2,7 +2,7 @@
"clearCompleted": "Удалить завершенные",
"lotOfToDos": "Завершенные задачи автоматически архивируются через 3 дня. Вы можете найти их в меню Настройки > Экспорт данных.",
"deleteToDosExplanation": "Если вы нажмете кнопку ниже, все завершенные и находящиеся архиве задачи будут удалены навсегда. Если вы хотите сохранить их, экспортируйте их. ",
- "beeminderDeleteWarning": "Забывчивые пользователи: В первую очередь прочитайте Удаление Завершенных Заданий Без Досадных Оплошностей!",
+ "beeminderDeleteWarning": "Забывчивые пользователи: В первую очередь прочитайте Удаление завершенных заданий без досадных оплошностей!",
"addmultiple": "Добавить несколько",
"addsingle": "Добавить одно",
"habits": "Привычки",
@@ -14,15 +14,15 @@
"save": "Сохранить",
"addChecklist": "Добавить список",
"checklist": "Список",
- "checklistText": "В ежедневных заданиях для частично выполненных заданий уменьшается урон (напр., со списком из 4 дел, 3 из которых окончены, ежедневное задание нанесет вам 25% урона). При выполнении обычной задачи, ваши очки будут умножены на количество дел в списке (напр., при списке из 4 дел вы получите в 4 раза больше опыта и золота).",
+ "checklistText": "Break a task into smaller pieces! Checklists increase the Experience and Gold gained from a To-Do, and reduce the damage caused by a Daily.",
"expandCollapse": "Развернуть/свернуть",
"text": "Текст",
"extraNotes": "Дополнительные заметки",
"direction/Actions": "Направление/Действия",
- "advancedOptions": "Дополнительные настройки",
+ "advancedOptions": "Дополнительные параметры",
"difficulty": "Сложность",
"difficultyHelpTitle": "Насколько трудно это задание?",
- "difficultyHelpContent": "Это увеличивает ценность задачи. Используйте в меру, лучше положитесь на штатные алгоритмы регулировки важности задач. Но всё же некоторые задачи гораздо ценнее других (сравните: написать дипломную и почистить зубы). Щелкните, чтобы узнать подробности.",
+ "difficultyHelpContent": "The harder a task, the more Experience and Gold it awards you when you check it off... but the more it damages you if it is a Daily or Bad Habit!",
"easy": "Легко",
"medium": "Нормально",
"hard": "Сложно",
@@ -44,7 +44,6 @@
"remaining": "Активные",
"complete": "Завершенные",
"dated": "С датой",
- "datedNotSorted": "Dated To-Dos are NOT sorted by date. Sorting will probably be implemented in future.",
"due": "Открытые",
"grey": "Серые",
"score": "Счет",
@@ -78,5 +77,6 @@
"streakCoins": "Бонус за серию!",
"pushTaskToTop": "Переместить задание наверх",
"pushTaskToBottom": "Переместить задание вниз",
- "emptyTask": "Сначала введите название задания."
+ "emptyTask": "Сначала введите название задания.",
+ "dailiesRestingInInn": "Вы отдыхаете в Гостинице! Пропущенные Ежедневные задания НЕ причинят вам вреда в конце сегодняшнего дня, но отметки об их выполнении БУДУТ сбрасываться каждый день. Если ваша Команда участвует к квесте, вы не будете наносить урон / находить предметы, пока не покинете Гостиницу. В то же время Босс все же будет наносить урон вам за Ежедневные задания, пропущенные вашими товарищами по Команде."
}
\ No newline at end of file
diff --git a/common/locales/sk/backgrounds.json b/common/locales/sk/backgrounds.json
index c406c22cb4..d2e5ab9435 100644
--- a/common/locales/sk/backgrounds.json
+++ b/common/locales/sk/backgrounds.json
@@ -76,5 +76,19 @@
"backgroundFloralMeadowText": "Flowering Meadow",
"backgroundFloralMeadowNotes": "Picnic in a Flowering Meadow.",
"backgroundGumdropLandText": "Gumdrop Land",
- "backgroundGumdropLandNotes": "Nibble the scenery of Gumdrop Land."
+ "backgroundGumdropLandNotes": "Nibble the scenery of Gumdrop Land.",
+ "backgrounds052015": "SET 12: Released May 2015",
+ "backgroundMarbleTempleText": "Marble Temple",
+ "backgroundMarbleTempleNotes": "Pose in front of a Marble Temple.",
+ "backgroundMountainLakeText": "Mountain Lake",
+ "backgroundMountainLakeNotes": "Dip your toes in a Mountain Lake.",
+ "backgroundPagodasText": "Pagodas",
+ "backgroundPagodasNotes": "Climb to the top of Pagodas.",
+ "backgrounds062015": "SET 13: Released June 2015",
+ "backgroundDriftingRaftText": "Drifting Raft",
+ "backgroundDriftingRaftNotes": "Paddle a Drifting Raft.",
+ "backgroundShimmeryBubblesText": "Shimmery Bubbles",
+ "backgroundShimmeryBubblesNotes": "Float through a sea of Shimmery Bubbles.",
+ "backgroundIslandWaterfallsText": "Island Waterfalls",
+ "backgroundIslandWaterfallsNotes": "Picnic near Island Waterfalls."
}
\ No newline at end of file
diff --git a/common/locales/sk/challenge.json b/common/locales/sk/challenge.json
index aa0bb950bb..3b0c60e32c 100644
--- a/common/locales/sk/challenge.json
+++ b/common/locales/sk/challenge.json
@@ -16,7 +16,7 @@
"selectWinner": "Vyber víťaza a uzavri výzvu:",
"deleteOrSelect": "Zmaž alebo vyber víťaza",
"endChallenge": "Ukončiť výzvu",
- "challengeDiscription": "Toto sú úlohy výzvy. Keď sa budú používatelia zapájať, ich farba sa bude postupne meniť a zobrazia sa grafy s celkovým pokrokom skupiny.",
+ "challengeDiscription": "These are the Challenge's tasks that will be added to your task dashboard when you join this Challenge. The sample Challenge tasks below will change color and gain graphs to show you the overall progress of the group.",
"hows": "Ako sa všetkým darí?",
"filter": "Filter",
"groups": "Skupiny",
@@ -33,16 +33,18 @@
"challengeTagPop": "Výzvy sa zobrazujú v zozname štítkov a v popise úlohy. Takže oficiálny názov výzvy môže byť dlhší a výstižný, no potrebuješ aj krátku verziu. Napr výzva s názvom \"Schudnúť 10 kíl za 3 mesiace\" môže používať štítok \"-10kg\" (Pre viac informácií klikni na \"?\").",
"challengeDescr": "Popis",
"prize": "Odmena",
- "prizePop": "Ak niekto môže \"vyhrať\" tvoju výzvu, môžeš toho víťaza odmeniť drahokamami. Maximálny počet drahokamov = drahokamy ktoré vlastníš (+ drahokamy cechu, ak si vytvoril výzvu v rámci cechu). Poznámka: Túto odmenu neskôr už nemôžeš zmeniť.",
+ "prizePop": "If someone can 'win' your challenge, you can optionally award that winner a Gem prize. Max = #gems you own (+ guild.gems, if you created this challenge's guild). Note: This prize can't be changed later.",
+ "prizePopTavern": "If someone can 'win' your challenge, you can optionally award that winner a Gem prize. Max = #gems you own (+ guild.gems, if you created this challenge's guild). Note: This prize can't be changed later and Tavern challenges will not be refunded if the challenge is cancelled.",
"publicChallenges": "Minimum je 1 drahokam pre verejné výzvy (pomáha predísť spamu, naozaj).",
"officialChallenge": "Oficiálna výzva HabitRPG",
"by": "od",
- "participants": "<%= membercount %> Participants",
+ "participants": "<%= membercount %> Účastníci",
"join": "Pridať sa",
"exportChallengeCSV": "Exportovať do CSV",
"selectGroup": "Prosím, vyber skupinu",
"challengeCreated": "Výzva bola úspešne vytvorená",
"sureDelCha": "Zmazať výzvu. Si si istý?",
+ "sureDelChaTavern": "Delete challenge, are you sure? Your gems will not be refunded.",
"removeTasks": "Odstrániť úlohy",
"keepTasks": "Ponechať úlohy",
"closeCha": "Uzavrieť výzvu a...",
diff --git a/common/locales/sk/character.json b/common/locales/sk/character.json
index 5f6dd2024d..60ec3d5934 100644
--- a/common/locales/sk/character.json
+++ b/common/locales/sk/character.json
@@ -35,11 +35,11 @@
"flower": "Kvet",
"basicSkins": "Základné pokožky",
"rainbowSkins": "Dúhové pokožky",
- "pastelSkins": "Pastel Skins",
+ "pastelSkins": "Pastelové pokožky",
"spookySkins": "Strašidelné pokožky",
"supernaturalSkins": "Nadprirodzené pokožky",
"rainbowColors": "Dúhové farby",
- "shimmerColors": "Shimmer Colors",
+ "shimmerColors": "Trblietavé farby",
"hauntedColors": "Strašidelné farby",
"winteryColors": "Zimné Farby",
"equipment": "Výstroj",
@@ -52,9 +52,11 @@
"costume": "Kostým",
"costumeText": "Ak chceš radšej vyzerať inak, než vyzeráš so svojou aktuálnou bojovou výzbrojou, zaškrtni \"použiť kostým\", aby si si mohol zvoliť oblečenie, ktoré sa ti páči, no zároveň získavať bonusy za svoju najlepšiu bojovú výzbroj.",
"useCostume": "Použiť kostým",
- "gearAchievement": "Získal si odznak \"Najúžasnejší výstroj\" za zakúpenie najlepšieho a najdrahšieho výstroja pre svoje povolanie!",
+ "gearAchievement": "You have earned the \"Ultimate Gear\" Achievement for upgrading to the maximum gear set for a class! You have attained the following complete sets:",
+ "moreGearAchievements": "To attain more Ultimate Gear badges, change classes on your stats page and buy up your new class's gear!",
+ "armoireUnlocked": "You've also unlocked the Enchanted Armoire! Click on the Enchanted Armoire Reward for a random chance at special Equipment! It may also give you random XP or food items.",
"ultimGearName": "Najúžasnejší výstroj",
- "ultimGearText": "Vlastní najlepšiu zbraň a brnenie.",
+ "ultimGearText": "Has upgraded to the maximum weapon and armor set for the following classes:",
"level": "Level",
"levelUp": "Získal si nový level!",
"mana": "Mana",
@@ -70,6 +72,7 @@
"allocatePerPop": "Pridať bod do postrehu",
"allocateInt": "Body pridelené do Inteligencie:",
"allocateIntPop": "Pridať bod do inteligencie",
+ "noMoreAllocate": "Now that you've hit level 100, you won't gain any more Attribute Points. You can continue leveling up, or start a new adventure at level 1 by using the Orb of Rebirth, now available for free in the Market.",
"stats": "Štatistiky",
"strength": "Sila",
"strengthText": "Sila zvyšuje šancu náhodných \"kritických zásahov\" a tým aj možnosť získať z nich viac zlata, skúseností a predmetov. Taktiež pomáha zasadiť silnejšiu ranu boss monštrám.",
@@ -136,7 +139,8 @@
"displayNameDescription1": "Toto sa objaví v správach, ktoré zverejníte v hostinci, cechu alebo družine, spolu s tým, čo je zobrazené na tvojom avatarovi. Choď na",
"displayNameDescription2": "Nastavenia->Stránka",
"displayNameDescription3": "a na zmenu prihlasovacieho mena sa presuňte sa nadol k sekcii Registrácia",
- "unequipBattleGear": "Unequip Battle Gear",
- "unequipCostume": "Unequip Costume",
- "unequipPetMountBackground": "Unequip Pet, Mount, Background"
+ "unequipBattleGear": "Odlož Bojovú Výstroj",
+ "unequipCostume": "Odlož Kostým",
+ "unequipPetMountBackground": "Odlož Zvieratko, Tátoša, Pozadie",
+ "animalSkins": "Zvieracie pokožky"
}
\ No newline at end of file
diff --git a/common/locales/sk/communityguidelines.json b/common/locales/sk/communityguidelines.json
index 2cf6e02f00..a254c6f17c 100644
--- a/common/locales/sk/communityguidelines.json
+++ b/common/locales/sk/communityguidelines.json
@@ -173,5 +173,6 @@
"commGuideLink07": "The Art Trello",
"commGuideLink07description": "for submitting pixel art.",
"commGuideLink08": "The Quest Trello",
- "commGuideLink08description": "for submitting quest writing."
+ "commGuideLink08description": "for submitting quest writing.",
+ "lastUpdated": "Last updated"
}
\ No newline at end of file
diff --git a/common/locales/sk/content.json b/common/locales/sk/content.json
index 8f40eded73..c419731b7a 100644
--- a/common/locales/sk/content.json
+++ b/common/locales/sk/content.json
@@ -1,6 +1,10 @@
{
"potionText": "Elixír zdravia",
"potionNotes": "Vylieči 15 bodov zdravia (okamžité použitie)",
+ "armoireText": "Enchanted Armoire",
+ "armoireNotesFull": "Open the Armoire to randomly receive special Equipment, Experience, or food! Equipment pieces remaining:",
+ "armoireLastItem": "You've found the last piece of rare Equipment in the Enchanted Armoire.",
+ "armoireNotesEmpty": "The Armoire will have new Equipment every month. Until then, keep clicking for Experience and Food!",
"dropEggWolfText": "Vlk",
"dropEggWolfAdjective": "verný",
"dropEggTigerCubText": "Tigríček",
@@ -56,6 +60,8 @@
"questEggBunnyAdjective": "snuggly",
"questEggSlimeText": "Marshmallow Slime",
"questEggSlimeAdjective": "sweet",
+ "questEggSheepText": "Sheep",
+ "questEggSheepAdjective": "woolly",
"eggNotes": "Nájdi liahoxír, ktorý vyleješ na vajíčko, a vyliahne sa z neho <%= eggAdjective(locale) %> <%= eggText(locale) %>.",
"hatchingPotionBase": "Základný",
"hatchingPotionWhite": "Biely",
diff --git a/common/locales/sk/front.json b/common/locales/sk/front.json
index 4bcd0a598e..3103971de9 100644
--- a/common/locales/sk/front.json
+++ b/common/locales/sk/front.json
@@ -1,19 +1,99 @@
{
- "titleFront": "HabitRPG | Život je hra",
- "tagline": "Bezplatná aplikácia na vytváranie dobrých návykov, ktorá berie tvoj život ako hru.",
- "landingp1": "Problém väčšiny aplikácii na zlepšenie produktivity, ktoré sú na trhu, je, že neponúkajú žiadnu motiváciu, ktorá by pri nich človeka udržala. HabitRPG tento problém rieši tým, že vytváranie dobrých návykov mení na zábavu! Odmeňuje ťa za tvoje úspechy a trestá za pošmyknutia, HabitRPG ti poskytuje externú motiváciu za plnenie denno-denných aktivít.",
- "landingp2header": "Okamžitá odmena",
- "landingp2": "Kedykoľvek posilníš svoj dobrý návyk, dokončíš dennú úlohu, alebo sa postaráš o staré to-do, HabitRPG ťa ihneď odmení bodmi skúseností a zlatom. Ako získavaš skúsenosti, zvyšuje sa ti level, zlepšuješ si štatistky a odomykáš nové funkcie, ako tnapríklad povolania a zvieratká. Zlato môžeš míňať na herné predmety, ktoré zmenia tvoj zážitok z hry, alebo za také odmeny, ktoré si vytvoríš v reálnom svete tak, aby ťa motivovali. Aj ten najmenší úspech ťa ihneď odmení a teda znižuje náchylnosť k prokrastinácii.",
- "landingp3header": "Dôsledky",
- "landingp3": "Kedykoľvek si dopraješ zlý návyk alebo sa ti nepodarí dokončiť jednu z denných úloh, prídeš o zdravie. Ak ti zdravie klesne príliš nízko, zomrieš a stratíš časť z toho, čo si získal. V HabitRPG má každá akcia reakciu, a teda pomáha bojovať so zlými návykmi a prokrastinačnými cyklami skôr, než stihnú spôsobiť problémy v skutočnom živote.",
- "landingp4header": "Zodpovednosť",
- "landingp4": "Vďaka aktívnej komunite ti HabitRPG ponúka zodpovednosť, ktorú potrebuješ, aby si sa venoval svojim úlohám. Môžeš si založiť družinu a spolupracovať s najbližšími kamarátmi, ktorí ťa budú povzbudzovať. Môžeš sa pridať do cechu a nájsť ľudí s podobnými záujmami a problémami. Môžete spolu zdieľať svoje ciele a vymieňať si rady, ako sa vysporiadať s prekážkami. Komunita na HabitRPG znamená, že máš zároveň podporu aj dohľad, ktorý potrebuješ na dosiahnutie úspechu.",
+ "FAQ": "FAQ",
+ "accept1Terms": "Kliknutím na tlačidlo \"Registrovať\" súhlasím s",
+ "accept2Terms": "a ",
+ "alexandraQuote": "Couldn't NOT talk about HabitRPG during my speech in Madrid. Must-have tool for freelancers who still need a boss.",
+ "althaireQuote": "Having a quest constantly on really motivates me to do all my dailies and do all my to-dos. My biggest motivation is not letting my party down.",
+ "andeeliaoQuote": "Awesome product, just started a few days ago and already more conscious and productive with my time!",
+ "autumnesquirrelQuote": "I'm procrastinating less on work and housework and pay bills on time.",
+ "businessSample1": "Confirm 1 page of Inventory",
+ "businessSample2": "20 mins Filing",
+ "businessSample3": "Sort and Process Inbox",
+ "businessSample4": "Prepare 1 Document for Client",
+ "businessSample5": "Call Clients/Put Off Phone Calls",
+ "businessText": "Use HabitRPG at your business",
+ "choreSample1": "Put Dirty Clothes in Hamper",
+ "choreSample2": "20 mins of Housework",
+ "choreSample3": "Wash a Load of Dishes",
+ "choreSample4": "Tidy One Room",
+ "choreSample5": "Wash and Dry a Load of Clothes",
+ "chores": "Chores",
+ "communityBug": "Odoslať bug",
+ "communityExtensions": "Rozšírenia",
+ "communityFacebook": "Facebook",
+ "communityFeature": "Navrhnúť funkciu",
+ "communityForum": "Fórum",
+ "communityKickstarter": "Kickstarter",
+ "communityReddit": "Reddit",
+ "companyAbout": "How it Works",
+ "companyBlog": "Blog",
+ "companyDonate": "Darovať",
+ "companyExtensions": "Rozšírenia",
+ "companyPrivacy": "Súkromie",
+ "companyTerms": "Podmienky",
+ "companyVideos": "Videá",
+ "contribUse": "HabitRPG contributors use",
+ "dragonsilverQuote": "I can't tell you how many time and task tracking systems I've tried over the decades... HRPG is the only thing I've used that actually helps me get things done rather than just list them.",
+ "dreimQuote": "When I discovered HabitRPG last summer, I had just failed about half of my exams. Thanks to the Dailies… I was able to organize and discipline myself, and I actually passed all my exams with really good grades a month ago.",
+ "elmiQuote": "Every morning I'm looking forward to getting up so I can earn some gold!",
+ "email": "E-mail",
+ "emailNewPass": "Poslať nové heslo e-mailom",
+ "evagantzQuote": "My very first dentist appointment where the hygienist was actually excited about my flossing habits. Thanks Habitrpg!",
+ "examplesHeading": "Players use HabitRPG to manage...",
+ "featureAchievementByline": "Do something totally awesome? Get a badge and show it off!",
+ "featureAchievementHeading": "Achievement Badges",
+ "featureEquipByline": "Buy limited edition equipment, potions, and other virtual goodies in our Market with your task rewards!",
+ "featureEquipHeading": "Equipment and extras",
+ "featurePetByline": "Eggs and items drop when you complete your tasks. Be as productive as possible to collect pets and mounts!",
+ "featurePetHeading": "Pets and Mounts",
+ "featureSocialByline": "Join common-interest groups with like-minded people. Create Challenges to compete against other users.",
+ "featureSocialHeading": "Social play",
+ "featuredIn": "Featured in",
+ "featuresHeading": "We also feature...",
+ "footerCommunity": "Komunita",
+ "footerCompany": "Naša spoločnosť",
+ "footerMobile": "Mobilné",
+ "footerSocial": "Sociálne siete",
+ "forgotPass": "Zabudnuté heslo",
+ "frabjabulousQuote": "HabitRPG is the reason I got a killer, high-paying job... and even more miraculous, I'm now a daily flosser!",
+ "free": "Play for free",
+ "gamifyButton": "Gamify your life today!",
+ "goalSample1": "Practice Piano for 1 Hour",
+ "goalSample2": "Work on article for publication",
+ "goalSample3": "Work on blog post",
+ "goalSample4": "Japanese lesson on Duolingo",
+ "goalSample5": "Read an Informative Article",
+ "goals": "Goals",
+ "health": "Health",
+ "healthSample1": "Drink Water/Soda",
+ "healthSample2": "Chew Gum/Smoke",
+ "healthSample3": "Take Stairs/Elevator",
+ "healthSample4": "Eat Healthy/Junk Food",
+ "healthSample5": "Break a Sweat for 1 hr",
+ "history": "História",
+ "infhQuote": "HabitRPG has really helped me impart structure to my life in graduate school.",
+ "invalidEmail": "Ak chceš resetovať heslo, musíš zadať platnú emailovú adresu.",
+ "irishfeet123Quote": "I've had horrible habits with clearing my place completely after meals and leaving cups all over the place. HabitRPG has cured that!",
+ "joinOthers": "Join 200,000 people making it fun to achieve goals!",
+ "kazuiQuote": "Before HabitRPG, I was stuck with my thesis, as well as dissatisfied with my personal discipline regarding housework and things like learning vocabulary and studying Go theory. It turns out breaking down these tasks into smaller manageable checklists is quite the thing to keep me motivated and constantly working.",
+ "landingadminlink": "balíčky",
"landingend": "Ešte stále sme ťa nepresvedčili?",
"landingend2": "Pozri si podrobný zoznam",
- "landingfeatureslink": "našich funkcií",
"landingend3": ". Chceš osobnejší prístup? Pozri sa na naše",
- "landingadminlink": "balíčky",
"landingend4": ", ktoré sú ideálne pre rodiny, učiteľov, podporné skupiny, a firmy.",
+ "landingfeatureslink": "našich funkcií",
+ "landingp1": "Problém väčšiny aplikácii na zlepšenie produktivity, ktoré sú na trhu, je, že neponúkajú žiadnu motiváciu, ktorá by pri nich človeka udržala. HabitRPG tento problém rieši tým, že vytváranie dobrých návykov mení na zábavu! Odmeňuje ťa za tvoje úspechy a trestá za pošmyknutia, HabitRPG ti poskytuje externú motiváciu za plnenie denno-denných aktivít.",
+ "landingp2": "Kedykoľvek posilníš svoj dobrý návyk, dokončíš dennú úlohu, alebo sa postaráš o staré to-do, HabitRPG ťa ihneď odmení bodmi skúseností a zlatom. Ako získavaš skúsenosti, zvyšuje sa ti level, zlepšuješ si štatistky a odomykáš nové funkcie, ako tnapríklad povolania a zvieratká. Zlato môžeš míňať na herné predmety, ktoré zmenia tvoj zážitok z hry, alebo za také odmeny, ktoré si vytvoríš v reálnom svete tak, aby ťa motivovali. Aj ten najmenší úspech ťa ihneď odmení a teda znižuje náchylnosť k prokrastinácii.",
+ "landingp2header": "Okamžitá odmena",
+ "landingp3": "Kedykoľvek si dopraješ zlý návyk alebo sa ti nepodarí dokončiť jednu z denných úloh, prídeš o zdravie. Ak ti zdravie klesne príliš nízko, zomrieš a stratíš časť z toho, čo si získal. V HabitRPG má každá akcia reakciu, a teda pomáha bojovať so zlými návykmi a prokrastinačnými cyklami skôr, než stihnú spôsobiť problémy v skutočnom živote.",
+ "landingp3header": "Dôsledky",
+ "landingp4": "Vďaka aktívnej komunite ti HabitRPG ponúka zodpovednosť, ktorú potrebuješ, aby si sa venoval svojim úlohám. Môžeš si založiť družinu a spolupracovať s najbližšími kamarátmi, ktorí ťa budú povzbudzovať. Môžeš sa pridať do cechu a nájsť ľudí s podobnými záujmami a problémami. Môžete spolu zdieľať svoje ciele a vymieňať si rady, ako sa vysporiadať s prekážkami. Komunita na HabitRPG znamená, že máš zároveň podporu aj dohľad, ktorý potrebuješ na dosiahnutie úspechu.",
+ "landingp4header": "Zodpovednosť",
+ "leadText": "HabitRPG is a free habit building and productivity app that treats your real life like a game. With in-game rewards and punishments to motivate you and a strong social network to inspire you, HabitRPG can help you achieve your goals to become healthy, hard-working, and happy.",
+ "login": "Prihlásiť",
+ "loginAndReg": "Prihlásiť / Registrovať",
+ "loginFacebookAlt": "Prihlásiť / Registrovať pomocou Facebook účtu",
+ "logout": "Odhlásiť",
"marketing1Header": "Hraním hry si zlepši návyky",
"marketing1Lead1": "HabitRPG je počítačová hra, ktorá ti pomôže zlepšiť sa v skutočných návykoch. Gamifikuje tvoj život, tým že úlohy (návyky, denné úlohy a úlohy) pretvára na príšerky, ktoré potrebuješ poraziť. Čím lepšie ti to ide, tým lepšie v hre postupuješ. Ak pochybíš v reálnom živote, negatívne to ovplyvní aj tvoju postavu v hre.",
"marketing1Lead2": "Získaj hustú výzbroj. Zlepšuj si návyky a vylepši si postavu. Ukáž akú drsnú výzbroj máš.",
@@ -26,71 +106,77 @@
"marketing2Lead2Title": "Bossovia",
"marketing2Lead3": "Výzvami súperíš s priateľmi a cudzími. Ten, komu sa na konci výzvy darí najlepšie, vyhrá špeciálnu odmenu.",
"marketing3Header": "Aplikácie",
- "marketing3Lead1Title": "iPhone a Android",
"marketing3Lead1": "S aplikáciami pre iPhone a Android sa môžeš o všetko postarať za pochodu. Uvedomujeme si, že zapínanie počítača len preto, aby ste ťukali na tlačidlá vie byť riadna otrava.",
"marketing3Lead2": "Iné nástroje tretích strán spájajú HabitRPG s rôznymi aspektami tvojho života. Naše API poskytuje jednoduchú integráciu vecí akoRozšírenie Chrome, ktorým pri browsovaní po neproduktívnych stránkach strácaš body a zíkavaš za produktívne. Viac tu",
"marketing4Header": "Použitie na organizovanie",
- "marketing4Lead1Title": "Gamifikácia vo výučbe",
"marketing4Lead1": "Výučba je jedna z najlepších oblastí na gamifikáciu. Všetci vieme, žeštudenti stále pozerajú do mobilov a hrajú sa. Využime tento potenciál silu! Nechajte svojich študentov súťažiť proti sebe. Odmeňujte dobré správanie vzácnymi cenami. Sledujte. ako sa zlepšujú ich známky a správanie.",
- "marketing4Lead2Title": "Gamifikácia životného štýlu a zdravia",
+ "marketing4Lead1Title": "Gamifikácia vo výučbe",
"marketing4Lead2": "Zdravotná starostlivosť niečo stojí, no nie sme o nič zdravší. Vznikajú stovky programov na zníženie ceny a zlepšenie zdravia. Veríme, že HabitRPG môže vydláždiť cestu k zdravšiemu životnému štýlu.",
- "marketing4Lead3Title": "Gamifikuj všetko",
+ "marketing4Lead2Title": "Gamifikácia životného štýlu a zdravia",
"marketing4Lead3-1": "Chceš gamifikovať svoj život?",
"marketing4Lead3-2": "Máš záujem a o organizovanie skupiny vo vzdelávaní, zdravej životospráve alebo iných oblastiach?",
"marketing4Lead3-3": "Chceš sa naučiť viac?",
- "playButton": "Hrať",
- "username": "Používateľské meno",
- "password": "Heslo",
- "useUUID": "Použi UUID / API Token (Pre používateľov Facebooku)",
- "passMan": "V prípade, že používaš správcu hesiel (napr. 1Password) a máš problém s prihlásením, vyskúšaj zadať svoje meno a heslo ručne.",
- "forgotPass": "Zabudnuté heslo",
- "emailNewPass": "Poslať nové heslo e-mailom",
- "invalidEmail": "Ak chceš resetovať heslo, musíš zadať platnú emailovú adresu.",
- "email": "E-mail",
- "passConfirm": "Potvrdiť heslo",
- "accept1Terms": "Kliknutím na tlačidlo \"Registrovať\" súhlasím s",
- "terms": "Podmienkami používania",
- "accept2Terms": "a ",
- "privacy": "Zásadami ochrany osobných údajov",
- "home": "Domov",
- "learnMore": "Zisti viac",
- "contact": "Kontakt",
- "history": "História",
- "anonymous": "Anonym",
- "tasks": "Úlohy",
- "loginAndReg": "Prihlásiť / Registrovať",
- "loginFacebookAlt": "Prihlásiť / Registrovať pomocou Facebook účtu",
- "login": "Prihlásiť",
- "register": "Registrovať",
- "options": "Možnosti",
- "logout": "Odhlásiť",
- "sync": "Synchronizovať",
- "FAQ": "FAQ",
- "tutorials": "Návody",
- "psst": "Psst",
- "footerMobile": "Mobilné",
- "mobileIOS": "iOS",
+ "marketing4Lead3Title": "Gamifikuj všetko",
"mobileAndroid": "Android",
- "footerCompany": "Naša spoločnosť",
- "companyDonate": "Darovať",
- "companyAbout": "How it Works",
- "companyVideos": "Videá",
- "companyBlog": "Blog",
- "companyExtensions": "Rozšírenia",
- "companyPrivacy": "Súkromie",
- "companyTerms": "Podmienky",
- "footerCommunity": "Komunita",
- "communityBug": "Odoslať bug",
- "communityFeature": "Navrhnúť funkciu",
- "communityExtensions": "Rozšírenia",
- "communityForum": "Fórum",
- "communityKickstarter": "Kickstarter",
- "communityFacebook": "Facebook",
- "communityReddit": "Reddit",
- "footerSocial": "Sociálne siete",
- "socialTitle": "HabitRPG - Život je hra",
- "watchVideos": "Pozri si videá",
+ "mobileIOS": "iOS",
+ "motivate": "Motivate yourself and your team!",
+ "motivate1": "Motivate yourself to do anything.",
+ "motivate2": "Get Organized. Get Motivated. Get Gold.",
+ "passConfirm": "Potvrdiť heslo",
+ "passMan": "V prípade, že používaš správcu hesiel (napr. 1Password) a máš problém s prihlásením, vyskúšaj zadať svoje meno a heslo ručne.",
+ "password": "Heslo",
+ "playButton": "Hrať",
+ "playButtonFull": "Play HabitRPG",
"presskit": "Press Kit",
+ "presskitDownload": "Stiahnuť všetky obrázky:",
"presskitText": "Ďakujeme za váš záujem o HabitRPG! Nasledujúce obrázky môžu byť použité ako články a videá o HabitRPG. Pre viac informácií, prosím, kontaktujte Siena Leslie na leslie@habitrpg.com.",
- "presskitDownload": "Stiahnuť všetky obrázky:"
+ "privacy": "Zásadami ochrany osobných údajov",
+ "psst": "Psst",
+ "punishByline": "Break bad habits and procrastination cycles with immediate consequences.",
+ "punishHeading1": "Miss a daily goal?",
+ "punishHeading2": "Lose health!",
+ "questByline1": "Playing with your friends keeps you accountable for your tasks.",
+ "questByline2": "Issue each other Challenges to complete a goal together!",
+ "questHeading1": "Battle monsters with your friends!",
+ "questHeading2": "If you slack off, they all get hurt!",
+ "register": "Registrovať",
+ "rewardByline1": "Spend gold on virtual and real-life rewards.",
+ "rewardByline2": "Instant rewards keep you motivated!",
+ "rewardHeading": "Complete a task to earn gold!",
+ "sampleDailies": "Sample Dailies",
+ "sampleHabits": "Sample Habits",
+ "sampleToDo": "Sample To-Dos",
+ "school": "School",
+ "schoolSample1": "Finish 1 Assignment",
+ "schoolSample2": "Study 1 hour",
+ "schoolSample3": "Meet with Study Group",
+ "schoolSample4": "Notes for 1 Chapter",
+ "schoolSample5": "Read 1 Chapter",
+ "sixteenBitFilQuote": "I'm getting my jobs and tasks done in record time thanks to HabitRPG. I'm just always so eager to reach my next level-up!",
+ "skysailorQuote": "My party and our quests keep me engaged in the game, which keeps me motivated to get things done and change my life in positive ways",
+ "socialTitle": "HabitRPG - Život je hra",
+ "supermouse35Quote": "I'm exercising more and I haven't forgotten to take my meds for months! Thanks, Habit. :D",
+ "sync": "Synchronizovať",
+ "tasks": "Úlohy",
+ "teamSample1": "Outline Meeting Itinerary for Tuesday",
+ "teamSample2": "Brainstorm Growth Hacking",
+ "teamSample3": "Discuss this week’s KPIs",
+ "teams": "Teams",
+ "terms": "Podmienkami používania",
+ "testimonialHeading": "What people say...",
+ "tutorials": "Návody",
+ "unlockByline1": "Achieve your goals and level up.",
+ "unlockByline2": "Unlock new motivational tools, such as pet collecting, random rewards, spell-casting, and more!",
+ "unlockHeadline": "As you stay productive, you unlock new content!",
+ "useUUID": "Použi UUID / API Token (Pre používateľov Facebooku)",
+ "username": "Používateľské meno",
+ "watchVideos": "Pozri si videá",
+ "work": "Work",
+ "zelahQuote": "With HabitRPG, I can be persuaded to go to bed on time by the thought of gaining points for an early night or losing health for a late one!",
+ "reportAccountProblems": "Report Account Problems",
+ "reportCommunityIssues": "Report Community Issues",
+ "generalQuestionsSite": "General Questions about the Site",
+ "businessInquiries": "Business Inquiries",
+ "merchandiseInquiries": "Merchandise Inquiries",
+ "marketingInquiries": "Marketing/Social Media Inquiries"
}
\ No newline at end of file
diff --git a/common/locales/sk/gear.json b/common/locales/sk/gear.json
index 47d5d382a8..fb22b080bb 100644
--- a/common/locales/sk/gear.json
+++ b/common/locales/sk/gear.json
@@ -69,21 +69,21 @@
"weaponSpecialCriticalText": "Kritické kladivo Bugobijec",
"weaponSpecialCriticalNotes": "Tam kde mnoho bojovníkov padlo, tento šampión skolil problematického zloducha z Githubu. Vyrobené z kostí Bugov, toto kladivo udeľuje mocné kritické zásahy. Zvyšuje silu aj postreh o <%= attrs %>.",
"weaponSpecialYetiText": "Kopija krotiteľa yetiov",
- "weaponSpecialYetiNotes": "This spear allows its user to command any yeti. Increases Strength by <%= str %>. Limited Edition 2013-2014 Winter Gear.",
+ "weaponSpecialYetiNotes": "Táto kopija umožňuje rozkazovať hocijakému yetimu. Zvyšuje silu o <%= str %>. Limitovaná Edícia 2013-2014 Zimná Výbava. ",
"weaponSpecialSkiText": "Lyžossassinská palica",
- "weaponSpecialSkiNotes": "A weapon capable of destroying hordes of enemies! It also helps the user make very nice parallel turns. Increases Strength by <%= str %>. Limited Edition 2013-2014 Winter Gear.",
+ "weaponSpecialSkiNotes": "Zbraň schopná ničiť davy nepriateľov! Pomáha tiež robiť veľmi pekné oblúčiky. Zvyšuje silu o <%= str %>. Limitovaná Edícia 2013-2014 Zimná Výbava. ",
"weaponSpecialCandycaneText": "Lízatková palica",
- "weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Two-handed weapon. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.",
+ "weaponSpecialCandycaneNotes": "Mocná čarodejná palica. Mocne LAHODNÁ, samozrejme! Obojručná zbraň. Zvyšuje inteligenciu o <%= int %> a postreh o <%= per %>. Limitovaná Edícia 2013-2014 Zimná Výbava. ",
"weaponSpecialSnowflakeText": "Vločkový prútik",
- "weaponSpecialSnowflakeNotes": "This wand sparkles with unlimited healing power. Increases Intelligence by <%= int %>. Limited Edition 2013-2014 Winter Gear.",
+ "weaponSpecialSnowflakeNotes": "Tento prútik sa ligoce nezmernou liečebnou silou. Zvyšuje inteligenciu o <%= int %>. Limitovaná Edícia 2013-2014 Zimná Výbava. ",
"weaponSpecialSpringRogueText": "Hákové pazúre",
- "weaponSpecialSpringRogueNotes": "Great for scaling tall buildings, and also for shredding carpets. Increases Strength by <%= str %>. Limited Edition 2014 Spring Gear.",
+ "weaponSpecialSpringRogueNotes": "Výborné na šplhanie sa po budovách a rozdriapanie kobercov. Zvyšuje silu o <%= str %>. Limitovaná Edícia 2014 Jarná Výbava. ",
"weaponSpecialSpringWarriorText": "Mrkvový meč",
- "weaponSpecialSpringWarriorNotes": "This mighty sword can slice foes with ease! It also makes a delicious mid-battle snack. Increases Strength by <%= str %>. Limited Edition 2014 Spring Gear.",
+ "weaponSpecialSpringWarriorNotes": "Tento ohromný meč krája nepriateľov s ľahkosťou! Tiež môže slúžiť ako chutné občerstvenie počas boja. Zvyšuje silu o <%= str %>. Limitovaná Edícia 2014 Jarná Výbava. ",
"weaponSpecialSpringMageText": "Ementálová palica",
- "weaponSpecialSpringMageNotes": "Only the most powerful rodents can brave their hunger to wield this potent staff. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2014 Spring Gear.",
+ "weaponSpecialSpringMageNotes": "Iba tie najmocnejšie hlodavce dokážu čeliť svojmu hladu a nosiť túto nebezpečnú palicu. Zvyšuje inteligenciu o <%= int %> a postreh o <%= per %>. Limitovaná Edícia 2014 Jarná Výbava. ",
"weaponSpecialSpringHealerText": "Krásna kosť",
- "weaponSpecialSpringHealerNotes": "FETCH! Increases Intelligence by <%= int %>. Limited Edition 2014 Spring Gear.",
+ "weaponSpecialSpringHealerNotes": "DONES! Zvyšuje inteligenciu o <%= int %>. Limitovaná Edícia 2014 Jarná Výbava. ",
"weaponSpecialSummerRogueText": "Pirátska šabľa",
"weaponSpecialSummerRogueNotes": "Avast! You'll make those Dailies walk the plank! Increases Strength by <%= str %>. Limited Edition 2014 Summer Gear.",
"weaponSpecialSummerWarriorText": "Seafaring Slicer",
@@ -120,6 +120,8 @@
"weaponMystery201411Notes": "Stab your enemies or dig in to your favorite foods - this versatile pitchfork does it all! Confers no benefit. November 2014 Subscriber Item.",
"weaponMystery201502Text": "Shimmery Winged Staff of Love and Also Truth",
"weaponMystery201502Notes": "For WINGS! For LOVE! For ALSO TRUTH! Confers no benefit. February 2015 Subscriber Item.",
+ "weaponMystery201505Text": "Green Knight Lance",
+ "weaponMystery201505Notes": "This green and silver lance has unseated many opponents from their mounts. Confers no benefit. May 2015 Subscriber Item.",
"weaponMystery301404Text": "Steampunk Cane",
"weaponMystery301404Notes": "Excellent for taking a turn about town. March 3015 Subscriber Item. Confers no benefit.",
"armor": "armor",
@@ -247,6 +249,8 @@
"armorMystery201501Notes": "Galaxies shimmer in the metal of this armor, strengthening the wearer's resolve. Confers no benefit. January 2015 Subscriber Item.",
"armorMystery201503Text": "Aquamarine Armor",
"armorMystery201503Notes": "This blue mineral symbolizes good luck, happiness, and eternal productivity. Confers no benefit. March 2015 Subscriber Item.",
+ "armorMystery201504Text": "Busy Bee Robe",
+ "armorMystery201504Notes": "You'll be productive as a busy bee in this fetching robe! Confers no benefit. April 2015 Subscriber Item.",
"armorMystery301404Text": "Steampunk Suit",
"armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.",
"headgear": "headgear",
@@ -368,6 +372,8 @@
"headMystery201412Notes": "Who's a penguin? Confers no benefit. December 2014 Subscriber Item.",
"headMystery201501Text": "Starry Helm",
"headMystery201501Notes": "The constellations flicker and swirl in this helm, guiding the wearer's thoughts towards focus. Confers no benefit. January 2015 Subscriber Item.",
+ "headMystery201505Text": "Green Knight Helm",
+ "headMystery201505Notes": "The green plume on this iron helm waves proudly. Confers no benefit. May 2015 Subscriber Item.",
"headMystery301404Text": "Fancy Top Hat",
"headMystery301404Notes": "A fancy top hat for the finest of gentlefolk! January 3015 Subscriber Item. Confers no benefit.",
"headMystery301405Text": "Basic Top Hat",
@@ -445,6 +451,8 @@
"backMystery201404Notes": "Be a butterfly and flutter by! Confers no benefit. April 2014 Subscriber Item.",
"backMystery201410Text": "Goblin Wings",
"backMystery201410Notes": "Swoop through the night on these strong wings. Confers no benefit. October 2014 Subscriber Item.",
+ "backMystery201504Text": "Busy Bee Wings",
+ "backMystery201504Notes": "Buzz buzz buzz! Flit from task to task. Confers no benefit. April 2015 Subscriber Item.",
"backSpecialWonderconRedText": "Mocný plášť",
"backSpecialWonderconRedNotes": "Swishes with strength and beauty. Confers no benefit. Special Edition Convention Item.",
"backSpecialWonderconBlackText": "Tajomný plášť",
@@ -462,6 +470,8 @@
"bodySpecialSummerHealerText": "Coral Collar",
"bodySpecialSummerHealerNotes": "A stylish collar of live coral! Confers no benefit. Limited Edition 2014 Summer Gear.",
"headAccessory": "head accessory",
+ "accessories": "Accessories",
+ "animalEars": "Animal Ears",
"headAccessoryBase0Text": "Žiadny doplnok",
"headAccessoryBase0Notes": "Žiadny doplnok",
"headAccessorySpecialSpringRogueText": "Fialové mačacie uši",
@@ -480,6 +490,22 @@
"headAccessorySpecialSpring2015MageNotes": "These ears listen keenly, in case somewhere a magician is revealing secrets. Confers no benefit. Limited Edition 2015 Spring Gear.",
"headAccessorySpecialSpring2015HealerText": "Green Kitty Ears",
"headAccessorySpecialSpring2015HealerNotes": "These cute kitty ears will make others green with envy. Confers no benefit. Limited Edition 2015 Spring Gear.",
+ "headAccessoryBearEarsText": "Bear Ears",
+ "headAccessoryBearEarsNotes": "These ears make you look like a cuddly bear! Confers no benefit.",
+ "headAccessoryCactusEarsText": "Cactus Ears",
+ "headAccessoryCactusEarsNotes": "These ears make you look like a prickly cactus! Confers no benefit.",
+ "headAccessoryFoxEarsText": "Fox Ears",
+ "headAccessoryFoxEarsNotes": "These ears make you look like a wily fox! Confers no benefit.",
+ "headAccessoryLionEarsText": "Lion Ears",
+ "headAccessoryLionEarsNotes": "These ears make you look like a regal lion! Confers no benefit.",
+ "headAccessoryPandaEarsText": "Panda Ears",
+ "headAccessoryPandaEarsNotes": "These ears make you look like a gentle panda! Confers no benefit.",
+ "headAccessoryPigEarsText": "Pig Ears",
+ "headAccessoryPigEarsNotes": "These ears make you look like a whimsical pig! Confers no benefit.",
+ "headAccessoryTigerEarsText": "Tiger Ears",
+ "headAccessoryTigerEarsNotes": "These ears make you look like a fierce tiger! Confers no benefit.",
+ "headAccessoryWolfEarsText": "Wolf Ears",
+ "headAccessoryWolfEarsNotes": "These ears make you look like a loyal wolf! Confers no benefit.",
"headAccessoryMystery201403Text": "Parohy zálesáka",
"headAccessoryMystery201403Notes": "These antlers shimmer with moss and lichen. Confers no benefit. March 2014 Subscriber Item.",
"headAccessoryMystery201404Text": "Tykadlá súmračného potýľa",
diff --git a/common/locales/sk/generic.json b/common/locales/sk/generic.json
index 54519d20f1..f9d3ab82ef 100644
--- a/common/locales/sk/generic.json
+++ b/common/locales/sk/generic.json
@@ -5,7 +5,20 @@
"habitica": "Habitika",
"expandToolbar": "Rozbaliť lištu",
"collapseToolbar": "Zrolovať lištu",
- "formattingMarkdown": "Markdown formátovanie povolené",
+ "markdownBlurb": "HabitRPG uses markdown for message formatting. See the Markdown Cheat Sheet for more info.",
+ "showFormattingHelp": "Show formatting help",
+ "hideFormattingHelp": "Hide formatting help",
+ "youType": "You type:",
+ "youSee": "You see:",
+ "italics": "*Italics*",
+ "bold": "**Bold**",
+ "strikethrough": "~~Strikethrough~~",
+ "emojiExample": ":smile:",
+ "markdownLinkEx": "[HabitRPG is great!](https://habitrpg.com)",
+ "markdownImageEx": "",
+ "unorderedListHTML": "+ First item
+ Second item
+ Third item",
+ "unorderedListMarkdown": "+ First item\n+ Second item\n+ Third item",
+ "code": "`code`",
"achievements": "Odznaky",
"modalAchievement": "Odznak!",
"special": "Špeciálne",
diff --git a/common/locales/sk/groups.json b/common/locales/sk/groups.json
index d2134feba0..581bcce83c 100644
--- a/common/locales/sk/groups.json
+++ b/common/locales/sk/groups.json
@@ -2,7 +2,7 @@
"tavern": "Hostinec",
"innCheckOut": "Odíď z hostinca",
"innCheckIn": "Odpočiň si v hostinci",
- "innText": "How's your stay in the Inn, <%= name %>? To protect you, your daily list is frozen. Your checkmarks won't be processed or cleared until tomorrow (the day after you check out). Be careful, if your party's in a Boss Battle, their misses will hurt you! Also, you won't hurt the boss. Ready to leave? Check out.",
+ "innText": "You're resting in the Inn! While checked-in, your Dailies won't hurt you at the day's end, but they will still refresh every day. Be warned: If you are participating in a Boss Quest, the Boss will still damage you for your party mates' missed Dailies unless they are also in the Inn! Also, your own damage to the Boss (or items collected) will not be applied until you check out of the Inn.",
"lfgPosts": "Príspevky ľudí hľadajúcich skupiny (\"Zháňam družinu\")",
"tutorial": "Návod",
"glossary": "Glosár",
@@ -96,5 +96,25 @@
"abuseReported": "Thank you for reporting this violation. The moderators have been notified.",
"abuseAlreadyReported": "You have already reported this message.",
"needsText": "Please type a message.",
- "needsTextPlaceholder": "Type your message here."
+ "needsTextPlaceholder": "Type your message here.",
+ "copyMessageAsToDo": "Copy message as To-Do",
+ "messageAddedAsToDo": "Message copied as To-Do.",
+ "messageWroteIn": "<%= user %> wrote in <%= group %>",
+ "msgPreviewHeading": "Message Preview",
+ "leaderOnlyChallenges": "Only group leader can create challenges",
+ "sendGift": "Send Gift",
+ "inviteFriends": "Invite Friends",
+ "inviteAlertInfo": "Invite friends by User ID here.",
+ "inviteExistUser": "Invite Existing User",
+ "inviteByEmail": "Invite friends by email. If they join via your email, they'll automatically be invited to this group.",
+ "byColon": "By:",
+ "inviteNewUsers": "Invite New User(s)",
+ "inviteAlertInfo2": "Or share this link (copy/paste):",
+ "sendGiftHeading": "Send Gift to <%= name %>",
+ "sendGiftGemsBalance": "From <%= number %> Gems",
+ "sendGiftCost": "Total: $<%= cost %> USD",
+ "sendGiftFromBalance": "From Balance",
+ "sendGiftPurchase": "Purchase",
+ "sendGiftMessagePlaceholder": "Personal message (optional)",
+ "sendGiftSubscription": "<%= months %> Month(s): $<%= price %>"
}
\ No newline at end of file
diff --git a/common/locales/sk/npc.json b/common/locales/sk/npc.json
index 5adbb8a338..0630f5a43b 100644
--- a/common/locales/sk/npc.json
+++ b/common/locales/sk/npc.json
@@ -2,11 +2,11 @@
"npc": "NPC",
"npcText": "Podporil projekt na Kickstarteri na najvyššej úrovni!",
"mattBoch": "Matt Boch",
- "mattShall": "Mám priviesť tvojho tátoša, <%= name %>? Klikni na toho, ktorého chceš osedlať.",
- "mattBochText1": "Vitaj v Stajni! Som Matt, pán šeliem. Vyber si zvieratko, ktoré bude stáť po tvojom boku. Ak budeš svoje zvieratká poctivo kŕmiť, raz z nich vyrastú mocné tátoše.",
+ "mattShall": "Shall I bring you your steed, <%= name %>? Once you've fed a pet enough food to turn it into a mount, it will appear here. Click a mount to saddle up!",
+ "mattBochText1": "Welcome to the Stable! I'm Matt, the beast master. After level 4, you can hatch pets using eggs and potions. When you hatch a pet in the Market, it will appear here! Click a pet's image to add it to your avatar. Feed them with the food you find after level 4, and they'll grow into powerful mounts.",
"daniel": "Daniel",
- "danielText": "Vitaj v hostinci! Pokojne tu chvíľu pobudni a zoznám sa s miestnymi. Ak si potrebuješ odpočinúť (dovolenka? náhla choroba?), ubytujeme ťa u nás. Pokiaľ si v hostinci, tvoje denné úlohy ostanú zmrazené (zaškrtnuté/odškrtnuté) do dňa nasledujúceho po odchode z hostinca. Neublížia ti na konci dňa.",
- "danielText2": "Pozor: ak si na výprave proti bossovi, boss ti stále bude ubližovať za úlohy nesplnené tvojimi spolubojovníkmi!",
+ "danielText": "Welcome to the Tavern! Stay a while and meet the locals. If you need to rest (vacation? illness?), I'll set you up at the Inn. While checked-in, your Dailies won't hurt you at the day's end, but you can still check them off.",
+ "danielText2": "Be warned: If you are participating in a boss quest, the boss will still damage you for your party mates' missed Dailies! Also, your own damage to the Boss (or items collected) will not be applied until you check out of the Inn.",
"alexander": "Kupec Alexander",
"welcomeMarket": "Vitaj na trhu! Kúp si u nás vzácne vajcia a elixíry! Predaj všetko, čo máš navyše! Objednaj si užitočné služby. Pozri sa, čo všetko ponúkame.",
"sellForGold": "Predať: <%= item %>? Cena v zlate: <%= gold %>",
@@ -45,9 +45,9 @@
"tourScrollDown": "Be sure to scroll all the way down to see all the options! Click on your avatar again to return to the tasks page.",
"tourMuchMore": "When you're done with tasks, you can form a Party with friends, chat in the shared-interest Guilds, join Challenges, and more!",
"tourStatsPage": "This is your Stats page! Earn achievements by completing the listed tasks.",
- "tourTavernPage": "Welcome to the Tavern, an all-ages chatroom! You can freeze your account in case of illness or travel by clicking \"Rest in the Inn.\" Come say hi!",
+ "tourTavernPage": "Welcome to the Tavern, an all-ages chatroom! You can keep your Dailies from hurting you in case of illness or travel by clicking \"Rest in the Inn.\" Come say hi!",
"tourPartyPage": "Your Party will help you stay accountable. Invite friends to unlock a Quest Scroll!",
"tourGuildsPage": "Guilds are social groups with common themes. Search for the subjects that interest you! We recommend the Newbies Guild.",
- "tourChallengesPage": "Joining a Challenge will add tasks to your account. Compete against other users to win gem prizes!",
+ "tourChallengesPage": "Challenges are themed task lists created by users! Joining a Challenge will add its tasks to your account. Compete against other users to win gem prizes!",
"tourMarketPage": "Starting at Level 4, eggs and hatching potions drop randomly when you complete tasks. They appear here - use them to hatch pets! You can also buy items from the Market."
}
\ No newline at end of file
diff --git a/common/locales/sk/quests.json b/common/locales/sk/quests.json
index e57293e9c9..d6e310c31c 100644
--- a/common/locales/sk/quests.json
+++ b/common/locales/sk/quests.json
@@ -6,6 +6,8 @@
"questSend": "Kliknutím na \"Pozvať\" sa odošle pozvánka všetkým členom družiny. Keď všetci členovia prijmú alebo odmietnu, výprava začne. Stav výpravy nájdeš v menu Nastavenia > Spoločnosť > Družina",
"inviteParty": "Pozvať družinu",
"questInvitation": "Pozvánka na výpravu:",
+ "questInvitationTitle": "Quest Invitation",
+ "questInvitationInfo": "Invitation for the Quest <%= quest %>",
"askLater": "Spýtať sa neškôr",
"buyQuest": "Kúpiť výpravu",
"accepted": "Prijatá",
@@ -17,7 +19,7 @@
"bossStrength": "Boss Strength",
"collect": "Collect",
"collected": "Nazbieraných",
- "bossDmg1": "To hurt a boss, complete your Dailies and To-Dos. Higher task damage means higher boss damage (completing reds, Mage spells, Warrior attacks, etc). The boss will deal damage to every quest participant for every Daily you've missed (multiplied by the boss's Strength) in addition to your regular damage, so keep your party healthy by completing your Dailies! All damage to and from a boss is tallied on cron (your day roll-over).",
+ "bossDmg1": "Each completed Daily and To-Do and each positive Habit hurts the boss. Hurt it more with redder tasks or Brutal Smash and Burst of Flames. The boss will deal damage to every quest participant for every Daily you've missed (multiplied by the boss's Strength) in addition to your regular damage, so keep your party healthy by completing your Dailies! All damage to and from a boss is tallied on cron (your day roll-over).",
"bossDmg2": "Len tí, čo sú na výprave môžu bojovať s bossom a podeliť sa o korisť.",
"tavernBossInfo": "To hurt a world boss, complete your Dailies and To-Dos. Higher task damage means higher boss damage (completing reds, Mage spells, Warrior attacks, etc). For each Daily you've missed (multiplied by the boss's Strength), the boss's Rage will increase. Once his Rage reaches max, something bad will happen - so complete your Dailies! All damage to and from a boss is tallied on cron (your day roll-over).",
"bossColl1": "Pre získanie predmetov musíš plniť svoje dobré návyky. Predmety za ukončenie výpravy padajú ako normálne predmety, ale uvidíš ich až nasledujúci deň. Vtedy sa všetko sčíta a pridá na hromadu.",
diff --git a/common/locales/sk/questscontent.json b/common/locales/sk/questscontent.json
index 878b8d3d7b..9f9e894a46 100644
--- a/common/locales/sk/questscontent.json
+++ b/common/locales/sk/questscontent.json
@@ -196,5 +196,11 @@
"questSlimeBoss": "Jelly Regent",
"questSlimeCompletion": "With a final jab, you trap the Jelly Regent in an over-sized donut, rushed in by @Overomega, @LordDarkly, and @Shaner, the quick-thinking leaders of the pastry club. As everyone is patting you on the back, you feel someone slip something into your pocket. It’s the reward for your sweet success: three Marshmallow Slime eggs.",
"questSlimeDropSlimeEgg": "Marshmallow Slime (Egg)",
- "questSlimeUnlockText": "Unlocks purchasable slime eggs in the Market"
+ "questSlimeUnlockText": "Unlocks purchasable slime eggs in the Market",
+ "questSheepText": "The Thunder Ram",
+ "questSheepNotes": "As you wander the rural Taskan countryside with friends, taking a \"quick break\" from your obligations, you find a cozy yarn shop. You are so absorbed in your procrastination that you hardly notice the ominous clouds creep over the horizon. \"I've got a ba-a-a-ad feeling about this weather,\" mutters @Misceo, and you look up. The stormy clouds are swirling together, and they look a lot like a... \"We don't have time for cloud-gazing!\" @starsystemic shouts. \"It's attacking!\" The Thunder Ram hurtles forward, slinging bolts of lightning right at you!",
+ "questSheepBoss": "Thunder Ram",
+ "questSheepCompletion": "Impressed by your diligence, the Thunder Ram is drained of its fury. It launches three huge hailstones in your direction, and then fades away with a low rumble. Upon closer inspection, you discover that the hailstones are actually three fluffy eggs. You gather them up, and then stroll home under a blue sky.",
+ "questSheepDropSheepEgg": "Sheep (Egg)",
+ "questSheepUnlockText": "Unlocks purchasable sheep eggs in the Market"
}
\ No newline at end of file
diff --git a/common/locales/sk/settings.json b/common/locales/sk/settings.json
index 19b7db5652..0a067197cc 100644
--- a/common/locales/sk/settings.json
+++ b/common/locales/sk/settings.json
@@ -93,10 +93,12 @@
"wonChallenge": "You Won a Challenge",
"newPM": "Received Private Message",
"giftedGems": "Gifted Gems",
+ "giftedGemsInfo": "<%= amount %> Gems - by <%= name %>",
"giftedSubscription": "Gifted Subscription",
"invitedParty": "Pozvaný do družiny",
"invitedGuild": "Invited To Guild",
"inactivityEmails": "Your account is inactive",
+ "weeklyRecaps": "Summaries of your account activity in the past week",
"questStarted": "Your Quest has Begun",
"invitedQuest": "Invited to Quest",
"kickedGroup": "Kicked from group",
@@ -111,5 +113,10 @@
"benefits": "Výhody",
"coupon": "Coupon",
"couponPlaceholder": "Enter Coupon Code",
- "couponText": "We sometimes have events and give out coupon codes for special gear. (eg, those who stop by our Wondercon booth)"
+ "couponText": "We sometimes have events and give out promo codes for special gear. (eg, those who stop by our Wondercon booth)",
+ "apply": "Apply",
+ "resubscribe": "Resubscribe",
+ "promoCode": "Promo Code",
+ "promoCodeApplied": "Promo Code Applied! Check your inventory",
+ "promoPlaceholder": "Enter Promotion Code"
}
\ No newline at end of file
diff --git a/common/locales/sk/spells.json b/common/locales/sk/spells.json
index 20df18467c..98b1abc876 100644
--- a/common/locales/sk/spells.json
+++ b/common/locales/sk/spells.json
@@ -1,36 +1,36 @@
{
"spellWizardFireballText": "Výbuch ohňa",
- "spellWizardFireballNotes": "Ohne vystrelili vpred a spálili úlohu. Redukuješ červenosť úlohy, príšera s ktorou bojuješ utŕži silnejší zásah a získaš skúsenosti -- viac za modré úlohy.",
+ "spellWizardFireballNotes": "Flames burst from your hands. You gain XP, and you deal extra damage to Bosses! Click on a task to cast. (Based on: INT)",
"spellWizardMPHealText": "Éterická vlna",
- "spellWizardMPHealNotes": "Z tvojich rúk vychádza prúd magickej energie, ktorý dobíja energiu tvojej družine. Jej členom sa obnoví MP.",
+ "spellWizardMPHealNotes": "You sacrifice mana to help your friends. The rest of your party gains MP! (Based on: INT)",
"spellWizardEarthText": "Zemetrasenie",
- "spellWizardEarthNotes": "Zem pod úlohami tvojej družiny praská a trasie sa nesmiernou intenzitou, čo vás spomaľuje a odkrýva pred viacerými útokmi. Tvoja družina dostane bonus k Inteligencii, čo znamená viac skúseností.",
+ "spellWizardEarthNotes": "Your mental power shakes the earth. Your whole party gains a buff to Intelligence! (Based on: Unbuffed INT)",
"spellWizardFrostText": "Mrazivá inovať",
- "spellWizardFrostNotes": "Zovšadiaľ naokolo prýšti ľad. Pohlcuje tvoje úlohy a zmrazuje ich. Série z tvojich denných úloh sa na konci dňa nevynulujú. Nedokončené denné úlohy ti ale ublížia!",
+ "spellWizardFrostNotes": "Ice covers your tasks. None of your streaks will reset to zero tomorrow! (One cast affects all streaks.)",
"spellWarriorSmashText": "Brutálna rana",
- "spellWarriorSmashNotes": "Barbarsky a celou silou vrazíš jednej úlohe. Zníži sa jej červenosť a zasadíš silnejšiu ranu každej príšere s ktorou bojuješ.",
+ "spellWarriorSmashNotes": "You hit a task with all of your might. It gets more blue/less red, and you deal extra damage to Bosses! Click on a task to cast. (Based on: STR)",
"spellWarriorDefensiveStanceText": "Obranný postoj",
- "spellWarriorDefensiveStanceNotes": "Necháš si chvíľku na oddych a zaujmeš obranný postoj, aby si sa pripravil nasledujúci nápor úloh. Znižuje poranenie z denných úloh na konci dňa.",
+ "spellWarriorDefensiveStanceNotes": "You prepare yourself for the onslaught of your tasks. You gain a buff to Constitution! (Based on: Unbuffed CON)",
"spellWarriorValorousPresenceText": "Chrabrý výraz",
- "spellWarriorValorousPresenceNotes": "Tvoja prítomnosť povzbudzuje družinu. Ich novoobjavená odvaha im dodáva nával sily. Členovia družiny získajú bonus do ich sily.",
+ "spellWarriorValorousPresenceNotes": "Your presence emboldens your party. Your whole party gains a buff to Strength! (Based on: Unbuffed STR)",
"spellWarriorIntimidateText": "Zastrašujúci pohľad",
- "spellWarriorIntimidateNotes": "Tvoj uprený pohľad vráža strach do sŕdc nepriateľov tvojej družiny. Družina získa mierny bonus k obrane.",
+ "spellWarriorIntimidateNotes": "Your gaze strikes fear into your enemies. Your whole party gains a buff to Constitution! (Based on: Unbuffed CON)",
"spellRoguePickPocketText": "Vreckárčiť",
- "spellRoguePickPocketNotes": "Tvoje svižné prsty sa prehrabujú vo vreckách úlohy, v ktorých nájdeš peniaze. Dostaneš zvýšený bonus na zlato z úlohy, čím \"tučnejšia\" (modrejšia) je úloha, tým vyšší.",
+ "spellRoguePickPocketNotes": "You rob a nearby task. You gain gold! Click on a task to cast. (Based on: PER)",
"spellRogueBackStabText": "Nôž do chrbta",
- "spellRogueBackStabNotes": "Bez zvuku sa zakradneš za úlohu a vrazíš jej nôž do chrbta. Dáš jej silnejšiu ranu a máš vyššiu šancu na kritický zásah.",
+ "spellRogueBackStabNotes": "You betray a foolish task. You gain gold and XP! Click on a task to cast. (Based on: STR)",
"spellRogueToolsOfTradeText": "Zlodejská výstroj",
- "spellRogueToolsOfTradeNotes": "Požičiaš svoje zlodejské nástroje členom družiny, čo im pomôže \"získať\" viac zlata. Do konca dňa zvyšuje bonus na zlato z úloh a šancu na získanie predmetov.",
+ "spellRogueToolsOfTradeNotes": "You share your talents with friends. Your whole party gains a buff to Perception! (Based on: Unbuffed PER)",
"spellRogueStealthText": "Zakrádanie",
- "spellRogueStealthNotes": "Ponoríš sa do tieňov a cez hlavu si natiahneš kapucňu. Veľadenných úloh ťa túto noc nenájde; čím máš lepší postreh, tým menej.",
+ "spellRogueStealthNotes": "You are too sneaky to spot. Some of your undone Dailies will not cause damage tonight, and their streaks/color will not change. (Cast multiple times to affect more Dailies)",
"spellHealerHealText": "Liečivá žiara",
- "spellHealerHealNotes": "Tvoje telo pokryje svetlo, ktoré vylieči tvoje poranenia. Získaš bonus k svojmu zdraviu.",
+ "spellHealerHealNotes": "Light covers your body, healing your wounds. You regain health! (Based on: CON and INT)",
"spellHealerBrightnessText": "Spaľujúci jas",
- "spellHealerBrightnessNotes": "Kúzliš výbuch svetla, ktorý oslepuje tvoje úlohy. Zníži sa ich červenosť.",
+ "spellHealerBrightnessNotes": "A burst of light dazzles your tasks. They become more blue and less red! (Based on: INT)",
"spellHealerProtectAuraText": "Ochranná aura",
- "spellHealerProtectAuraNotes": "Členov tvojej družiny obklopí magická aura, ktorá ich ochraňuje pred zraneniami. Každý dostane bonus k obrane.",
+ "spellHealerProtectAuraNotes": "You shield your party from damage. Your whole party gains a buff to Constitution! (Based on: Unbuffed CON)",
"spellHealerHealAllText": "Požehnanie",
- "spellHealerHealAllNotes": "Tvoju družinu obklopí upokojujúce svetlo a uzdraví vás z poranení. Každý člen družiny je vyliečený.",
+ "spellHealerHealAllNotes": "A soothing aura surrounds you. Your whole party regains health! (Based on: CON and INT)",
"spellSpecialSnowballAuraText": "Snehová guľa",
"spellSpecialSnowballAuraNotes": "Hoď snehovou guľou po členovi svojej družiny! Čo zlé by sa mohlo stať? Trvá do konca jeho dňa.",
"spellSpecialSaltText": "Soľ",
diff --git a/common/locales/sk/tasks.json b/common/locales/sk/tasks.json
index b92ab86314..38a7d1b3f9 100644
--- a/common/locales/sk/tasks.json
+++ b/common/locales/sk/tasks.json
@@ -14,7 +14,7 @@
"save": "Uložiť",
"addChecklist": "Pridať kontrolný zoznam",
"checklist": "Kontrolný zoznam",
- "checklistText": "Pri denných úlohách čiastočne hotové zoznamy redukujú poškodenie. Napríklad: zoznam so 4 položkami, kde sú 3 hotové, zníži poranenie za nesplnenú dennú úlohu, na 25%. Pri jednorázových úlohách zase odfajknuté zoznamy zvyšujú odmenu: 3 odškrtnuté znamená +3x (celkovo 4X) skúseností, zlata a many.",
+ "checklistText": "Break a task into smaller pieces! Checklists increase the Experience and Gold gained from a To-Do, and reduce the damage caused by a Daily.",
"expandCollapse": "Rozbaliť/zbaliť",
"text": "Text",
"extraNotes": "Poznámky",
@@ -22,7 +22,7 @@
"advancedOptions": "Pokročilé možnosti",
"difficulty": "Obtiažnosť",
"difficultyHelpTitle": "Ako náročná je úloha?",
- "difficultyHelpContent": "Vynásobí hodnotu bodov. Používaj výnimočne, radšej sa spoľahni na náš algoritmy, ktoré organicky upravujú hodnotu. Niektoré úlohy sú ale oveľa cennejšie (Napísať seminárnu prácu vs. Vyčistiť si zuby). Klikni pre viac info.",
+ "difficultyHelpContent": "The harder a task, the more Experience and Gold it awards you when you check it off... but the more it damages you if it is a Daily or Bad Habit!",
"easy": "Ľahké",
"medium": "Stredné",
"hard": "Ťažké",
@@ -44,7 +44,6 @@
"remaining": "Aktívne",
"complete": "Hotové",
"dated": "S dátumom",
- "datedNotSorted": "Dated To-Dos are NOT sorted by date. Sorting will probably be implemented in future.",
"due": "V pláne",
"grey": "Šedé",
"score": "Skóre",
@@ -78,5 +77,6 @@
"streakCoins": "Bonus za sériu!",
"pushTaskToTop": "Presuň úlohu navrch",
"pushTaskToBottom": "Presuň úlohu naspodok",
- "emptyTask": "Enter the task's title first."
+ "emptyTask": "Enter the task's title first.",
+ "dailiesRestingInInn": "You're Resting in the Inn! Your Dailies will NOT hurt you tonight, but they WILL still refresh every day. If you're in a quest, you won't deal damage/collect items until you check out of the Inn, but you can still be injured by a Boss if your Party mates skip their own Dailies."
}
\ No newline at end of file
diff --git a/common/locales/sr/backgrounds.json b/common/locales/sr/backgrounds.json
index c836aadba4..03cd18bacc 100644
--- a/common/locales/sr/backgrounds.json
+++ b/common/locales/sr/backgrounds.json
@@ -23,7 +23,7 @@
"backgroundVolcanoNotes": "Zagrejte se u unutrašnjosti vulkana.",
"backgrounds092014": "Komplet 4: septembar 2014.",
"backgroundThunderstormText": "Oluja",
- "backgroundThunderstormNotes": "Kontrolišite grom i munju!",
+ "backgroundThunderstormNotes": "Budite gospodar groma i munje!",
"backgroundAutumnForestText": "Jesenja šuma",
"backgroundAutumnForestNotes": "Pešačite jesenjom šumom.",
"backgroundHarvestFieldsText": "Plodne njive",
@@ -44,14 +44,14 @@
"backgroundSunsetMeadowNotes": "Divite se zalasku sunca na pašnjaku.",
"backgrounds122014": "Komplet 7: decembar 2014.",
"backgroundIcebergText": "Ledeni breg",
- "backgroundIcebergNotes": "Plovite polako sa ledenim bregom.",
+ "backgroundIcebergNotes": "Plutajte okeanom na ledenom bregu.",
"backgroundTwinklyLightsText": "Novogodišnje svetiljke",
"backgroundTwinklyLightsNotes": "Šetajte između drveća okićenog prazničnim svetiljkama.",
"backgroundSouthPoleText": "Južni pol",
"backgroundSouthPoleNotes": "Posetite hladni Južni pol.",
"backgrounds012015": "Komplet 8: januar 2015.",
"backgroundIceCaveText": "Ledena pećina",
- "backgroundIceCaveNotes": "Spustite se u ledenu pećinu.",
+ "backgroundIceCaveNotes": "Lutajte hodnicima ledene pećine.",
"backgroundFrigidPeakText": "Zaleđeni vrh",
"backgroundFrigidPeakNotes": "Osvojite zaleđeni vrh.",
"backgroundSnowyPinesText": "Zavejani četinari",
@@ -72,9 +72,23 @@
"backgroundRollingHillsNotes": "Krenite u šetnju kroz brdovite predele.",
"backgrounds042015": "Komplet 11: april 2015.",
"backgroundCherryTreesText": "Drvo trešnje",
- "backgroundCherryTreesNotes": "Divite se trešnji u cvatu.",
+ "backgroundCherryTreesNotes": "Divite se trešnjama u cvatu.",
"backgroundFloralMeadowText": "Cvetna poljana",
"backgroundFloralMeadowNotes": "Otiđite na izlet na cvetnoj poljani.",
"backgroundGumdropLandText": "Zemlja gumenih bonbona",
- "backgroundGumdropLandNotes": "Grickajte slatki pejzaž zemlje gumenih bonbona."
+ "backgroundGumdropLandNotes": "Grickajte slatki pejzaž zemlje gumenih bonbona.",
+ "backgrounds052015": "Komplet 12: maj 2015.",
+ "backgroundMarbleTempleText": "Mermerni hram",
+ "backgroundMarbleTempleNotes": "Pozirajte ispred mermernog hrama.",
+ "backgroundMountainLakeText": "Planinsko jezero",
+ "backgroundMountainLakeNotes": "Uživajte u lepoti planinskog jezera.",
+ "backgroundPagodasText": "Pagode",
+ "backgroundPagodasNotes": "Popnite se na vrh pagode.",
+ "backgrounds062015": "SET 13: Released June 2015",
+ "backgroundDriftingRaftText": "Drifting Raft",
+ "backgroundDriftingRaftNotes": "Paddle a Drifting Raft.",
+ "backgroundShimmeryBubblesText": "Shimmery Bubbles",
+ "backgroundShimmeryBubblesNotes": "Float through a sea of Shimmery Bubbles.",
+ "backgroundIslandWaterfallsText": "Island Waterfalls",
+ "backgroundIslandWaterfallsNotes": "Picnic near Island Waterfalls."
}
\ No newline at end of file
diff --git a/common/locales/sr/challenge.json b/common/locales/sr/challenge.json
index fb1db876cb..e01930d2db 100644
--- a/common/locales/sr/challenge.json
+++ b/common/locales/sr/challenge.json
@@ -15,16 +15,16 @@
"toCreate": "da biste napravili izazov.",
"selectWinner": "Odaberite pobednika i završite izazov:",
"deleteOrSelect": "Obrisati ili odabrati pobednika",
- "endChallenge": "Završi izazov",
- "challengeDiscription": "Ovo su zadaci izazova. Korisnicima koji ostvare napredak promeniće se boja i dobiće grafikone na kojima možete pratiti uspeh grupe.",
+ "endChallenge": "Završiti izazov",
+ "challengeDiscription": "These are the Challenge's tasks that will be added to your task dashboard when you join this Challenge. The sample Challenge tasks below will change color and gain graphs to show you the overall progress of the group.",
"hows": "Kako nam ide?",
"filter": "Filter",
"groups": "Grupe",
"all": "Sve",
"noNone": "Nijedna",
- "membership": "Učešće",
- "participating": "Gde sam član",
- "notParticipating": "Gde nisam član",
+ "membership": "Prikazati",
+ "participating": "Gde učestvujem",
+ "notParticipating": "Gde ne učestvujem",
"either": "Oba",
"createChallenge": "Napravi novi izazov",
"discard": "Odbaci",
@@ -33,16 +33,18 @@
"challengeTagPop": "Izazovi treba da se vide na spiskovima tagova i na opisima zadataka. Zato Vam je, pored jasnog naziva u polju „Naziv izazova“, potreban i kratki naziv. Npr. „Skinuti 10 funti za 3 meseca“ mogli biste da skratite u „-10lb“. (Kliknite za detaljniji opis)",
"challengeDescr": "Opis",
"prize": "Nagrada",
- "prizePop": "Ako neko „pobedi“, možete mu dati Dragulje kao nagradu. Maksimalna vrednost nagrade je broj draguljia u Vašem inventaru (+dragulji Vašeg udruženja, ako ste Vi osnivač). Napomena: Vrednost nagrade ne možete kasnije promeniti, niti će Vam dragulji biti vraćeni ako poništite izazov.",
+ "prizePop": "If someone can 'win' your challenge, you can optionally award that winner a Gem prize. Max = #gems you own (+ guild.gems, if you created this challenge's guild). Note: This prize can't be changed later.",
+ "prizePopTavern": "If someone can 'win' your challenge, you can optionally award that winner a Gem prize. Max = #gems you own (+ guild.gems, if you created this challenge's guild). Note: This prize can't be changed later and Tavern challenges will not be refunded if the challenge is cancelled.",
"publicChallenges": "Minimalno 1 dragulj za javne izazove . Pomaže da se spreči spam (zaista pomaže).",
"officialChallenge": "Zvanični HabitRPG izazov",
"by": "Izazivač: ",
- "participants": "<%= membercount %> Učesnika",
+ "participants": "<%= membercount %> učesnika",
"join": "Pridruži se",
"exportChallengeCSV": "Sačuvaj u CSV formatu",
"selectGroup": "Izaberite grupu",
"challengeCreated": "Izazov napravljen",
"sureDelCha": "Jeste li sigurni da želite da obrišete izazov?",
+ "sureDelChaTavern": "Delete challenge, are you sure? Your gems will not be refunded.",
"removeTasks": "Obriši zadatak",
"keepTasks": "Zadrži zadatak",
"closeCha": "Zatvori izazov i...",
diff --git a/common/locales/sr/character.json b/common/locales/sr/character.json
index c952775f6d..1bbed76942 100644
--- a/common/locales/sr/character.json
+++ b/common/locales/sr/character.json
@@ -1,5 +1,5 @@
{
- "statsAch": "Statistika i dostignuća",
+ "statsAch": "Karakteristike i odlikovanja",
"profile": "Profil",
"avatar": "Avatar",
"other": "Ostalo",
@@ -52,9 +52,11 @@
"costume": "Kostim",
"costumeText": "Ako niste zadovoljni izgledom svoje opreme, izaberite „Koristi kostim“ da biste obukli kostim preko borbene opreme.",
"useCostume": "Kostim",
- "gearAchievement": "Osvojili ste odlikovanje „Vrhunska oprema“ jer ste obukli najjaču opremu.",
+ "gearAchievement": "You have earned the \"Ultimate Gear\" Achievement for upgrading to the maximum gear set for a class! You have attained the following complete sets:",
+ "moreGearAchievements": "To attain more Ultimate Gear badges, change classes on your stats page and buy up your new class's gear!",
+ "armoireUnlocked": "You've also unlocked the Enchanted Armoire! Click on the Enchanted Armoire Reward for a random chance at special Equipment! It may also give you random XP or food items.",
"ultimGearName": "Vrhunska oprema",
- "ultimGearText": "Unapredili ste oružje i oklop do maksimalnog nivoa.",
+ "ultimGearText": "Has upgraded to the maximum weapon and armor set for the following classes:",
"level": "Nivo",
"levelUp": "Novi nivo!",
"mana": "Mana",
@@ -70,6 +72,7 @@
"allocatePerPop": "Dodaj poen Opažanju",
"allocateInt": "Poeni dodeljeni Inteligenciji:",
"allocateIntPop": "Dodaj poen Inteligenciji",
+ "noMoreAllocate": "Dostigli ste 100. nivo, i više nećete dobijati poene koje biste dodeljivali svojim osobinama. Možete i dalje da dobijate nivoe, ili da upotrebite Sferu za Reinkarnaciju, koju ćete naći na Pijaci, i da započnete novu avanturu od 1. nivoa.",
"stats": "Karakteristike",
"strength": "Snaga",
"strengthText": "Snaga povećava šansu da zadate kritični udarac, kao i Zlato, Iskustvo i predmete koje od takvih udaraca dobijate. Takođe pomaže u borbi protiv bosova.",
@@ -131,12 +134,13 @@
"invalidTarget": "Nedozvoljena meta.",
"youCast": "Bacili ste <%= spell %>.",
"youCastTarget": "Bacili ste <%= spell %> na <%= target %>.",
- "youCastParty": "Bacili ste <%= spell %> svojoj dužini.",
+ "youCastParty": "Bacili ste <%= spell %> na svoju družinu.",
"critBonus": "Kritični udarac! Bonus:",
"displayNameDescription1": "Pojavljuje se sa Vašim avatarom u porukama koje pošaljete u Krčmi, udruženjima, i družinama. Korisničko ime možete promeniti na",
"displayNameDescription2": "Postavke -> Sajt",
"displayNameDescription3": "u odeljku Registracija.",
- "unequipBattleGear": "Skini borbenu opremu",
- "unequipCostume": "Skini kostim",
- "unequipPetMountBackground": "Skloni ljubimca, životinju koju jašeš, pozadinu"
+ "unequipBattleGear": "Skinuti borbenu opremu",
+ "unequipCostume": "Skinuti kostim",
+ "unequipPetMountBackground": "Ukloniti zver, pozadinu",
+ "animalSkins": "Životinjske kože"
}
\ No newline at end of file
diff --git a/common/locales/sr/communityguidelines.json b/common/locales/sr/communityguidelines.json
index 775896d308..a982669e15 100644
--- a/common/locales/sr/communityguidelines.json
+++ b/common/locales/sr/communityguidelines.json
@@ -173,5 +173,6 @@
"commGuideLink07": "Trello za ilustratore",
"commGuideLink07description": "za pixel art.",
"commGuideLink08": "Trello za misije",
- "commGuideLink08description": "gde možete predati svoje pedloge za nove misije."
+ "commGuideLink08description": "gde možete predati svoje pedloge za nove misije.",
+ "lastUpdated": "Ažurirano"
}
\ No newline at end of file
diff --git a/common/locales/sr/content.json b/common/locales/sr/content.json
index 82f4c7afd3..2381dc523d 100644
--- a/common/locales/sr/content.json
+++ b/common/locales/sr/content.json
@@ -1,6 +1,10 @@
{
"potionText": "Napitak zdravlja",
"potionNotes": "Vraća 15 poena zdravlja (koristi se odmah)",
+ "armoireText": "Enchanted Armoire",
+ "armoireNotesFull": "Open the Armoire to randomly receive special Equipment, Experience, or food! Equipment pieces remaining:",
+ "armoireLastItem": "You've found the last piece of rare Equipment in the Enchanted Armoire.",
+ "armoireNotesEmpty": "The Armoire will have new Equipment every month. Until then, keep clicking for Experience and Food!",
"dropEggWolfText": "Vuk",
"dropEggWolfAdjective": "odani",
"dropEggTigerCubText": "Mladunče tigra",
@@ -46,17 +50,19 @@
"questEggSpiderAdjective": "strašni",
"questEggOwlText": "Sova",
"questEggOwlAdjective": "mudra",
- "questEggPenguinText": "Pinvin",
+ "questEggPenguinText": "Pingvin",
"questEggPenguinAdjective": "vispreni",
"questEggTRexText": "Tiranosaur",
"questEggTRexAdjective": "kratkoruki",
"questEggRockText": "Kamen",
- "questEggRockAdjective": "živo",
- "questEggBunnyText": "Zec",
- "questEggBunnyAdjective": "lagodno",
- "questEggSlimeText": "Marshmallow Slime",
- "questEggSlimeAdjective": "sweet",
- "eggNotes": "Nađite inkubatorni napitak, pospite ga po ovom jajetu, i iz njega će se izleći <%= eggAdjective(locale) %> <%= eggText(locale) %>.",
+ "questEggRockAdjective": "živahni",
+ "questEggBunnyText": "Zeka",
+ "questEggBunnyAdjective": "mekani",
+ "questEggSlimeText": "Beli slez",
+ "questEggSlimeAdjective": "slatki",
+ "questEggSheepText": "Ovca",
+ "questEggSheepAdjective": "vunasta",
+ "eggNotes": "Nađite napitak, pospite ga po ovom jajetu, i iz njega će se izleći <%= eggAdjective(locale) %> <%= eggText(locale) %>.",
"hatchingPotionBase": "Običan",
"hatchingPotionWhite": "Beli",
"hatchingPotionDesert": "Pustinjski",
diff --git a/common/locales/sr/contrib.json b/common/locales/sr/contrib.json
index 04c2b60b08..6d9014d3c4 100644
--- a/common/locales/sr/contrib.json
+++ b/common/locales/sr/contrib.json
@@ -1,15 +1,15 @@
{
"friend": "Prijatelj",
"friendFirst": "Kad Vaš prvi doprinos bude prihvaćen, biće Vam dodeljen Bedž za saradnike HabitRPG-a. U Krčmi će uz Vaše ime pisati da ste saradnik. Kao dodatnu nagradu za svoj trud, dobićete i 3 dragulja.",
- "friendSecond": "Kad vaš drugi droprinos bude prihvaćen, u Prodavnici s nagradama moći ćete da kupite Kristalni Oklop. Kao dodatnu nagradu za svoj trud, dobićete i 3 dragulja.",
+ "friendSecond": "Kad Vaš drugi droprinos bude prihvaćen, u Prodavnici s nagradama moći ćete da kupite Kristalni Oklop. Kao dodatnu nagradu za svoj trud, dobićete i 3 dragulja.",
"elite": "Elita",
- "eliteThird": "Kad vaš treći droprinos bude prihvaćen, u Prodavnici s nagradama moći ćete da kupite Kristalni Šlem. Kao dodatnu nagradu za svoj trud, dobićete i 3 dragulja.",
- "eliteFourth": "Kad vaš četvrti droprinos bude prihvaćen, u Prodavnici s nagradama moći ćete da kupite Kristalni Mač. Kao dodatnu nagradu za svoj trud, dobićete i 4 dragulja.",
+ "eliteThird": "Kad Vaš treći droprinos bude prihvaćen, u Prodavnici s nagradama moći ćete da kupite Kristalni Šlem. Kao dodatnu nagradu za svoj trud, dobićete i 3 dragulja.",
+ "eliteFourth": "Kad Vaš četvrti droprinos bude prihvaćen, u Prodavnici s nagradama moći ćete da kupite Kristalni Mač. Kao dodatnu nagradu za svoj trud, dobićete i 4 dragulja.",
"champion": "Šampion",
- "championFifth": "Kad vaš peti droprinos bude prihvaćen, u Prodavnici s nagradama moći ćete da kupite Kristalni Štit. Kao dodatnu nagradu za svoj trud, dobićete i 4 dragulja.",
- "championSixth": "Kad vaš šesti droprinos bude prihvaćen, dobićete zver Hidru. Dobićete i 4 dragulja.",
+ "championFifth": "Kad Vaš peti droprinos bude prihvaćen, u Prodavnici s nagradama moći ćete da kupite Kristalni Štit. Kao dodatnu nagradu za svoj trud, dobićete i 4 dragulja.",
+ "championSixth": "Kad Vaš šesti droprinos bude prihvaćen, dobićete zver Hidru. Dobićete i 4 dragulja.",
"legendary": "Legenda",
- "legSeventh": "Kad vaš sedmi droprinos bude prihvaćen, dobićete 4 dragulja, postaćete član Udruženja saradnika, i moći ćete da vidite šta se dešava iza scene HabitRPG-a! Za dalje doprinose nećete dobiti nove činove, ali ćete i dalje dobijati dragulje i titule.",
+ "legSeventh": "Kad Vaš sedmi droprinos bude prihvaćen, dobićete 4 dragulja, postaćete član Udruženja saradnika, i moći ćete da vidite šta se dešava iza scene HabitRPG-a! Za dalje doprinose nećete dobiti nove činove, ali ćete i dalje dobijati dragulje i titule.",
"moderator": "Moderator",
"guardian": "Čuvar",
"guardianText": "Moderatori su pažljivo odabrani iz redova sardnika visokog čina, i zato Vas molimo da se ponašate prema njima s poštovanjem i da uvažavate njihove predloge.",
@@ -46,7 +46,7 @@
"hideAds": "Ukloniti reklame",
"gamemaster": "Game Master (osoblje/moderator)",
"backerTier": "Čin sponzora",
- "balance": "Balance",
+ "balance": "Stanje",
"tierPop": "Kliknite na etiketu čina za detalje.",
"playerTiers": "Činovi igrača",
"tier": "Čin",
diff --git a/common/locales/sr/defaulttasks.json b/common/locales/sr/defaulttasks.json
index 72948224f8..8b28996ef5 100644
--- a/common/locales/sr/defaulttasks.json
+++ b/common/locales/sr/defaulttasks.json
@@ -1,12 +1,12 @@
{
- "defaultHabit1Text": "Pozitivna Navika",
- "defaultHabit1Notes": " Primeri Pozitivnih Navika: +Pojedi povrćku +15 minuta produktivnog rada",
- "defaultHabit2Text": "Negativna Navika",
- "defaultHabit2Notes": "Primeri Negativnih Navika: -Pušenje -Odugovlačenje",
- "defaultHabit3Text": "Pozitivna ili Negativna Navika",
- "defaultHabit3Notes": "Primeri Pozitivnih i Negativnih Navika: +/- Išli ste Stepenicama/Liftom ; +/- Popili ste Vodu/Sodu",
+ "defaultHabit1Text": "Dobra navika",
+ "defaultHabit1Notes": "Primeri dobrih navika: +Jedi povrće +15 minuta produktivnog rada",
+ "defaultHabit2Text": "Loša navika",
+ "defaultHabit2Notes": "Primeri Loših navika: -Pušenje -Odugovlačenje",
+ "defaultHabit3Text": "Dobra ili loša navika",
+ "defaultHabit3Notes": "Primeri Dobrih ili loših navika: +/- Popeti se stepenicama/Voziti se liftom ; +/- Piti vodu/kolu",
"defaultDaily1Text": "1h rada na ličnom projektu",
- "defaultDaily1Notes": "Svi zadaci su žuti kad ih našravite. To znači da će Vam naneti umerenu štetu kad ih propustite i da ćete dobiti umerene nagrade kad ih završite.",
+ "defaultDaily1Notes": "Svi zadaci su žuti kad ih napravite. To znači da će Vam naneti umerenu štetu kad ih propustite i da ćete dobiti umerene nagrade kad ih završite.",
"defaultDaily2Text": "Pospremiti stan",
"defaultDaily2Notes": "Svakodnevni zadaci koje redovno obavljate postaće najpre zeleni, pa onda plavi. Što redovnije obavljate zadatke, manju ćete štetu trpeti kad ih propustite i manje ćete nagrade dobijati kad ih obavite.",
"defaultDaily3Text": "45 minuta čitanja",
diff --git a/common/locales/sr/front.json b/common/locales/sr/front.json
index 9c17364503..e30632f4a2 100644
--- a/common/locales/sr/front.json
+++ b/common/locales/sr/front.json
@@ -1,19 +1,99 @@
{
- "titleFront": "HabitRPG | Igrajte svoj život",
- "tagline": "Besplatna igra za razvijanje navika koja pretvara Vaš život u igru.",
- "landingp1": "Nedostatak mnogih aplikacija za povećanje produktivnosti je to što Vas ni na koji način ne podstiču da ih redovno koristite. HabitRPG rešava ovaj problem tako što razvijanje navika pretvara u zabavu! Nagradama za uspeh i kaznama za promašaje, HabitRPG pruža Vam spoljnu motivaciju da svakodnevno izvršavate svoje obaveze.",
- "landingp2header": "Neposredno zadovoljenje",
- "landingp2": "Svaki put kad ostvarite napredak u stvaranju pozitivne navike, ispunite svakodnevni zadatak, ili završite zaostali jednokratni zadatak, HabitRPG će Vas nagraditi iskustvom i zlatom. Što više iskustva skupite, imaćete veći nivo, vaš lik će biti snažniji, i otključaćete nove funkcije, kao što su klase i zveri. Zlato možete utrošiti na opremu za Vašeg lika ili na nagrade koje ste sami osmislili da biste sebe motivisali. Kad dobijate nagrade i za najmanji uspeh, manje ćete biti skloni odugovalačenju.",
- "landingp3header": "Posledice",
- "landingp3": "Kad pokleknete pred lošom navikom, ili ne uradite svakodnevni zadatak, Vaš lik gubi zdravlje. Ako zdravlje padne na 0, vaš lik će umreti i izgubiti deo svojih dostignuća. Neposrednim posledicama HabitRPG Vam pomaže da ostavite loše navike pre nego što počnu da Vam prave probleme u stvarnom životu.",
- "landingp4header": "Oslonac",
- "landingp4": "Aktivna zajednica HabitRPG-a pruža Vam neophodni podsticaj da završite svoje zadatke. HabitRPG omogućava Vam da s prijateljima napravite privremenu družinu i da pomažete jedni drugima. Sustem udruženja pomoži že Vam da nađete ljude sa sličnim interesovanjima, s kojima možete razgovarati o svojim ciljevima i razmenjivati savete o rešavanju problema. Zajednica HabitRPG-a pružiće Vam potrebni oslonac i podršku na putu do uspeha.",
+ "FAQ": "Često postavljana pitanja",
+ "accept1Terms": "Klikom na ovo dugme prihvatam",
+ "accept2Terms": "i",
+ "alexandraQuote": "Nisam mogla da NE spomenem HabitRPG kad sam držala govor u Madridu. Za sve honorarce kojima je potreban šef, ovo je alat od neprocenjive vrednosti.",
+ "althaireQuote": "Misije mi pružaju motivaciju da redovno ispunjavam sve svoje obaveze. Najveći podsticaj mi je želja da ne izneverim svoj tim.",
+ "andeeliaoQuote": "Neverovatan proizvod! Registrovala sam se pre nekoliko dana, i već sam počela bolje da organizujem svoj raspored.",
+ "autumnesquirrelQuote": "Brže radim na poslu, brže obavljam kućne poslove, i ne zaboravljam da platim račune.",
+ "businessSample1": "Proveriti jednu stranicu inventara",
+ "businessSample2": "20 minuta organizovanja dokumenata",
+ "businessSample3": "Srediti mejlove",
+ "businessSample4": "Spremiti jedan dokument za klijenta",
+ "businessSample5": "Pozvati klijente/Odložiti pozive",
+ "businessText": "Koristite HabitRPG na poslu",
+ "choreSample1": "Ostaviti prljav veš u korpu",
+ "choreSample2": "20 minuta obavljanja kućnih poslova",
+ "choreSample3": "Oprati posuđe",
+ "choreSample4": "Dovesti sobu u red",
+ "choreSample5": "Oprati i osušiti odeću",
+ "chores": "Kućni poslovi",
+ "communityBug": "Prijaviti grešku (bag)",
+ "communityExtensions": "Dodaci i ekstenzije",
+ "communityFacebook": "Facebook",
+ "communityFeature": "Zatražiti novu funkciju",
+ "communityForum": "Forum",
+ "communityKickstarter": "Kickstarter",
+ "communityReddit": "Reddit",
+ "companyAbout": "Kako radi",
+ "companyBlog": "Blog",
+ "companyDonate": "Donacije",
+ "companyExtensions": "Ekstenzije",
+ "companyPrivacy": "Privatnost",
+ "companyTerms": "Uslovi",
+ "companyVideos": "Video",
+ "contribUse": "Saradnici na projektu koriste",
+ "dragonsilverQuote": "Isprobala sam bezbroj sistema za planiranje... HRPG je jedini koji mi pomaže da obavim poslove, umesto da ih samo stavim na spisak.",
+ "dreimQuote": "Otkrio sam HabirRPG prošlog leta, nakon što sam završio godinu s pola nepoloženih ispita. Koristio sam svakodnevne zadatke da razvijem disciplinu, i pre mesec dana sam položio sve ispite sa veoma dobrim ocenama.",
+ "elmiQuote": "Svakog jutra, kad se probudim, jedva čekam da zaradim još zlata!",
+ "email": "E-mail adresa",
+ "emailNewPass": "Poslati novu lozinku e-poštom",
+ "evagantzQuote": "Ovo je bio prvi put da me je zubar pohvalio zato što redovno čistim zube koncem. Hvala Habitrpg!",
+ "examplesHeading": "Igrači koriste HabitRPG da organizuju...",
+ "featureAchievementByline": "Uradili ste nešto neverovatno dobro? Dobićete odlikovanje, da možete svima to da pokažete.",
+ "featureAchievementHeading": "Odlikovanja",
+ "featureEquipByline": "Kupujte opremu iz ograničenih serija, napitke, i drugu virtuelnu robu na našoj Pijaci!",
+ "featureEquipHeading": "Oprema i dodaci",
+ "featurePetByline": "Jaja i predmete dobijate nasumično kad obavite zadatak. Što ste produktivniji, više ćete jaja i životinja sakupiti.",
+ "featurePetHeading": "Životinje",
+ "featureSocialByline": "Udružite se sa ljudima sličnih interesovanja. Napravite Izazove i takmičite se međusobno.",
+ "featureSocialHeading": "Društvena igra",
+ "featuredIn": "O HabitRPGu pisali su",
+ "featuresHeading": "Nudimo i...",
+ "footerCommunity": "Zajednica",
+ "footerCompany": "Kompanija",
+ "footerMobile": "Aplikacije za mobilne telefone",
+ "footerSocial": "Zajednica",
+ "forgotPass": "Zaboravljena lozinka",
+ "frabjabulousQuote": "Yahvaljuju'i HabitRPG-u, dobio sam strava posao s visokom platom... i što još neverovatnije, svakog dana čistim zube koncem.",
+ "free": "Igrajte besplatno",
+ "gamifyButton": "Igrifikujte svoj život!",
+ "goalSample1": "Vežbati klavir 1 sat",
+ "goalSample2": "Raditi na članku",
+ "goalSample3": "Raditi na blogu",
+ "goalSample4": "Lekcija japanskog na Duolngo",
+ "goalSample5": "Pročitati koristan članak",
+ "goals": "Ciljevi",
+ "health": "Zdravlje",
+ "healthSample1": "Piti vodu/kolu",
+ "healthSample2": "Žvakati žvaku/pušiti",
+ "healthSample3": "Ići stepenicama/liftom",
+ "healthSample4": "Jesti zdravu hranu/brzu hranu",
+ "healthSample5": "Vežbati 1 sat",
+ "history": "Istorija",
+ "infhQuote": "HabitRPG mi je mnogo pomogao da se organizujem na fakultetu.",
+ "invalidEmail": "Morate ukucati važeću adresu da biste zatražili novu lozinku.",
+ "irishfeet123Quote": "I've had horrible habits with clearing my place completely after meals and leaving cups all over the place. HabitRPG has cured that!",
+ "joinOthers": "Zabavljajte se zajedno sa još 200.000 ljudi dok ostvarujete svoje ciljeve!",
+ "kazuiQuote": "Pre HabitRPG-a, tapkala sam u mestu s diplomskim radom. Muke mi je zadavala i moja nedisciplinovanost u obavljanju kućnih poslova, učenju vokabulara, proučavanju goa, itd. Stavila sam te poslove na spisak u obliku kratkih zadataka, i shvatila sam da mi je upravo to bilo potrebno da bih dala sebi podsticaj da ih redovno obavljam.",
+ "landingadminlink": "administrativnim paketima",
"landingend": "Još uvek niste uvereni?",
"landingend2": "Pročitajte detaljniji spisak",
- "landingfeatureslink": "onoga što nudimo",
"landingend3": ". Želite da prilagodite HabitRPG svojim potrebama? Čitajte o našim",
- "landingadminlink": "administrativnim paketima",
"landingend4": ", prilagođenim za porodice, nastavnike, grupe za podršku, i preduzeća.",
+ "landingfeatureslink": "onoga što nudimo",
+ "landingp1": "Nedostatak mnogih aplikacija za povećanje produktivnosti je to što Vas ni na koji način ne podstiču da ih redovno koristite. HabitRPG rešava ovaj problem tako što razvijanje navika pretvara u zabavu! Nagradama za uspeh i kaznama za promašaje, HabitRPG pruža Vam spoljnu motivaciju da svakodnevno izvršavate svoje obaveze.",
+ "landingp2": "Svaki put kad ostvarite napredak u stvaranju pozitivne navike, ispunite svakodnevni zadatak, ili završite zaostali jednokratni zadatak, HabitRPG će Vas nagraditi iskustvom i zlatom. Što više iskustva skupite, imaćete veći nivo, vaš lik će biti snažniji, i otključaćete nove funkcije, kao što su klase i zveri. Zlato možete utrošiti na opremu za Vašeg lika ili na nagrade koje ste sami osmislili da biste sebe motivisali. Kad dobijate nagrade i za najmanji uspeh, manje ćete biti skloni odugovalačenju.",
+ "landingp2header": "Neposredno zadovoljenje",
+ "landingp3": "Kad pokleknete pred lošom navikom, ili ne uradite svakodnevni zadatak, Vaš lik gubi zdravlje. Ako zdravlje padne na 0, vaš lik će umreti i izgubiti deo svojih dostignuća. Neposrednim posledicama HabitRPG Vam pomaže da ostavite loše navike pre nego što počnu da Vam prave probleme u stvarnom životu.",
+ "landingp3header": "Posledice",
+ "landingp4": "Aktivna zajednica HabitRPG-a pruža Vam neophodni podsticaj da završite svoje zadatke. HabitRPG omogućava Vam da s prijateljima napravite privremenu družinu i da pomažete jedni drugima. Sustem udruženja pomoži že Vam da nađete ljude sa sličnim interesovanjima, s kojima možete razgovarati o svojim ciljevima i razmenjivati savete o rešavanju problema. Zajednica HabitRPG-a pružiće Vam potrebni oslonac i podršku na putu do uspeha.",
+ "landingp4header": "Oslonac",
+ "leadText": "HabitRPG je besplatna aplikacija sticanje dobrih novika i povećanje produktivnosti, koja pretvara izvršavanje obaveza u igru. Motivacijom u vidu virtuelnih nagrada i kazni, i podrškom drugih igrača na razvijenoj društvenoj mreži, HabitRPG će Vam pomoći da ostvarite svoje ciljeve, i da postanete zdraviji, disciplinovaniji, i srećniji.",
+ "login": "Prijava",
+ "loginAndReg": "Prijava / Registracija",
+ "loginFacebookAlt": "Prijava / Registracija preko Facebook-a",
+ "logout": "Odjava",
"marketing1Header": "Igrom do boljih navika",
"marketing1Lead1": "HabitRPG je video igra koja Vam pomaže da steknete bolje navike u stvarnom životu tako što organizuje vaše svakodnevne aktivnosti u stilu igre, a Vaše obaveze pretvara u protivnike koje treba poraziti u borbi. Što se bolje nosite sa svojim obavezama, brže ćete napredovati u igri. Ako postanete nemarni u stvarnom životu, Vaš lik u igri trpeće posledice.",
"marketing1Lead2": "Nabavite opremu. Vaš avatar napreduje kad izvršavate svoje obaveze. Pokažite prijateljima kakvu opremu imate",
@@ -26,71 +106,77 @@
"marketing2Lead2Title": "Bosovi",
"marketing2Lead3": "Izazovi su okruženje u kom možete da se takmičite s prijateljima ili strancima. Onaj ko ostvari najveći uspeh u izazovu dobija posebne nagrade.",
"marketing3Header": "Aplikacije",
- "marketing3Lead1Title": "iPhone i Android",
"marketing3Lead1": "Sa aplikacijama za iPhone i Android možete da koristite HabitRPG dok ste u pokretu. Shvatamo da ne možete u svakom trenutku da se prijavite na sajt da biste kliknuli na par dugmadi.",
"marketing3Lead2": "Nezvanični alati za HabitRPG povezuju igru s različitim elementima Vašeg života. Naš API omogućava jednostavnu integraciju aplikacijama poput ekstentije za Chrome, koja Vam dodeljuje negativne poene kad surfujete neproduktivnim sajtovima, i pozitivne poene za produktivne sajtove. Više detalja naći ćete ovde",
"marketing4Header": "Upotreba u organizacijama",
- "marketing4Lead1Title": "Igrifikacija u obrazovanju",
"marketing4Lead1": "Obrazovanje je najbolja oblast za primenu igrifikacije. Svi vidimo koliko su učenicima bitni njihovi telefoni i igrice – iskoristite to! Neka Vaši učenici odmere snage u prijateljskom nadmetanju. Nagradite dobro ponašanje retkim nagradama, i posmatrajte kako njihove ocene rastu.",
- "marketing4Lead2Title": "Igrifikacija za zdrav način života",
+ "marketing4Lead1Title": "Igrifikacija u obrazovanju",
"marketing4Lead2": "Troškovi zdravstva su veliki, i nešto mora da se promeni. Postoje stotine programa koji imaju za cilj smanjenje troškova i poboljšanje zdravlja. Mi verujemo da HabitRPG može u bitnoj meri da doprinese stvaranju zdravijih životnih navika.",
- "marketing4Lead3Title": "Igrifikacija svega",
+ "marketing4Lead2Title": "Igrifikacija za zdrav način života",
"marketing4Lead3-1": "Želite li da igrifikujete svoj život?",
"marketing4Lead3-2": "Zainteresovani ste za rad s ljudima u oblastima obrazovanja, zdravlja, i drugima?",
"marketing4Lead3-3": "Hoćete li da saznate više?",
- "playButton": "Igrajte HabitRPG",
- "username": "Korisničko ime",
- "password": "Lozinka",
- "useUUID": "UUID / API Token (za korisnike Facebooka-a)",
- "passMan": "Ako koristite menadžer za lozinke (kao npr. 1Password) i ne možete da se prijavite, ukucajte ručno korisničko ime i lozinku.",
- "forgotPass": "Zaboravljena lozinka",
- "emailNewPass": "Poslati novu lozinku e-poštom",
- "invalidEmail": "Morate ukucati važeću adresu da biste zatraćili novu lozinku.",
- "email": "E-mail adresa",
- "passConfirm": "Potvrdite lozinku",
- "accept1Terms": "Klikom na ovo dugme prihvatam",
- "terms": "Uslove korišćenja",
- "accept2Terms": "i",
- "privacy": "Politiku zaštite ličnih podataka",
- "home": "Glavna",
- "learnMore": "Saznajte više",
- "contact": "Kontakt",
- "history": "Istorija",
- "anonymous": "Anonimnost",
- "tasks": "Zadaci",
- "loginAndReg": "Prijava / Registracija",
- "loginFacebookAlt": "Prijava / Registracija preko Facebook-a",
- "login": "Prijava",
- "register": "Registracija",
- "options": "Podešavanja",
- "logout": "Odjava",
- "sync": "Sinhronizacija",
- "FAQ": "Često postavljana pitanja",
- "tutorials": "Obuka",
- "psst": "Psst",
- "footerMobile": "Aplikacije za mobilne telefone",
- "mobileIOS": "iOS",
+ "marketing4Lead3Title": "Igrifikacija svega",
"mobileAndroid": "Android",
- "footerCompany": "Kompanija",
- "companyDonate": "Donacije",
- "companyAbout": "Kako radi",
- "companyVideos": "Video",
- "companyBlog": "Blog",
- "companyExtensions": "Ekstenzije",
- "companyPrivacy": "Privatnost",
- "companyTerms": "Uslovi",
- "footerCommunity": "Zajednica",
- "communityBug": "Prijaviti grešku (bag)",
- "communityFeature": "Zatražiti novu funkciju",
- "communityExtensions": "Dodaci i ekstenzije",
- "communityForum": "Forum",
- "communityKickstarter": "Kickstarter",
- "communityFacebook": "Facebook",
- "communityReddit": "Reddit",
- "footerSocial": "Zajednica",
- "socialTitle": "HabitRPG Igrajte svoj život",
- "watchVideos": "Video prezentacija",
+ "mobileIOS": "iOS",
+ "motivate": "Motivacija za Vas i Vaš tim!",
+ "motivate1": "Motivacija za uspeh.",
+ "motivate2": "Organizacija. Motivacija. Zlato.",
+ "passConfirm": "Potvrdite lozinku",
+ "passMan": "Ako koristite menadžer za lozinke (kao npr. 1Password) i ne možete da se prijavite, ukucajte ručno korisničko ime i lozinku.",
+ "password": "Lozinka",
+ "playButton": "Igrajte HabitRPG",
+ "playButtonFull": "Igrajte HabitRPG",
"presskit": "Za novinare",
+ "presskitDownload": "Preuzimanje svih slika:",
"presskitText": "Hvala što posvećujete vreme HabitRPG-u! Ove slike predviđene su za članke o HabitRPG-u. Za više informacija obratite se Sijeni Lezli, leslie@habitrpg.com.",
- "presskitDownload": "Preuzimanje svih slika:"
+ "privacy": "Politiku zaštite ličnih podataka",
+ "psst": "Psst",
+ "punishByline": "Neposredne negativne posledice podstaći će Vas da se otarasite loših navika.",
+ "punishHeading1": "Ako ne uradite zadatak...",
+ "punishHeading2": "Gubite zdravlje!",
+ "questByline1": "Kad igrate HabitRPG s prijateljima, i njihov uspeh zavisi od Vaše odgovornosti.",
+ "questByline2": "Napravite izazove i radite zajedno na postizanju ciljeva!",
+ "questHeading1": "Udružite se s prijateljima protiv čudovišta!",
+ "questHeading2": "Ako iko zanemari svoje obaveze, ceo tim trpi posledice.",
+ "register": "Registracija",
+ "rewardByline1": "Koristite zlato da kupite vituelne i prave nagrade.",
+ "rewardByline2": "Neposredne nagrade za bolju motivaciju.",
+ "rewardHeading": "Zaradite zlato svaki puta kad uradite zadatak!",
+ "sampleDailies": "Primeri svakodnevnih zadataka",
+ "sampleHabits": "Primeri navika",
+ "sampleToDo": "Primeri jednokratnih zadataka",
+ "school": "Škola",
+ "schoolSample1": "Uraditi 1 zadatak",
+ "schoolSample2": "Učiti 1 sat",
+ "schoolSample3": "Učiti s društvom",
+ "schoolSample4": "Napisati beleške za 1 poglavlje",
+ "schoolSample5": "Pročitati 1 poglavlje",
+ "sixteenBitFilQuote": "Završavam svoje obaveze brže nego ikad pre. Jedva čekam da dobijem sledeći nivo!",
+ "skysailorQuote": "Zahvaljujući svojoj družini i misijama ostajem posvećen igri, koja me podstiče da radim i da menam svoj život na bolje.",
+ "socialTitle": "HabitRPG Igrajte svoj život",
+ "supermouse35Quote": "Redovno vežbam, i već mesecima nisam zaboravio da uzmem lekove! Hvala, Habit. :D",
+ "sync": "Sinhronizacija",
+ "tasks": "Zadaci",
+ "teamSample1": "Napraviti planove za sastanak u utorak",
+ "teamSample2": "Razgovarati o marketingu",
+ "teamSample3": "Analizirati nedeljni izveštaj o efikasnosti",
+ "teams": "Timovi",
+ "terms": "Uslove korišćenja",
+ "testimonialHeading": "Šta kažu korisnici...",
+ "tutorials": "Obuka",
+ "unlockByline1": "Ostvarite svoje ciljeve i dobijte nivo.",
+ "unlockByline2": "Otključajte nove funkcije, poput životinja, nasumičnih nagrada, i magija.",
+ "unlockHeadline": "Produktivnošću otključavate nove sadržaje!",
+ "useUUID": "UUID / API Token (za korisnike Facebooka-a)",
+ "username": "Korisničko ime",
+ "watchVideos": "Video prezentacija",
+ "work": "Posao",
+ "zelahQuote": "Pomisao da ću dobiti poene ako na vreme završim dan, ili izgubiti zdravlje ako ostanem budan do u kasne sate, pomaže mi da na vreme odem na spavanje.",
+ "reportAccountProblems": "Report Account Problems",
+ "reportCommunityIssues": "Report Community Issues",
+ "generalQuestionsSite": "General Questions about the Site",
+ "businessInquiries": "Business Inquiries",
+ "merchandiseInquiries": "Merchandise Inquiries",
+ "marketingInquiries": "Marketing/Social Media Inquiries"
}
\ No newline at end of file
diff --git a/common/locales/sr/gear.json b/common/locales/sr/gear.json
index 899cfa0358..6cc48f5b87 100644
--- a/common/locales/sr/gear.json
+++ b/common/locales/sr/gear.json
@@ -19,11 +19,11 @@
"weaponRogue0Text": "Bodež",
"weaponRogue0Notes": "Odmetnikovo osnovno oružje. Ne daje nikakav bonus.",
"weaponRogue1Text": "Kratki mač",
- "weaponRogue1Notes": "Lak, može se sakriti ispod odeće. Povećava Snagu za <%= str %>.",
+ "weaponRogue1Notes": "Lagan je, i lako ga je sakriti ispod odeće. Povećava Snagu za <%= str %>.",
"weaponRogue2Text": "Simitar",
- "weaponRogue2Notes": "Zakrivljeni mač, pogodan za nanošenje smrtonosnog udarca. Povećava Snagu za <%= str %>.",
+ "weaponRogue2Notes": "Zakrivljeni mač, pogodan za nanošenje smrtonosnih udaraca. Povećava Snagu za <%= str %>.",
"weaponRogue3Text": "Kukri",
- "weaponRogue3Notes": "Tradicionalni nepalski nož. Može da se koristi kao oruđe ili kao oružje. Povećava Snagu za <%= str %>.",
+ "weaponRogue3Notes": "Tradicionalni nepalski nož. Može da se koristi kao oruđe za rad ili kao oružje. Povećava Snagu za <%= str %>.",
"weaponRogue4Text": "Nunčake",
"weaponRogue4Notes": "Teške šipke povezane kratkim lancem. Povećava Snagu za <%= str %>.",
"weaponRogue5Text": "Nindžato",
@@ -55,27 +55,27 @@
"weaponHealer4Text": "Lekarski štap",
"weaponHealer4Notes": "Istovremeno služi kao simbol profesije i kao oruđe za lečenje. Povećava Inteligenciju za <%= int %>.",
"weaponHealer5Text": "Kraljevsko žezlo",
- "weaponHealer5Notes": "Dostojno da bude držano u ruci monarha. Povećava Inteligenciju za <%= int %>.",
+ "weaponHealer5Notes": "Dostojno da krasi ruku monarha. Povećava Inteligenciju za <%= int %>.",
"weaponHealer6Text": "Zlatno žezlo",
"weaponHealer6Notes": "Ublažava bolove svima koji ga ugledaju. Povećava Inteligenciju za <%= int %>.",
- "weaponSpecial0Text": "Mač tam",
+ "weaponSpecial0Text": "Mač tame",
"weaponSpecial0Notes": "Hrani se protivnikovom životnom snagom kako bi pojačao svoje izopačene udarce. Povećava Snagu za <%= str %>.",
"weaponSpecial1Text": "Kristalni mač",
- "weaponSpecial1Notes": "Njegov sjaj i izrada dokaz su da pripada heroju. Povećava sve osobine za <%= attrs %>.",
+ "weaponSpecial1Notes": "Mač ovakog sjaja i izrade može da pripada samo pravom junaku. Povećava sve osobine za <%= attrs %>.",
"weaponSpecial2Text": "Zmajevo koplje Stivena Vebera",
"weaponSpecial2Notes": "Moć zmaja ispunjava ovo koplje. Povećava Snagu i Opažanje za <%= attrs %>.",
"weaponSpecial3Text": "Mastejnova jutarnja zvezda",
"weaponSpecial3Notes": "Susreti, zveri, problemi: rešeno jednim udarcem! Povećava Snagu, Inteligenciju i Vitalnost za <%= attrs %>.",
"weaponSpecialCriticalText": "Kritični malj istrebljivača bagova",
- "weaponSpecialCriticalNotes": "Ovaj junak je na Github-u porazio opasnog protivnika, pred kojim su mnogi pre njega poklekli. Ovaj malj, napravljen od kostiju protivnika, zadaje moćne kritične udarce. Povećava Snagu i Opažanje za <%= attrs %>.",
- "weaponSpecialYetiText": "Koplja lovca na jetije",
- "weaponSpecialYetiNotes": "Ovo koplje daje svom vlasniku vlast nad jetijima. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Zima 2013.-2014.",
+ "weaponSpecialCriticalNotes": "Ovaj junak je na Github-u savladao opasnog protivnika, pred kojim su mnogi pre njega poklekli. Ovaj malj, napravljen od kostiju poraženog Baga, zadaje moćne kritične udarce. Povećava Snagu i Opažanje za <%= attrs %>.",
+ "weaponSpecialYetiText": "Koplje lovca na jetije",
+ "weaponSpecialYetiNotes": "Ovo koplje daje svom vlasniku vlast nad jetijima. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Zima 2013/14.",
"weaponSpecialSkiText": "Skijaška motka",
- "weaponSpecialSkiNotes": "Oružje koje može da uništo horde neprijatelja. Takođe pomaže pri skijanju. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Zima 2013.-2014.",
+ "weaponSpecialSkiNotes": "Oružje koje može da uništi horde neprijatelja. Takođe pomaže pri skijanju. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Zima 2013/14.",
"weaponSpecialCandycaneText": "Šećerna motka",
- "weaponSpecialCandycaneNotes": "Motka moćnog čarobnjaka. I moćnog ukusa! Dvoručno oružje. Povećava Inteligenciju za <%= int %> i Opažanje za <%= per %>. Oprema iz ograničene serije Zima 2013.-2014.",
+ "weaponSpecialCandycaneNotes": "Motka moćnog čarobnjaka. I moćnog ukusa! Dvoručno oružje. Povećava Inteligenciju za <%= int %> i Opažanje za <%= per %>. Oprema iz ograničene serije Zima 2013/14.",
"weaponSpecialSnowflakeText": "Snežni štapić",
- "weaponSpecialSnowflakeNotes": "Iz ovog štapića isijava neograničena moć lečenja. Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Zima 2013.-2014.",
+ "weaponSpecialSnowflakeNotes": "Iz ovog štapića isijava neograničena moć lečenja. Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Zima 2013/14.",
"weaponSpecialSpringRogueText": "Kukaste kandže",
"weaponSpecialSpringRogueNotes": "Odlične su za penjajnje na visoke zgrade, kao i za uništavanje tepiha. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Proleće 2014.",
"weaponSpecialSpringWarriorText": "Šargarepa-mač",
@@ -85,11 +85,11 @@
"weaponSpecialSpringHealerText": "Ljupka kost",
"weaponSpecialSpringHealerNotes": "Reks, HVATAJ! Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Proleće 2014.",
"weaponSpecialSummerRogueText": "Gusarska kratka sablja",
- "weaponSpecialSummerRogueNotes": "Da oterate Svakodnevne zadatke na plivanje s ajkulama. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Leto 2014.",
+ "weaponSpecialSummerRogueNotes": "Neka Svakodnevni zadaci plivaju s ajkulama. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Leto 2014.",
"weaponSpecialSummerWarriorText": "Moreplovčev mač",
- "weaponSpecialSummerWarriorNotes": "Nijedan zadatak nema hrabrosti da se uhvati u koštac sa ovim strašnim sečivom. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Leto 2014.",
+ "weaponSpecialSummerWarriorNotes": "Nijedan zadatak nema hrabrosti da se uhvati u koštac s ovim strašnim sečivom. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Leto 2014.",
"weaponSpecialSummerMageText": "Hvatač algi",
- "weaponSpecialSummerMageNotes": "Ovaj trozubac efikasno probada morsko rastinje i omoguva efikasno skupljanje morskih algi. Povećava Inteligenciju za <%= int %> i Opažanje za <%= per %>. Oprema iz ograničene serije Leto 2014.",
+ "weaponSpecialSummerMageNotes": "Ovaj trozubac efikasno probada morsko rastinje i omogućava brzo skupljanje morskih algi. Povećava Inteligenciju za <%= int %> i Opažanje za <%= per %>. Oprema iz ograničene serije Leto 2014.",
"weaponSpecialSummerHealerText": "Štapić plitkih voda",
"weaponSpecialSummerHealerNotes": "Ovaj štapić od berila i korala privlači pažnju riba. Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Leto 2014.",
"weaponSpecialFallRogueText": "Srebrni kolac",
@@ -101,38 +101,40 @@
"weaponSpecialFallHealerText": "Skarabejev štapić",
"weaponSpecialFallHealerNotes": "Skarabej na ovom štapiću štiti i leči onog ko njime rukuje. Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Jesen 2014.",
"weaponSpecialWinter2015RogueText": "Ledenica",
- "weaponSpecialWinter2015RogueNotes": "Stvarno, sigurno i van svake sumnje ste ovaj predmet upravo podigli sa zemlje. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Zima 2014.-2015.",
+ "weaponSpecialWinter2015RogueNotes": "Stvarno, sigurno i van svake sumnje ste ovaj predmet upravo podigli sa zemlje. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Zima 2014/15.",
"weaponSpecialWinter2015WarriorText": "Želatinasti mač",
- "weaponSpecialWinter2015WarriorNotes": "Ovaj ukusni mač verovatno privlači pažnju čudovišta... ali Vi ste spremni da im se suprotrstavite! Povećava Snagu za <%= str %>. Oprema iz ograničene serije Zima 2014.-2015.",
+ "weaponSpecialWinter2015WarriorNotes": "Ovaj ukusni mač verovatno privlači pažnju čudovišta... ali Vi ste spremni da im se suprotrstavite! Povećava Snagu za <%= str %>. Oprema iz ograničene serije Zima 2014/15.",
"weaponSpecialWinter2015MageText": "Motka polarne svetlosti",
- "weaponSpecialWinter2015MageNotes": "Svetlost iz ove kristalne motke ispunjava srca ljudi oko Vas radošću. Povećava Inteligenciju za <%= int %> i Opažanje za <%= per %>. Oprema iz ograničene serije Zima 2014.-2015.",
+ "weaponSpecialWinter2015MageNotes": "Svetlost iz ove kristalne motke ispunjava srca ljudi oko Vas radošću. Povećava Inteligenciju za <%= int %> i Opažanje za <%= per %>. Oprema iz ograničene serije Zima 2014/15.",
"weaponSpecialWinter2015HealerText": "Umirujuće žezlo",
- "weaponSpecialWinter2015HealerNotes": "Ovo žezlo opušta ukočene mišiće i ublažava stres. Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Zima 2014.-2015.",
- "weaponSpecialSpring2015RogueText": "Ekslodirajući skvik",
- "weaponSpecialSpring2015RogueNotes": "Ne dozvoli da te zvuk oko tebe prevari - ovi eksplozivi pakuju udarce. Povećava snagu za <%= str %>. Ograničena serija 2015 Prolećna Oprema.",
+ "weaponSpecialWinter2015HealerNotes": "Ovo žezlo opušta ukočene mišiće i ublažava stres. Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Zima 2014/15.",
+ "weaponSpecialSpring2015RogueText": "Eksplozivni pisak",
+ "weaponSpecialSpring2015RogueNotes": "Ne dozvolite da Vas zvuk zavara - ovo je veoma moćan eksploziv. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Proleće 2015.",
"weaponSpecialSpring2015WarriorText": "Koštana batina",
- "weaponSpecialSpring2015WarriorNotes": "To jeste prava koštana batina za prave žestoke psiće i definitivno nije igračka za žvakanje koju ti je je Sezonska Čarobnica dala, jer ko je dobar psić? Koooooo je to dobar psić?? To si ti!!! Ti si dobar psić!!! Povećava Snagu za <%= str %>. Ograničena serija 2015, Prolećna Oprema.",
- "weaponSpecialSpring2015MageText": "Mađionačarov čarobni štapić",
- "weaponSpecialSpring2015MageNotes": "Prizovi sebi šargarepu sa ovim elegantnim štapićem. Povećava Inteligenciju za <%= int %> i Opažanje za <%= per %>. Ograničena serija 2015, Prolećna Oprema.",
- "weaponSpecialSpring2015HealerText": "Mačija Zvečka",
- "weaponSpecialSpring2015HealerNotes": "Kada mlataraš s njom, ona pravi fascinirajuću čegrljajuću buku koja bi SVAKOGA zabavljala satima. Povećava Inteligenciju za <%= int %>. Ograničena serija 2015 Prolećna Oprema.",
+ "weaponSpecialSpring2015WarriorNotes": "To jeste prava koštana batina za prave žestoke psiće i definitivno nije igračka za žvakanje koju Vam je Sezonska čarobnica dala zato što ko je dobar psić? Koooooo je to dobar psić?? To si ti!!! Ti si dobar psić!!! Povećava Snagu za <%= str %>. Oprema iz ograničene serije Proleće 2015.",
+ "weaponSpecialSpring2015MageText": "Mađionačarev čarobni štapić",
+ "weaponSpecialSpring2015MageNotes": "Stvorite sebi ukusnu šargarepu pomoću ovog elegantnog štapića. Povećava Inteligenciju za <%= int %> i Opažanje za <%= per %>. Oprema iz ograničene serije Proleće 2015.",
+ "weaponSpecialSpring2015HealerText": "Mačija zvečka",
+ "weaponSpecialSpring2015HealerNotes": "Samo treba da je protresete, i čućete očaravajući zvuk koji bi BILO KOGA zabavljao satima. Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Proleće 2015.",
"weaponMystery201411Text": "Vile za gozbe",
- "weaponMystery201411Notes": "Probodite protivnike ili skupljajte svoju omiljenu hranu - ove višenamenske vile obavljaju sve poslove s lakoćom. Ne daju nikakav bonus. Predmet za pretplatnike novembar 2014.",
- "weaponMystery201502Text": "Svetlucavo Krilato Žezlo Ljubavi i takođe Poverenja",
- "weaponMystery201502Notes": "Za KRILA! Za LJUBAV! Za TAKOĐE POVERENJE! Ne daje nikakav bonus. Predmet za pretplatnike u februaru 2015.",
+ "weaponMystery201411Notes": "Probodite protivnike ili ih koristite kao viljušku dok jedete svoju omiljenu hranu - ove višenamenske vile obavljaju sve poslove s lakoćom. Ne daju nikakav bonus. Predmet za pretplatnike novembar 2014.",
+ "weaponMystery201502Text": "Svetlucavo krilato žezlo ljubavi, i istine, takođe",
+ "weaponMystery201502Notes": "Za KRILA! Za LJUBAV! Za ISTINU, TAKOĐE! Ne daje nikakav bonus. Predmet za pretplatnike februar 2015.",
+ "weaponMystery201505Text": "Green Knight Lance",
+ "weaponMystery201505Notes": "This green and silver lance has unseated many opponents from their mounts. Confers no benefit. May 2015 Subscriber Item.",
"weaponMystery301404Text": "Stimpank štap",
"weaponMystery301404Notes": "Odličan za šetnju po gradu. Predmet za pretplatnike mart 3015. Ne daje nikakav bonus.",
"armor": "oklop",
"armorBase0Text": "Obična odeća",
"armorBase0Notes": "Potpuno obična odeća. Ne daje nikakav bonus.",
"armorWarrior1Text": "Kožni oklop",
- "armorWarrior1Notes": "Prsluk od čvrste štavljene kože. Povećava Vitalnost za <%= con %>.",
+ "armorWarrior1Notes": "Prsluk od štavljene kože. Povećava Vitalnost za <%= con %>.",
"armorWarrior2Text": "Verižnjača",
"armorWarrior2Notes": "Oklop od međusobno povezanih metalnih prstenova. Povećava Vitalnost za <%= con %>.",
"armorWarrior3Text": "Pun oklop",
"armorWarrior3Notes": "Čelični oklop za celo telo, kakav nose pravi vitezovi. Povećava Vitalnost za <%= con %>.",
"armorWarrior4Text": "Crveni oklop",
- "armorWarrior4Notes": "Na ovom teški oklop sijaju zaštitne čini . Povećava Vitalnost za <%= con %>.",
+ "armorWarrior4Notes": "Na ovom teškom oklopu sijaju zaštitne čini . Povećava Vitalnost za <%= con %>.",
"armorWarrior5Text": "Zlatni oklop",
"armorWarrior5Notes": "Izgleda kao obredni predmet, ali nijedan mač ne može da ga probije. Povećava Vitalnost za <%= con %>.",
"armorRogue1Text": "Nauljena koža",
@@ -150,41 +152,41 @@
"armorWizard2Text": "Čarobnjačka odora",
"armorWizard2Notes": "Odora lutajućeg čudotvorca. Povećava Inteligenciju za <%= int %>.",
"armorWizard3Text": "Odora tajni",
- "armorWizard3Notes": "Simbol upućenosti u velike tajne čarobnjačkog poziva. Povećava Inteligenciju za <%= int %>.",
+ "armorWizard3Notes": "Simbol da ste upućeni u velike tajne čarobnjačkog poziva. Povećava Inteligenciju za <%= int %>.",
"armorWizard4Text": "Arhečarobnjakova odora",
- "armorWizard4Notes": "Klanjaju mu se duhovi i sile prirode. Povećava Inteligenciju za <%= int %>. ",
+ "armorWizard4Notes": "Klanjaće Vam se duhovi i sile prirode. Povećava Inteligenciju za <%= int %>.",
"armorWizard5Text": "Odora kraljevskog čarobnjaka",
- "armorWizard5Notes": "Simbol moći prestola. Povećava Inteligenciju za <%= int %>.",
+ "armorWizard5Notes": "Simbol moći koja stoji iza monarha. Povećava Inteligenciju za <%= int %>.",
"armorHealer1Text": "Akolitska odora",
"armorHealer1Notes": "Simbol poniznosti i predanosti cilju. Povećava Vitalnost za <%= con %>.",
"armorHealer2Text": "Lekarska odora",
"armorHealer2Notes": "Nose je oni koji se staraju o povređenima u bici. Povećava Vitalnost za <%= con %>.",
- "armorHealer3Text": "Plašt taštitnika",
+ "armorHealer3Text": "Plašt zaštitnika",
"armorHealer3Notes": "Usmerava vidarevu moć ka unutra, kako bi ga zaštitio od povreda. Povećava Vitalnost za <%= con %>.",
"armorHealer4Text": "Lekarski plašt",
"armorHealer4Notes": "Simbolizuje autoritet i skida kletve. Povećava Vitalnost za <%= con %>.",
"armorHealer5Text": "Kraljevski plašt",
"armorHealer5Notes": "Svečano ruho onih koji su spasili živote kraljeva. Povećava Vitalnost za <%= con %>.",
"armorSpecial0Text": "Oklop senke",
- "armorSpecial0Notes": "Ispušta vrisak kad primi udarac, jer oseča bol umesto svog vlasnika. Povećava Vitalnost za <%= con %>.",
+ "armorSpecial0Notes": "Ispušta vrisak kad primi udarac, jer oseća bol umesto svog vlasnika. Povećava Vitalnost za <%= con %>.",
"armorSpecial1Text": "Kristalni oklop",
"armorSpecial1Notes": "Njegova nepresušna moć čini vlasnika otpornim na neudobnost. Povećava Vitalnost za <%= con %>.",
"armorSpecial2Text": "Kraljevska tunika Žana Šaralda",
"armorSpecial2Notes": "Osećaćete se izuzetno paperjasto! Povećava Vitalnost i Inteligenciju za <%= attrs %>.",
"armorSpecialYetiText": "Odora lovca na jetije",
- "armorSpecialYetiNotes": "Čupava i zastrašujuća. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Zima 2013.-2014.",
+ "armorSpecialYetiNotes": "Čupava i zastrašujuća. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Zima 2013/14.",
"armorSpecialSkiText": "Skijaška jakna s kapuljačom",
- "armorSpecialSkiNotes": "Iznutra krije mnoštvo bodeža i mapa skijaških staza. Povećava Opažanje za <%= per %>. Oprema iz ograničene serije Zima 2013.-2014.",
+ "armorSpecialSkiNotes": "Iznutra krije mnoštvo bodeža i mapa skijaških staza. Povećava Opažanje za <%= per %>. Oprema iz ograničene serije Zima 2013/14.",
"armorSpecialCandycaneText": "Šećerna odora",
- "armorSpecialCandycaneNotes": "Izatkana od svile i šećera. Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Zima 2013.-2014.",
+ "armorSpecialCandycaneNotes": "Satkana od svile i šećera. Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Zima 2013/14.",
"armorSpecialSnowflakeText": "Snežna odora",
- "armorSpecialSnowflakeNotes": "Odora koja će Vas grejati čak i u mećavi. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Zima 2013.-2014.",
+ "armorSpecialSnowflakeNotes": "Odora koja će Vas grejati čak i u mećavi. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Zima 2013/14.",
"armorSpecialBirthdayText": "Smešna odora za žurke",
"armorSpecialBirthdayNotes": "Srećan rođendan, HabitRPG! Obucite ovu Smešnu odoru za žurke i proslavite ovaj veliki dan. Ne daje nikakav bonus.",
"armorSpecialBirthday2015Text": "Blesava odora za žurke",
"armorSpecialBirthday2015Notes": "Srećan rođendan, HabitRPG! Obucite ovu Blesavu odoru za žurke i proslavite ovaj veliki dan. Ne daje nikakav bonus.",
"armorSpecialGaymerxText": "Dugin ratnički oklop",
- "armorSpecialGaymerxNotes": "Povodom sezone prajda i GaymerX, ovaj oklop je ukrašen bojama duge. GaymerX konvencija bavi se temama vezanim za LGBT i video igre i otvorena je za sve zainteresovane. Održava se u InterContinental-u u San Francisku od 11. do 13. jula. Ne daje nikakav bonus.",
+ "armorSpecialGaymerxNotes": "Povodom obeležavanja sezone prajda i GaymerX-a, ovaj oklop je ukrašen bojama duge. GaymerX konvencija bavi se LGBT temama i video igrama, i otvorena je za sve zainteresovane. Održava se u InterContinental-u u San Francisku od 11. do 13. jula. Ne daje nikakav bonus.",
"armorSpecialSpringRogueText": "Otmeni kostim mačke",
"armorSpecialSpringRogueNotes": "Ima besprekornu dlaku. Povećava Opažanje za <%= per %>. Oprema iz ograničene serije Proleće 2014.",
"armorSpecialSpringWarriorText": "Oklop od čelične deteline",
@@ -206,25 +208,25 @@
"armorSpecialFallWarriorText": "Laboratorijski mantil za naučnike",
"armorSpecialFallWarriorNotes": "Štiti Vas kad prospete misteriozne napitke. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Jesen 2014.",
"armorSpecialFallMageText": "Veštičja odora",
- "armorSpecialFallMageNotes": "Ova odora ima mnoštvo džepova za rezervne oči vodenjaka i jezike žaba. Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Jesen 2014.",
+ "armorSpecialFallMageNotes": "Ova odora ima mnoštvo džepova, kako biste mogli nositi što više očiju vodenjaka i jezika žabe. Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Jesen 2014.",
"armorSpecialFallHealerText": "Gaza",
"armorSpecialFallHealerNotes": "Spremite se pre nego što krenete u bitku. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Jesen 2014.",
"armorSpecialWinter2015RogueText": "Oklop ledenog zmaja",
- "armorSpecialWinter2015RogueNotes": "Ovaj oklop je ledeno hladan, ali to će se isplatiti kad pronađete nebrojeno blago u središtu gnezda ledenih zmajeva. Mada Vi nemate razloga da tražite to nebrojeno blago, jer ste Vi pravi pravcati ledeni zmaj, jasno? Ni reči više. Povećava Opažanje za <%= per %>. Oprema iz ograničene serije Zima 2014.-2015.",
+ "armorSpecialWinter2015RogueNotes": "Ovaj oklop je ledeno hladan, ali to će se isplatiti kad pronađete nebrojeno blago u središtu gnezda ledenih zmajeva. Mada Vi nemate razloga da tražite bilo kakvo nebrojeno blago, jer Vi ste pravi pravcati ledeni zmaj, jasno? Ni reči više. Povećava Opažanje za <%= per %>. Oprema iz ograničene serije Zima 2014/15.",
"armorSpecialWinter2015WarriorText": "Oklop od medenjaka",
- "armorSpecialWinter2015WarriorNotes": "Udoban i mek oklop, sveže iz rerne. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Zima 2014.-2015.",
+ "armorSpecialWinter2015WarriorNotes": "Udoban i mek oklop, tek izvađen iz rerne. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Zima 2014/15.",
"armorSpecialWinter2015MageText": "Severna odora",
- "armorSpecialWinter2015MageNotes": "Polarna svelost sa severnog pola isijava iz ove odore. Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Zima 2014.-2015.",
+ "armorSpecialWinter2015MageNotes": "Polarna svelost sa severnog pola isijava iz ove odore. Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Zima 2014/15.",
"armorSpecialWinter2015HealerText": "Odeća za klizanje",
- "armorSpecialWinter2015HealerNotes": "Klizanje na ledu je odlično za opuštanje, ali valja se zaštititi, za slučaj da vas napadne ledeni zmaj. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Zima 2014.-2015.",
- "armorSpecialSpring2015RogueText": "Skvikerske Odore",
- "armorSpecialSpring2015RogueNotes": "Dlakava, meka i definitivno nezapaljiva. Povećava Opažanje za <%= per %>. Ograničena serija 2015 Prolećna Oprema.",
- "armorSpecialSpring2015WarriorText": "Odore Opreza",
- "armorSpecialSpring2015WarriorNotes": "Samo najvatreniji psić može da bude ovoliko paperjast. Povećava Vitalnost za <%= con %>. Ograničena Serija 2015 Prolećna Oprema.",
- "armorSpecialSpring2015MageText": "Mađioničarovo Zečje Odelo",
- "armorSpecialSpring2015MageNotes": "Tvoji peševi se slažu s tvojim pamučnim repom. Povećava Inteligenciju za <%= int %>. Ograničena serija 2015 Prolećna Oprema.",
- "armorSpecialSpring2015HealerText": "Umirujuće Mačje Odelo",
- "armorSpecialSpring2015HealerNotes": "Ovo meko mačje odelo je udobno, i umirujuće kao čaj od nane. Povećava Vitalnost za <%= con %>. Ograničena serija 2015 Prolećna Oprema.",
+ "armorSpecialWinter2015HealerNotes": "Klizanje na ledu je odlično za opuštanje, ali valja se zaštititi, za slučaj da vas napadne ledeni zmaj. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Zima 2014/15.",
+ "armorSpecialSpring2015RogueText": "Piskava odora",
+ "armorSpecialSpring2015RogueNotes": "Dlakava je, meka, i uopšte nije zapaljiva. Povećava Opažanje za <%= per %>. Oprema iz ograničene serije Proleće 2015.",
+ "armorSpecialSpring2015WarriorText": "Čuvaj se oklopa!",
+ "armorSpecialSpring2015WarriorNotes": "Samo najvatreniji psić može da bude ovoliko paperjast. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Proleće 2015.",
+ "armorSpecialSpring2015MageText": "Mađioničarevo zečje odelo",
+ "armorSpecialSpring2015MageNotes": "Tvoji peševi se slažu s tvojim čupavim repom. Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Proleće 2015.",
+ "armorSpecialSpring2015HealerText": "Umirujuće mačje odelo",
+ "armorSpecialSpring2015HealerNotes": "Ovo meko mačje odelo je udobno, i umirujuće kao čaj od nane. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Proleće 2015.",
"armorMystery201402Text": "Odora pismonoše",
"armorMystery201402Notes": "Ova svetlucava i izdržljiva odora ima mnoštvo džepova za čuvanje pisama. Ne daje nikakav bonus. Predmet za pretplatnike februar 2014.",
"armorMystery201403Text": "Šumski kamuflažni oklop",
@@ -234,7 +236,7 @@
"armorMystery201406Text": "Odora hobotnice",
"armorMystery201406Notes": "Vlasnik ove savitljive odore može da se provuče i kroz najsitnije pukotine. Ne daje nikakav bonus. Predmet za pretplatnike jun 2014.",
"armorMystery201407Text": "Odelo podvodnog istraživača",
- "armorMystery201407Notes": "Ovo odelo, koje neki nazivaju i „bljak”, „previše debelo”, ili „iskreno, nekako je nezgrapno”, najbolji je prijatelj svakog neustrašivog podvodnog istraživača. Ne daje nikakav bonus. Predmet za pretplatnike jul 2014.",
+ "armorMystery201407Notes": "Ovo odelo, koje neki nazivaju i „bljak”, „previše debelo”, ili „da ti pravo kažem, nekako je nezgrapno”, najbolji je prijatelj svakog neustrašivog podvodnog istraživača. Ne daje nikakav bonus. Predmet za pretplatnike jul 2014.",
"armorMystery201408Text": "Sunčana odora",
"armorMystery201408Notes": "Ispletena je od sunčevih zraka i zlata. Ne daje nikakav bonus. Predmet za pretplatnike avgust 2014.",
"armorMystery201409Text": "Istraživački prsluk",
@@ -245,11 +247,13 @@
"armorMystery201412Notes": "Vidi, mama, ja sam pingvin! Ne daje nikakav bonus. Predmet za pretplatnike decembar 2014.",
"armorMystery201501Text": "Zvezdani oklop",
"armorMystery201501Notes": "Svetlost udaljenih zvezda ispunjava ovaj oklop, i daje vlasniku odlučnost. Ne daje nikakav bonus. Predmet za pretplatnike Januar 2015.",
- "armorMystery201503Text": "Marinsko Plavi Oklop",
- "armorMystery201503Notes": "Ovaj plavi mineral simbolizuje dobru sreću, zadovoljstvo i večnu produktivnost. Ne daje nikakav bonus. Mart 2015 Predmet za Pretplatnike.",
+ "armorMystery201503Text": "Akvamarinski oklop",
+ "armorMystery201503Notes": "Ovaj plavi mineral simbol je sreće, zadovoljstva i večne produktivnosti. Ne daje nikakav bonus. Predmet za pretplatnike mart 2015.",
+ "armorMystery201504Text": "Odora vredne pčelice",
+ "armorMystery201504Notes": "Radite vredno kao pčela u ovoj otmenoj odori! Ne daje nikakav bonus. Predmet za pretplatnike april 2015.",
"armorMystery301404Text": "Stimpank odelo",
"armorMystery301404Notes": "Kicoško i zanosno! Ne daje nikakav bonus. Predmet za pretplatnike februar 3015..",
- "headgear": "pokrivke za glavu",
+ "headgear": "šlemovi",
"headBase0Text": "Bez šlema",
"headBase0Notes": "Gola glava",
"headWarrior1Text": "Kožna kapa",
@@ -265,7 +269,7 @@
"headRogue1Text": "Kožna kapuljča",
"headRogue1Notes": "Jednostavna kapuljača. Povećava Opažanje za <%= per %>.",
"headRogue2Text": "Kapuljača od crne kože",
- "headRogue2Notes": "Za odbranu i za kamuflažu. Povećava Opažanje za <%= per %>.",
+ "headRogue2Notes": "Istovremeno služi za odbranu i za kamuflažu. Povećava Opažanje za <%= per %>.",
"headRogue3Text": "Kamuflažna kapuljača",
"headRogue3Notes": "Gruba, ali ne ometa sluh. Povećava Opažanje za <%= per %>.",
"headRogue4Text": "Kapuljača sumraka",
@@ -301,13 +305,13 @@
"headSpecialNyeText": "Smešni šešir za žurke",
"headSpecialNyeNotes": "Dobili ste Smešni šešir za žurke. Nosite ga s ponosom u Novoj godini. Ne daje nikakav bonus.",
"headSpecialYetiText": "Šlem lovca na jetije",
- "headSpecialYetiNotes": "Presladak i strašan šešir. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Zima 2013.-2014.",
+ "headSpecialYetiNotes": "Presladak i strašan šešir. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Zima 2013/14.",
"headSpecialSkiText": "Skijaški šlem",
- "headSpecialSkiNotes": "Skriva vlasnikov identitet... i greje mu lice. Povećava Opažanje za <%= per %>. Oprema iz ograničene serije Zima 2013.-2014.",
+ "headSpecialSkiNotes": "Skriva vlasnikov identitet... i greje mu lice. Povećava Opažanje za <%= per %>. Oprema iz ograničene serije Zima 2013/14.",
"headSpecialCandycaneText": "Šećerni šešir",
- "headSpecialCandycaneNotes": "Najukusniji šešir na svetu. Tajanstveno se pojavljuje i nestaje. Povećava Opažanje za <%= per %>. Oprema iz ograničene serije Zima 2013.-2014.",
+ "headSpecialCandycaneNotes": "Najukusniji šešir na svetu. Tajanstveno se pojavljuje i nestaje. Povećava Opažanje za <%= per %>. Oprema iz ograničene serije Zima 2013/14.",
"headSpecialSnowflakeText": "Snežna kruna",
- "headSpecialSnowflakeNotes": "Vlasniku ove krune nikad nije hladno. Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Zima 2013.-2014.",
+ "headSpecialSnowflakeNotes": "Vlasniku ove krune nikad nije hladno. Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Zima 2013/14.",
"headSpecialSpringRogueText": "Maska slatkog mačeta",
"headSpecialSpringRogueNotes": "Nikom neće pasti na pamet da ste u stvari provalnik. Povećava Opažanje za <%= per %>. Oprema iz ograničene serije Proleće 2014.",
"headSpecialSpringWarriorText": "Šlem od čelične deteline",
@@ -335,21 +339,21 @@
"headSpecialNye2014Text": "Blesavi šešir za žurke",
"headSpecialNye2014Notes": "Dobili ste Blesavi šešir za žurke. Nosite ga s ponosom u Novoj godini. Ne daje nikakav bonus.",
"headSpecialWinter2015RogueText": "Maska ledenog zmaja",
- "headSpecialWinter2015RogueNotes": "Vi ste pravi pravcati ledeni zmaj. Ne upadate krišom u gnezdo ledenih zmajeva. Ne zanima Vas nebrojeno blago ispod ledenih tunela o kom kruže glasine. Grrrr. Povećava Opažanje za <%= per %>. Oprema iz ograničene serije Zima 2014.-2015.",
+ "headSpecialWinter2015RogueNotes": "Vi ste pravi pravcati ledeni zmaj. Ne upadate krišom u gnezdo ledenih zmajeva. Ne zanima Vas nebrojeno blago ispod ledenih tunela o kom kruže glasine. Grrrr. Povećava Opažanje za <%= per %>. Oprema iz ograničene serije Zima 2014/15.",
"headSpecialWinter2015WarriorText": "Šlem od medenjaka",
- "headSpecialWinter2015WarriorNotes": "Razmišljajte, razmišljajte, razmišljajte najjače što možete. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Zima 2014.-2015.",
+ "headSpecialWinter2015WarriorNotes": "Razmišljajte, razmišljajte, razmišljajte najjače što možete. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Zima 2014/15.",
"headSpecialWinter2015MageText": "Aurorin šešir",
- "headSpecialWinter2015MageNotes": "Materijal od kog je ovaj šešir napravljen svetli i izvija se kad vlasnik uči. Povećava Opažanje za <%= per %>. Oprema iz ograničene serije Zima 2014.-2015.",
+ "headSpecialWinter2015MageNotes": "Materijal od kog je ovaj šešir napravljen svetli i izvija se kad vlasnik uči. Povećava Opažanje za <%= per %>. Oprema iz ograničene serije Zima 2014/15.",
"headSpecialWinter2015HealerText": "Udobni naušnik",
- "headSpecialWinter2015HealerNotes": "Ovaj udobni naušnik štiti od hladnoće i glasnog zvuka. Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Zima 2014.-2015.",
+ "headSpecialWinter2015HealerNotes": "Ovaj udobni naušnik štiti od hladnoće i glasnog zvuka. Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Zima 2014/15.",
"headSpecialSpring2015RogueText": "Šlem otporan na vatru",
- "headSpecialSpring2015RogueNotes": "Vatra? HAH! Žestoko skvikućete u lice vatre! Povečava Opažanje za <%= per %>. Ograničena Serija 2015 Prolećna Oprema.",
- "headSpecialSpring2015WarriorText": "Šlem opreza",
- "headSpecialSpring2015WarriorNotes": "Pazite se Šlema! Samo žestoka kuca može da ga nosi. Prestani da se smeješ. Povećava Snagu za <%= str %>. Ograničena Serija 2015 Prolećna Oprema.",
+ "headSpecialSpring2015RogueNotes": "Vatra? Jaka stvar! Vi imate vrhunsku zaštitnu opremu! Povečava Opažanje za <%= per %>. Ograničena Serija 2015 Prolećna Oprema.",
+ "headSpecialSpring2015WarriorText": "Čuvaj se šlema!",
+ "headSpecialSpring2015WarriorNotes": "Opasan šlem! Samo žestoka kuca može da ga nosi. Prestanite da se smejete. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Proleće 2015.",
"headSpecialSpring2015MageText": "Šešir Čarobnjaka sa scene",
- "headSpecialSpring2015MageNotes": "Šta je prvo nastalo, zec ili šešir? Povećava Opažanje za <%= per %>. Ograničena Serija 2015 Prolećna Oprema.",
- "headSpecialSpring2015HealerText": "Umirujuća Kruna",
- "headSpecialSpring2015HealerNotes": "Biser u centru ove krune smiruje i raskomoćuje one oko sebe. Povećava Inteligenciju za <%= int %>. Ograničena Serija 2015 Prolećna Oprema.",
+ "headSpecialSpring2015MageNotes": "Šta je prvo nastalo, zec ili šešir? Povećava Opažanje za <%= per %>. Oprema iz ograničene serije Proleće 2015.",
+ "headSpecialSpring2015HealerText": "Umirujuća kruna",
+ "headSpecialSpring2015HealerNotes": "Biser u centru ove krune smiruje i raskomoćuje ljude oko sebe. Povećava Inteligenciju za <%= int %>. Oprema iz ograničene serije Proleće 2015.",
"headSpecialGaymerxText": "Dugin šlem",
"headSpecialGaymerxNotes": "Povodom sezone prajda i GaymerX, ovaj šlem je ukrašen bojama duge. GaymerX konvencija bavi se temama vezanim za LGBT i video igre i otvorena je za sve zainteresovane. Održava se u InterContinental-u u San Francisku od 11. do 13. jula. Ne daje nikakav bonus.",
"headMystery201402Text": "Krilati šlem",
@@ -367,7 +371,9 @@
"headMystery201412Text": "Pingvinski Šešir",
"headMystery201412Notes": "Ko je to postao pingvin? Ne daje nikakav bonus. Predmet za pretplatnike decembar 2014.",
"headMystery201501Text": "Zvezdani šlem",
- "headMystery201501Notes": " Sazvežđa trepere i kovitlaju se unutar ovog šlema, i usmeravaju vlanikove misli da bi lakše mogao da se koncentriše. Predmet za pretplatnike Januar 2015.",
+ "headMystery201501Notes": "Sazvežđa trepere i kovitlaju se unutar ovog šlema, i usmeravaju vlanikove misli da bi lakše mogao da se koncentriše. Predmet za pretplatnike Januar 2015.",
+ "headMystery201505Text": "Green Knight Helm",
+ "headMystery201505Notes": "The green plume on this iron helm waves proudly. Confers no benefit. May 2015 Subscriber Item.",
"headMystery301404Text": "Otmeni cilindar",
"headMystery301404Notes": "Otmeni cilindar za pripadnike visokog društva! Predmet za pretplatnike januar 3015. Ne daje nikakav bonus.",
"headMystery301405Text": "Jednostavni cilindar",
@@ -402,9 +408,9 @@
"shieldSpecialGoldenknightText": "Mastejnova jutarnja zvezda",
"shieldSpecialGoldenknightNotes": "Susreti, zveri, problemi: rešeno jednim udarcem! Povećava Vitalnost i Opažanje za <%= attrs %>.",
"shieldSpecialYetiText": "Štit lovca na jetije",
- "shieldSpecialYetiNotes": "Odbija svetlost sa snega. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Zima 2013.-2014.",
+ "shieldSpecialYetiNotes": "Odbija svetlost sa snega. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Zima 2013/14.",
"shieldSpecialSnowflakeText": "Snežni štit",
- "shieldSpecialSnowflakeNotes": "Svaki štit je jedinstven. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Zima 2013.-2014.",
+ "shieldSpecialSnowflakeNotes": "Svaki štit je jedinstven. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Zima 2013/14.",
"shieldSpecialSpringRogueText": "Kukaste kandže",
"shieldSpecialSpringRogueNotes": "Odlične su za penjajnje na visoke zgrade, kao i za uništavanje tepiha. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Proleće 2014.",
"shieldSpecialSpringWarriorText": "Jaje-štit",
@@ -424,17 +430,17 @@
"shieldSpecialFallHealerText": "Štit ukrašen draguljima",
"shieldSpecialFallHealerNotes": "Ovaj sjajni štit nađen je u drevnoj grobnici. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Jesen 2014",
"shieldSpecialWinter2015RogueText": "Ledenica",
- "shieldSpecialWinter2015RogueNotes": "Stvarno, sigurno i van svake sumnje ste ovaj predmet upravo podigli sa zemlje. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Zima 2014.-2015.",
+ "shieldSpecialWinter2015RogueNotes": "Stvarno, sigurno i van svake sumnje ste ovaj predmet upravo podigli sa zemlje. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Zima 2014/15.",
"shieldSpecialWinter2015WarriorText": "Želatinasti štit",
- "shieldSpecialWinter2015WarriorNotes": "Ovaj naizgled šećerni štit je u stvari napravljen od želatiniziranog povrća. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Zima 2014.-2015.",
+ "shieldSpecialWinter2015WarriorNotes": "Ovaj naizgled šećerni štit je u stvari napravljen od želatiniziranog povrća. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Zima 2014/15.",
"shieldSpecialWinter2015HealerText": "Umirujući štit",
- "shieldSpecialWinter2015HealerNotes": "Ovaj štit odbija ledeni vetar. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Zima 2014.-2015.",
- "shieldSpecialSpring2015RogueText": "Eksplodirajući Skvik",
- "shieldSpecialSpring2015RogueNotes": "Ne dozvoli da te zvuk oko tebe prevari - ovi eksplozivi pakuju udarce. Povećava snagu za <%= str %>. Ograničena serija 2015 Prolećna Oprema.",
- "shieldSpecialSpring2015WarriorText": "Disk s klopom",
- "shieldSpecialSpring2015WarriorNotes": "Baci ga na svoje neprijatelje... ili ga jednostavno drži, zato što će se napuniti sa ukusnom kiblom za vreme večere. Povećava Vitalnost za <%= con %>. Ograničena Serija 2015 Prolećna Oprema.",
+ "shieldSpecialWinter2015HealerNotes": "Ovaj štit odbija ledeni vetar. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Zima 2014/15.",
+ "shieldSpecialSpring2015RogueText": "Eksplozivni pisak",
+ "shieldSpecialSpring2015RogueNotes": "Ne dozvolite da Vas zvuk zavara - ovo je veoma moćan eksploziv. Povećava Snagu za <%= str %>. Oprema iz ograničene serije Proleće 2015.",
+ "shieldSpecialSpring2015WarriorText": "Posuda za hranu",
+ "shieldSpecialSpring2015WarriorNotes": "Bacite ga na neprijatelje... ili ga jednostavno zadržite, jer će se napuniti ukusnom hranom kad dođe vreme za večeru. Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Proleće 2015.",
"shieldSpecialSpring2015HealerText": "Jastuk sa dezenom",
- "shieldSpecialSpring2015HealerNotes": "Možete odmoriti svoju glavu na ovom udobnom jastuku, ili ga možete rvati sa svojim strahovitim kandžama. Raurr! Povećava Vitalnost za <%= con %>. Ograničena Serija 2015 Prolećna Oprema.",
+ "shieldSpecialSpring2015HealerNotes": "Možete odmoriti glavu na ovom udobnom jastuku, ili ga možete napasti svojim oštrim kandžama. Grrrr! Povećava Vitalnost za <%= con %>. Oprema iz ograničene serije Proleće 2015.",
"shieldMystery301405Text": "Štit sa kazaljkama",
"shieldMystery301405Notes": "Sa ovim impozantnim štitom uvek imate dovoljno vremena. Ne daje nikakav bonus. Predmet za pretplatnike jun 3015.",
"backBase0Text": "Bez ukrasa na leđima",
@@ -445,6 +451,8 @@
"backMystery201404Notes": "Budite veličanstveni leptir! Ne daje nikakav bonus. Predmet za pretplatnike april 2014.",
"backMystery201410Text": "Krila goblina",
"backMystery201410Notes": "Letite kroz noć sa ovim snažnim krilima. Ne daje nikakav bonus. Predmet za pretplatnike oktobar 2014.",
+ "backMystery201504Text": "Krila vredne pčelice",
+ "backMystery201504Notes": "Bzzz Bzzz Bzzz! Letite sa zadatka na zadatak. Ne daje nikakav bonus. Predmet za pretplatnike april 2015.",
"backSpecialWonderconRedText": "Plašt moći",
"backSpecialWonderconRedNotes": "Ispunjen snagom i lepotom. Ne daje nikakav bonus. Predmet iz specijalne kolekcije povodom konvencije.",
"backSpecialWonderconBlackText": "Plašt za šunjanje",
@@ -462,6 +470,8 @@
"bodySpecialSummerHealerText": "Koralna ogrlica",
"bodySpecialSummerHealerNotes": "Oglica od ćivog korala za Habitikance sa stilom . Ne daje nikakav bonus. Oprema iz ograničene serije Leto 2014.",
"headAccessory": "ukras na glavi",
+ "accessories": "Ukrasi",
+ "animalEars": "Životinjske uši",
"headAccessoryBase0Text": "Bez ukrasa na glavi",
"headAccessoryBase0Notes": "Bez ukrasa na glavi.",
"headAccessorySpecialSpringRogueText": "Ljubičaste mačje uši",
@@ -473,21 +483,37 @@
"headAccessorySpecialSpringHealerText": "Žute pseće uši",
"headAccessorySpecialSpringHealerNotes": "Vise, ali su slatke. Hoćete li da idemo u šetnju? Ne daje nikakav bonus. Oprema iz ograničene serije Proleće 2014.",
"headAccessorySpecialSpring2015RogueText": "Žute mišje uši",
- "headAccessorySpecialSpring2015RogueNotes": "Ove uši pokrivaju glavu protiv zvuka od eksplozija. Ne dodaje nikakav bonus. Ograničena Serija 2015 Prolećna Oprema.",
+ "headAccessorySpecialSpring2015RogueNotes": "Ove uši štite Vaš sluh od zvuka od eksplozija. Ne daje nikakav bonus. Oprema iz ograničene serije Proleće 2015.",
"headAccessorySpecialSpring2015WarriorText": "Ljubičaste pseće uši",
- "headAccessorySpecialSpring2015WarriorNotes": "Ljubičaste su. Pseće su. Nemojte dalje trošiti svoje vreme ovim glupostima. Ne dodaje nikakav bonus. Ograničena Serija 2015 Prolećna Oprema.",
+ "headAccessorySpecialSpring2015WarriorNotes": "Ljubičaste su. Pseće su. Ne gubite više vreme na gluposti. Ne daje nikakav bonus. Oprema iz ograničene serije Proleće 2015.",
"headAccessorySpecialSpring2015MageText": "Plave zečje uši",
- "headAccessorySpecialSpring2015MageNotes": "Ove uši slušaju oduševljeno, u slučaju da neki čarobnjak razotkriva njihove tajne. Ne dodaje nikakav bonus. Ograničena Serija 2015 Prolećna Oprema. ",
+ "headAccessorySpecialSpring2015MageNotes": "Ove uši pažljivo slušaju, ne bi li čule nekog mađioničara kako odaje svoje tajne. Ne daje nikakav bonus. Oprema iz ograničene serije Proleće 2015.",
"headAccessorySpecialSpring2015HealerText": "Zelene macine uši",
- "headAccessorySpecialSpring2015HealerNotes": "Ostali će pozeleneti od zavisti zbog ovih slatkih macinih ušiju. Ne dodaje nikakav bonus. Ograničena Serija 2015 Prolećna Oprema. ",
+ "headAccessorySpecialSpring2015HealerNotes": "Ostali će pozeleneti od zavisti kad vide vaše slatke macine uši. Ne daje nikakav bonus. Oprema iz ograničene serije Proleće 2015.",
+ "headAccessoryBearEarsText": "Medveđe uši",
+ "headAccessoryBearEarsNotes": "Sa ovim ušima izgledaćete kao umiljato meče! Ne daje nikakav bonus.",
+ "headAccessoryCactusEarsText": "Kaktusove uši",
+ "headAccessoryCactusEarsNotes": "Sa ovim ušima izgledaćete kao bodljikavi kaktus! Ne daje nikakav bonus.",
+ "headAccessoryFoxEarsText": "Lisičje uši",
+ "headAccessoryFoxEarsNotes": "Sa ovim ušima izgledaćete kao lukava lisica! Ne daje nikakav bonus.",
+ "headAccessoryLionEarsText": "Lavlje uši",
+ "headAccessoryLionEarsNotes": "Sa ovim ušima izgledaćete kao kralj životinja! Ne daje nikakav bonus.",
+ "headAccessoryPandaEarsText": "Pandine uši",
+ "headAccessoryPandaEarsNotes": "Sa ovim ušima izgledaćete kao nežni panda! Ne daje nikakav bonus.",
+ "headAccessoryPigEarsText": "Praseće uši",
+ "headAccessoryPigEarsNotes": "Sa ovim ušima izgledaćete kao komično prase! Ne daje nikakav bonus.",
+ "headAccessoryTigerEarsText": "Tigrove uši",
+ "headAccessoryTigerEarsNotes": "Sa ovim ušima izgledaćete kao žestoki tigar! Ne daje nikakav bonus.",
+ "headAccessoryWolfEarsText": "Vučje uši",
+ "headAccessoryWolfEarsNotes": "Sa ovim ušima izgledaćete kao odani vuk! Ne daje nikakav bonus.",
"headAccessoryMystery201403Text": "Šumski kamuflažni rogovi",
"headAccessoryMystery201403Notes": "Ovi jelenji rogovi prekriveni su mahovinom i lišajevima. Ne daje nikakav bonus. Predmet za pretplatnike mart 2014.",
"headAccessoryMystery201404Text": "Leptirove antene sumraka",
"headAccessoryMystery201404Notes": "Ove antene pomažu vlasniku da primeti opasne distrakcije. Ne daje nikakav bonus. Predmet za pretplatnike april 2014.",
"headAccessoryMystery201409Text": "Jesenji rogovi",
"headAccessoryMystery201409Notes": "Ovi moćni jelenji rogovi menjaju boju zajedno s lišćem. Ne daje nikakav bonus. Predmet za pretplatnike septembar 2014.",
- "headAccessoryMystery201502Text": "Krila Misli",
- "headAccessoryMystery201502Notes": "Dopusti svojoj mašti da poleti! Ne dodaje nikakav bonus. Februar 2015 Predmet za Pretplatnike.",
+ "headAccessoryMystery201502Text": "Krila misli",
+ "headAccessoryMystery201502Notes": "Neka vaša mašta poleti! Ne daje nikakav bonus. Predmet za pretplatnike februar 2015.",
"headAccessoryMystery301405Text": "Zaštitne naočare za čelo",
"headAccessoryMystery301405Notes": "Svi tvrde da se zaštitne naočare nose na očima. Kažu da nikom ne trebaju naočare koje se nose na čeli. Ha! Pokažite im da nisu u pravu. Ne daje nikakav bonus.Predmet za pretplatnike avgust 3015.",
"eyewearBase0Text": "Bez naočara",
@@ -500,8 +526,8 @@
"eyewearSpecialWonderconRedNotes": "Kako moćna maska! Ne daje nikakav bonus. Predmet iz specijalne kolekcije povodom konvencije.",
"eyewearSpecialWonderconBlackText": "Maska za šunjanje",
"eyewearSpecialWonderconBlackNotes": "Sigurno ne planirate ništa nezakonito. Ne daje nikakav bonus. Predmet iz specijalne kolekcije povodom konvencije.",
- "eyewearMystery201503Text": "Marinske Naočare",
- "eyewearMystery201503Notes": "Nemojte se ubosti u oko ovim svetlucajućim draguljima! Ne dodaje nikakav bonus. Mart 2015 Predmet za pretplatnike.",
+ "eyewearMystery201503Text": "Akvamarinske Naočare",
+ "eyewearMystery201503Notes": "Nemojte se ubosti u oko ovim svetlucajućim draguljima! Ne daje nikakav bonus. Predmet za pretplatnike mart 2015.",
"eyewearMystery301404Text": "Zaštitne naočare za oči",
"eyewearMystery301404Notes": "Nema elegantnijeg aksesoara za lice od zaštitnih naočara - osim možda monokla. Ne daje nikakav bonus. Predmet za pretplatnike april 3015.",
"eyewearMystery301405Text": "Monokl",
diff --git a/common/locales/sr/generic.json b/common/locales/sr/generic.json
index ef6cac95a1..d26c6c29be 100644
--- a/common/locales/sr/generic.json
+++ b/common/locales/sr/generic.json
@@ -5,7 +5,20 @@
"habitica": "Habitika",
"expandToolbar": "Pokaži traku s alatima",
"collapseToolbar": "Sakrij traku s alatima",
- "formattingMarkdown": "Dozvoljeno Markdown formatiranje",
+ "markdownBlurb": "HabitRPG uses markdown for message formatting. See the Markdown Cheat Sheet for more info.",
+ "showFormattingHelp": "Show formatting help",
+ "hideFormattingHelp": "Hide formatting help",
+ "youType": "You type:",
+ "youSee": "You see:",
+ "italics": "*Italics*",
+ "bold": "**Bold**",
+ "strikethrough": "~~Strikethrough~~",
+ "emojiExample": ":smile:",
+ "markdownLinkEx": "[HabitRPG is great!](https://habitrpg.com)",
+ "markdownImageEx": "",
+ "unorderedListHTML": "+ First item
+ Second item
+ Third item",
+ "unorderedListMarkdown": "+ First item\n+ Second item\n+ Third item",
+ "code": "`code`",
"achievements": "Odlikovanja",
"modalAchievement": "Odlikovanje!",
"special": "Specijalno",
@@ -62,7 +75,7 @@
"errorUpCase": "Greška:",
"newPassSent": "Nova lozinka poslata.",
"serverUnreach": "Server trenutno nije dostupan.",
- "seeConsole": "Ako se greška još uvek pojavljuje, molimo vas da je prijavite na Pomoć > Prijavi Grešku. Ako ste upoznati sa konzolom vašeg pretraživača, u prijavu, citirajući, dodajte i i obaveštenje o grešci. ",
+ "seeConsole": "Ako se greška još uvek pojavljuje, molimo Vas da je prijavite na Pomoć > Prijaviti grešku. Ako umete da koristite konzolu pretraživača, pošaljite nam i obaveštenje o grešci. ",
"error": "Greška",
"menu": "Meni",
"notifications": "Obaveštenja",
diff --git a/common/locales/sr/groups.json b/common/locales/sr/groups.json
index bc68114000..5e931164e2 100644
--- a/common/locales/sr/groups.json
+++ b/common/locales/sr/groups.json
@@ -1,14 +1,14 @@
{
"tavern": "Krčma",
- "innCheckOut": "Napustiti gostionicu",
- "innCheckIn": "Odmorite se u gostionici",
- "innText": "Prija li Vam boravak u gostionici, <%= name %>? Vaš spisak zadataka je zamrznut. Stanje zadataka neće se menjati do sutra (dan pošto se odjavite). Budite oprezni: ako se vaša družina bori protiv bosa, njihove greške uticaće i na Vas! Takođe, Vi nećete moći da se borite s njima. Jeste li spremni da se vratite u igru? Odjavite se iz gostionice.",
+ "innCheckOut": "Napustiti Gostionicu",
+ "innCheckIn": "Odmorite se u Gostionici",
+ "innText": "Odmarate se u Gostionici! Dok ste prijavljeni, nećete trpeti štetu od neurađenih svakodnevnih zadataka na kraju dana, ali će ti zadaci biti obeleženi kao neurađeni kad novi dan počne. Upozorenje: Ako se Vaša družina bori protiv bosa, njihovi propušteni zadaci će uticati i na Vas, osim ako su i oni u Gostionici! Takođe, šteta koju nanesete bosu (i predmeti koje nađete) neće se videti dok se ne odjavite iz Gostionice.",
"lfgPosts": "Tražim družinu",
"tutorial": "Obuka",
"glossary": "Glosar",
"wiki": "Wiki",
"reportAP": "Prijavite problem",
- "requestAF": "Zatraćite novu funkciju",
+ "requestAF": "Zatražite novu funkciju",
"community": "Forum zajednice",
"dataTool": "Statistika",
"resources": "Resursi",
@@ -27,7 +27,7 @@
"create": "Organizovati",
"userId": "Korisnički ID (UUID)",
"invite": "Pozvati",
- "leave": "Napustiti družinu",
+ "leave": "Napustiti družinu/udruženje",
"invitedTo": "Pozvani ste u <%= name %>",
"newMsg": "Nova poruka u „<%= name %>”",
"chat": "Čet",
@@ -42,7 +42,7 @@
"groupDescr": "Opis koji se pojavljuje u spisku udruženja (podržava Markdown)",
"logoUrl": "Logo URL",
"assignLeader": "Vođa grupe",
- "members": "Članovi",
+ "members": "članova",
"partyList": "Uputstva za članove družine (osvežite stranicu kad promenite uputstva)",
"banTip": "Izbaciti člana",
"moreMembers": "još članova",
@@ -96,5 +96,25 @@
"abuseReported": "Hvala što ste prijavili ovaj prekršaj. Moderatorima je poslato obaveštenje.",
"abuseAlreadyReported": "Već ste prijavili ovu poruku.",
"needsText": "Molimo Vas da napišete poruku.",
- "needsTextPlaceholder": "Otkucajte poruku ovde."
+ "needsTextPlaceholder": "Otkucajte poruku ovde.",
+ "copyMessageAsToDo": "Kopirati poruku kao Jednokratni zadatak",
+ "messageAddedAsToDo": "Poruka je kopirana kao jednokratni zadatak.",
+ "messageWroteIn": "<%= user %> je napisao u <%= group %>",
+ "msgPreviewHeading": "Pregled poruke",
+ "leaderOnlyChallenges": "Samo vođa grupe može da napravi izazov",
+ "sendGift": "Poslati poklon",
+ "inviteFriends": "Pozvati prijatelje",
+ "inviteAlertInfo": "Ovde možete pozvati prijatelje ako znate njihov UID",
+ "inviteExistUser": "Pozvati registrovanog korisnika",
+ "inviteByEmail": "Pozovite prijatelje imejlom. Ako se registruju preko linka iz poruke, automatski će biti pozvani u ovu grupu.",
+ "byColon": "Od:",
+ "inviteNewUsers": "Pozvati nove korisnike",
+ "inviteAlertInfo2": "Ili pošaljilte ovaj link (copy/paste):",
+ "sendGiftHeading": "Send Gift to <%= name %>",
+ "sendGiftGemsBalance": "From <%= number %> Gems",
+ "sendGiftCost": "Total: $<%= cost %> USD",
+ "sendGiftFromBalance": "From Balance",
+ "sendGiftPurchase": "Purchase",
+ "sendGiftMessagePlaceholder": "Personal message (optional)",
+ "sendGiftSubscription": "<%= months %> Month(s): $<%= price %>"
}
\ No newline at end of file
diff --git a/common/locales/sr/messages.json b/common/locales/sr/messages.json
index 3607337d69..497038e6be 100644
--- a/common/locales/sr/messages.json
+++ b/common/locales/sr/messages.json
@@ -11,14 +11,14 @@
"messageDontEnjoyFood": "<%= egg %> ne odbija <%= foodText %>, ali izgleda da je ne voli.",
"messageBought": "Predmet <%= itemText %> kupljen",
"messageEquipped": "Predmet <%= itemText %> postavljen.",
- "messageUnEquipped": "Predmet <%= itemText %> vra'en u inventar.",
+ "messageUnEquipped": "Predmet <%= itemText %> je vraćen u inventar.",
"messageMissingEggPotion": "Nedostaje Vam jaje ili napitak",
"messageAlreadyPet": "Već imate takvu zver. Pokušajte s nekom drugom kombinacijom.",
"messageHatched": "Jaje se izleglo. Zver možete naći u štali.",
"messageNotEnoughGold": "Nemate dovoljno zlata.",
"messageTwoHandled": "<%= gearText %> je dvoručno oružje",
- "messageDropFood": "Našli ste %= dropText %>! <%= dropNotes %>",
- "messageDropEgg": "Našli ste %= dropText %> Jaje! <%= dropNotes %>",
- "messageDropPotion": "Našli ste %= dropText %> Napitak! <%= dropNotes %>",
+ "messageDropFood": "Našli ste <%= dropArticle %><%= dropText %>! <%= dropNotes %>",
+ "messageDropEgg": "Našli ste <%= dropText %> Jaje! <%= dropNotes %>",
+ "messageDropPotion": "Našli ste <%= dropText %> Napitak! <%= dropNotes %>",
"messageFoundQuest": "Našli ste misiju „<%= questText %>”!"
}
\ No newline at end of file
diff --git a/common/locales/sr/npc.json b/common/locales/sr/npc.json
index 76c31e7bfe..787c29d675 100644
--- a/common/locales/sr/npc.json
+++ b/common/locales/sr/npc.json
@@ -2,11 +2,11 @@
"npc": "NPC",
"npcText": "Pružio maksimalnu podršku na Kickstarter-u!",
"mattBoch": "Met Bok",
- "mattShall": "Želite li da jašete, <%= name %>? Odaberite zver, i spremni ste.",
- "mattBochText1": "Dobro došli u Štalu! Ja sam Met, krotitelj zveri. Odaberite zver koja će putovati uz Vas. Ako je budete hranili, izrašće u veliku životinju, koju ćete mići da jašete.",
+ "mattShall": "Shall I bring you your steed, <%= name %>? Once you've fed a pet enough food to turn it into a mount, it will appear here. Click a mount to saddle up!",
+ "mattBochText1": "Welcome to the Stable! I'm Matt, the beast master. After level 4, you can hatch pets using eggs and potions. When you hatch a pet in the Market, it will appear here! Click a pet's image to add it to your avatar. Feed them with the food you find after level 4, and they'll grow into powerful mounts.",
"daniel": "Danijel",
- "danielText": "Dobro došli u Krčmu! Smestite se i upoznajte se s meštanima. Ako poželite da se odmorite (ako idete na put, ili se razbolite), u gostionici ćete uvek naći slobodnu sobu. Dok ste naš gost, Vaši zadaci će biti zamrznuti, sve dok se ne odjavite. Na kraju dana nećete trpeti štetu od neurađenih zadataka.",
- "danielText2": "Upozorenje: Ako učestvujete u borbi s bosom, trpećete štetu zbog propuštenih zadataka ostalih članova Vaše družine.",
+ "danielText": "Dobro došli u Krčmu! Smestite se i upoznajte se s meštanima. Ako poželite da se odmorite (ako idete na put, ili se razbolite), naći ću Vam slobodnu sobu u Gostionici. Dok ste naš gost, nećete trpeti štetu od neurađenih zadataka, ali ćete i dalje moći da ih obeležite kao urađene.",
+ "danielText2": "Upozorenje: Ako učestvujete u borbi protiv bosa, trpećete štetu zbog propuštenih zadataka ostalih članova Vaše družine! Takođe, šteta koju nanesete bosu neće se videti dok ne napustite Gostionicu, niti će se predmeti koje nađete pojaviti u Vašem inventaru.",
"alexander": "Trgovac Aleksander",
"welcomeMarket": "Dobro došli na Pijacu! Kupite jaja i napitke koje ne možete da nađete! Prodajte što Vam nije potrebno! Razgledajte našu robu.",
"sellForGold": "Prodati <%= item %> za <%= gold %> Zlata",
@@ -25,29 +25,29 @@
"card": "Kartica",
"paymentMethods": "Metode plaćanja:",
"classGear": "Oprema i klase",
- "classGearText": "Polako i bez panike. Vaša stara oprema je u inventaru. Na Vama je početnička oprema za klasu <%= klass %>. Možete se slobodno vratiti svojoj staroj opremi, ali imajte u vidu da sa opremom za svoju klasu imate bonus od 50%.",
+ "classGearText": "Samo polako i bez panike. Vaša stara oprema je u inventaru. Na Vama je početnička oprema za klasu <%= klass %>. Možete se slobodno vratiti svojoj staroj opremi, ali imajte u vidu da sa opremom za svoju klasu imate bonus od 50%.",
"classStats": "Ovo su karakteristike Vaše klase. One utiču na vaš učinak u igri. Za svaki novi nivo dobijate jedan poen, koji možete dodeliti bilo kojoj od četiri karakteristike. Postavite strelicu miša iznad karakteristika da biste dobili informacije o njima.",
"autoAllocate": "Automatska raspodela",
- "autoAllocateText": "Ako je \"automatsko deljenje\" uključeno, vaš avatar dobija statusne poene automatski na bazi atributa vaših zadataka, koje možete naći u ZADATAK > Uredi > Napredno > Atributi. Na primer, ako često idete u teretanu, i vaš \"teretana\" dnevni zadatak je podešen na \"fizički\" , dobijaćete poene za snagu automatski.",
- "spells": "Sposobnosti",
- "spellsText": "Ubuduće možete da otključavate sposobnosti, koje su jedinstvene za svaku klasu. Prvu sposobnost otključaćete kad dostignete 11. nivo. Svakog dana dobijate 10 poena mane, plus 1 poen za svaki uspešno obavljen",
- "toDo": "Jednokratni zadaci",
+ "autoAllocateText": "Ako uključite automatsku raspodelu, Vaš avatar će birati osobine u koje će ulagati poene u skladu s osobinama zadataka, koje možete podesiti u ZADATAK > Izmeniti > Napredna podešavanja > Osobine. Npr, ako često idete u teretanu, i svakodnevni zadatak „Teretana” je podešen kao „Fizički”, automatski ćete dobijati Snagu.",
+ "spells": "Veštine",
+ "spellsText": "Sad možete da otključate veštine, koje su jedinstvene za svaku klasu. Prvu veštinu otključaćete kad dostignete 11. nivo. Svakog dana dobijate 10 poena mane, a još po jedan poen doneće Vam svaki uspešno obavljen",
+ "toDo": "Jednokratni zadatak",
"moreClass": "Više informacija o klasama možete naći na",
- "tourWelcome": "Dobrodošao u Habitiku! Ovo je tvoja Za-Uraditi lista. Čekiraj zadatak da nastaviš!",
- "tourExp": "Bravo! Čekiranje zadataka ti daje poene za iskustvo i zlatnike!",
- "tourDailies": "Ova kolona je za svakodnevne zadatke. Da nastaviš, ubaci zadatak koji treba da radiš svaki dan! Obični zadaci: Namesti krevet, Floss, Proveri poslovnu el. poštu",
- "tourCron": "Sjajno! Tvoji Dnevni zadaci će se resetovati svakog dana.",
- "tourHP": "Pazi! Ako ne završiš zadatak do ponoći, povrediće te!",
- "tourHabits": "Ova kolona je dobra za dobre i loše navike koje radiš mnogo puta na dan! Da nastaviš, klikni na olovku da uređuješ imena, onda klikni na kvadratić da nsataviš.",
- "tourStats": "Dobre navike dodaju poene za Iskustvo i zlatnike! Loše navike ti troše život.",
- "tourGP": "Da nastaviš, kupi Mač za Treniranje sa novcem koji si upravo osvojio!",
- "tourAvatar": "Tvoj avatar sada ima Mač za Treniranje. Da nastaviš, klikni na svoj avatar da ga izmeniš!",
- "tourScrollDown": "Uveri se da skroluješ sve do dole da vidiš sve opcije! Klikni na svoj avatar opet da se vratiš na stranu sa zadacima.",
- "tourMuchMore": "Kada završiš sa zadacima, možeš da formiraš Žurku sa prijateljima, ćaskaš sa Gildama koje dele zajednički interes, priključiš se Izazovima, i još mnogo toga!",
- "tourStatsPage": "Ovo je tvoja starnica sa poenima za status! Osvoji Dostignuća završavanjem listiranih zadataka.",
- "tourTavernPage": "Dobrodošao u kafanu, prostor za ćaskanje svih vremena! Možeš zamrznuti svog avatara u slučaju bolesti ili putovanja klikom na \"Odmaranje u gostionici.\" Dođi i reci zdravo!",
- "tourPartyPage": "Tvoja Žurka će ti pomoći da ostaneš odgovoran. Pozovi prijatelje da otključaš Pergament s Misijom.",
- "tourGuildsPage": "Gilde su društvene grupe sa uobičajenim temama. Potraži predmete tvog interesovanja! Preporučujemo ti \"the Newbies Guild\".",
- "tourChallengesPage": "Priključenje Izazovu će dodati zadatke tvom nalogu. Takmiči se sa drugim korisnicima da osvojiš nagrade u vidu dragulja.",
- "tourMarketPage": "Počevši od 4. nivoa, jaja i napici za izleganje nalazićeš nasumično kad završiš zadatke. Oni se pojavljuju ovde - koristi ih da izlegneš ljubimce! Takođe ih možeš kupiti na Pijaci."
+ "tourWelcome": "Dobro došli u Habitiku! Ovo je spisak jednokratnih zadataka. Obeležite zadatak kao urađen da biste nastavili.",
+ "tourExp": "Odlično! Za svaki urađen zadatak dobijate Iskustvo i Zlato!",
+ "tourDailies": "Ovo je kolona za Svakodnevne zadatke. Da biste nastavili, unesite zadatak koji nameravate da radite svakog dana! Na primer: Namesti krevet, Operi zube, Proveri poruke",
+ "tourCron": "Sjajno! Kad počne novi dan, svakodnevni zadaci biće obeleženi kao neurađeni.",
+ "tourHP": "Budite pažljivi! Vaš avatar će trpeti štetu od zadataka koji ne budu urađeni do ponoći!",
+ "tourHabits": "Ova kolona služi za dobre i loše Navike koje radite više puta dnevno! Da biste nastavili, kliknite na olovku da izmenite imena Navika, i sačuvajte izmene.",
+ "tourStats": "Za Dobre navike dobijate Iskustvo i Zlato! Za loše navike Vaš avatar gubi Zdravlje.",
+ "tourGP": "Da biste nastavili, kupite Mač za vežbanje od novca koji ste upravo zaradili.",
+ "tourAvatar": "Vaš avatar sada ima Mač za vežbanje. Da biste nastavili, kliknite na avatar i podesite ga!",
+ "tourScrollDown": "Pregledajte celu stranicu i upoznajte se s opcijama. Kliknite na avatar da biste se vratili na stranicu sa zadacima.",
+ "tourMuchMore": "Kad završite sa zadacima, možete da organizujete Družinu sa prijateljima, da četujete u Udruženjima koja Vas interesuju, da učestvujete u izazovima, i još mnogo toga!",
+ "tourStatsPage": "Ovo je stranica sa karakteristikama Vašeg avatara. Osvojite odlikovanja izvršavanjem zadataka sa spiska.",
+ "tourTavernPage": "Welcome to the Tavern, an all-ages chatroom! You can keep your Dailies from hurting you in case of illness or travel by clicking \"Rest in the Inn.\" Come say hi!",
+ "tourPartyPage": "Družina će Vam pomoći da ostanete posvećeni svojim ciljevima. Pozovite prijatelje da biste otključali svitke s misijama.",
+ "tourGuildsPage": "Udruženja su grupe ljudi sa zajedničkim interesovanjima. Nađite udruženja koja Vam se dopadaju. Preporučujemo Vam Udruženje početnika (Newbies Guild).",
+ "tourChallengesPage": "Challenges are themed task lists created by users! Joining a Challenge will add its tasks to your account. Compete against other users to win gem prizes!",
+ "tourMarketPage": "Kad dostignete 4. nivo, počećete da nalazite jaja i napitke za izleganje kad budete završavali zadatke. Oni će se pojaviti ovde – koristite ih da biste dobili zveri! Iste te predmete možete kupiti na Pijaci."
}
\ No newline at end of file
diff --git a/common/locales/sr/pets.json b/common/locales/sr/pets.json
index cc2977619a..b5bfdfb683 100644
--- a/common/locales/sr/pets.json
+++ b/common/locales/sr/pets.json
@@ -57,7 +57,7 @@
"petKeyInfo": "Nedostaje Vam uzbuđenje sakupljanja zveri? Sad možete da ih oslobodite, i vratite značaj plenu.",
"petKeyInfo2": "Ključ štenare poništiće sve vaše nađene životinje, osim onih koje ste našli u misijama. (Retke zveri i životinje za jahanje, kao i one iz misija, ostaće u Vašem posedu.)",
"petKeyInfo3": "Postoje tri ključa: možete da oslobodite zveri za 4 dragulja, ili da oslobodite zveri za jahanje za 4 dragulja, ili obe kategorije za 6 dragulja. Upotrebom kjluča dobijate priliku da ponovo steknete odlikovanje Krotitelja zveri ili Jahača. Odlikovanje Trostruki bingo dobićete samo ako oslobodite obe kategorije, i ponovo skupite svih 90 zveri. Pokažite svetu da ste ozbiljan kolekcionar. I pažljivo donesite odluku – kad upotrebite ključ i oslobodite životinje, jedini način da ih vratite biće da ih ponovo nađete.",
- "petKeyInfo4": "Postoje 3 ključa za Štenare: Oslobodi samo ljubimce (4 Dragulja), Oslobodi samo jahaće životinje (4 Dragulja) ili Oslobodi i ljubimce i jahaće životinje. Upotrebom ključa dobijate priliku da ponovo steknete odlikovanje Krotitelja Zveri ili Jahača. Odlikovanje Triad Bingo ćete steći samo ako iskoristite ključ \"Oslobodi i ljubimce i jahaće životinje\" i ako sakupite svih 90 životinja po drugi put. Pokažite svetu kakav ste Gospodar Sakupljanja. Ali, birajte pažljivo, jer jednom kada iskoristite Ključ i otvorite Štenaru ili Vrata Štale, nećete biti u mogućnosti da ih vratite a da ih ne sakupite sve ponovo...",
+ "petKeyInfo4": "Postoje tri ključa: možete da oslobodite zveri za 4 dragulja, ili da oslobodite zveri za jahanje za 4 dragulja, ili obe kategorije. Upotrebom kjluča dobijate priliku da ponovo steknete odlikovanje Krotitelja zveri ili Jahača. Odlikovanje Trostruki bingo dobićete samo ako oslobodite obe kategorije, i ponovo skupite svih 90 zveri. Pokažite svetu da ste ozbiljan kolekcionar. I pažljivo donesite odluku – kad upotrebite ključ i oslobodite životinje, jedini način da ih vratite biće da ih ponovo nađete.",
"petKeyPets": "Oslobodi zveri",
"petKeyMounts": "Oslobodi životinje za jahanje",
"petKeyBoth": "Oslobodi sve",
diff --git a/common/locales/sr/quests.json b/common/locales/sr/quests.json
index 7252fcdfe7..446fa6beaa 100644
--- a/common/locales/sr/quests.json
+++ b/common/locales/sr/quests.json
@@ -6,6 +6,8 @@
"questSend": "Klikom na „Pozvati“ poslaćete pozivnice članovima svoje družine. Misija počinje kad svi članovi odgovore. Pogledajte stanje u Opcije > Zajednica > Družina.",
"inviteParty": "Pozvati družinu",
"questInvitation": "Poziv u misiju:",
+ "questInvitationTitle": "Poziv u misiju",
+ "questInvitationInfo": "Poziv u misiju <%= quest %>",
"askLater": "Pitati kasnije",
"buyQuest": "Kupiti misiju",
"accepted": "Prihvaćeno",
@@ -17,7 +19,7 @@
"bossStrength": "Snaga Bosa",
"collect": "Sakupiti",
"collected": "Sakupljeno",
- "bossDmg1": "Završavajte svoje Svakodnevne i Jednokratne zadatke da biste naneli štetu bosu. Zadaci sa većom štetom više će povrediti bosa (crveni zadaci, magije Čarobnjaka, napadi Ratnika, itd). Za svaki propušten Svakodnevni zadatak bos nanosi štetu svakom učesniku misije (šteta od zadatka pomnožena sa snagom bosa) povrh normalne štete od zadatka. Završavajte Svakodnevne zadatke kako bi vaša družina bila zdrava. Sva šteta koju bos primi i nanese obračunava se na kraju dana.(odnosno u trenutku smene između dva dana).",
+ "bossDmg1": "Završavajte svoje Svakodnevne i Jednokratne zadatke da biste naneli štetu bosu. Crveni zadaci, Vatra, i Divlji udarac načiniće još veću štetu. Za svaki propušten Svakodnevni zadatak bos nanosi štetu svakom učesniku misije (šteta od zadatka pomnožena sa snagom bosa) povrh normalne štete od zadatka. Završavajte Svakodnevne zadatke kako bi vaša družina bila zdrava. Sva šteta koju bos primi i nanese obračunava se na kraju dana.(odnosno u trenutku smene između dva dana).",
"bossDmg2": "Samo učesnici će se boriti protiv bosa i dobiti deo plena.",
"tavernBossInfo": "Završavajte svoje Svakodnevne i Jednokrate zadatke da biste naneli štetu bosu. Zadaci sa većom štetom više će povrediti bosa (crveni zadaci, magije Čarobnjaka, napadi Ratnika, itd). Bos dobija Bes za svaki propušten Svakodnevni zadatak (pomnoženo sa snagom bosa). Kad Bes dostigne maksimalnu vrednost, desiće se nešto loše. Zato završavajte Svakodnevne zadatke. Sva šteta koju bos primi i nanese obračunava se na kraju dana.(odnosno u trenutku smene između dva dana).",
"bossColl1": "Da biste dobili predmete, radite pozitivne zadatke.Na misiji predmeti padaju na isti način kao i inače, ali nećete moći da ih vidite do sledećeg dana, kad će svi nađeni predmeti biti sakupljeni na gomilu.",
diff --git a/common/locales/sr/questscontent.json b/common/locales/sr/questscontent.json
index 7e2dc1f08e..bdbdefecca 100644
--- a/common/locales/sr/questscontent.json
+++ b/common/locales/sr/questscontent.json
@@ -1,74 +1,74 @@
{
"questEvilSantaText": "Deda Mraz Traper",
"questEvilSantaNotes": "Čujete žalosne urlike u dubini ledenih polja. Pratite urlike i režanje, isprekidane zlobnim kikotanjem. Prolazite kroz šumu i izlazite na proplanak, gde nailazite na odraslu belu medvedicu, zarobljenu u kavezu, i vezanu lancima. Na vrhu kaveza pleše opaki đavolak u kostimu Deda Mraza. Savladajte Trapera i spasite medveda!",
- "questEvilSantaCompletion": "Uz besni vrisak, đavolak beži i nestaje u mračnoj šumi. Zahvalna medvedica pokušava nešto da Vam objasni urlicima i režanjem. Vodite je do štale, gde Šaptač Met Bok sa zaprepašćenjem sluša njenu priču. Dok je bila zarobljena u kavezu, njeno mladunče je odlutalo u ledena polja. Pomozite joj da ga nađe!",
+ "questEvilSantaCompletion": "Uz besni vrisak, đavolak beži i nestaje u mračnoj šumi. Zahvalna medvedica pokušava nešto da vam objasni urlicima i režanjem. Vodite je do štale, gde Šaptač Met Bok sa zaprepašćenjem sluša njenu priču. Dok je bila zarobljena u kavezu, njeno mladunče je odlutalo u ledena polja. Pomozite joj da ga nađe!",
"questEvilSantaBoss": "Deda Mraz Traper",
"questEvilSantaDropBearCubPolarMount": "Beli medved (Životija za jahanje)",
"questEvilSanta2Text": "Nađite mladunče",
"questEvilSanta2Notes": "Medvedičino mladunče je odlutalo dok je ona bila zarobljena. Na ivici šume, medvedica njuši vazduh. U tišini šume čujete pucketanje grančica pod stopalima i šuštanje koraka u snegu. Tragovi šapa! Trkom pratite trag. Nađite sve tragove i slomljene grančice, i spasite meče.",
- "questEvilSanta2Completion": "Našli ste mladunče. Medvedica i njeno meče su Vam zahvalni. Odlučili su da zauvek ostanu s Vama.",
+ "questEvilSanta2Completion": "Našli ste mladunče. Medvedica i njeno meče su vam zahvalni. Odlučili su da zauvek ostanu s Vama.",
"questEvilSanta2CollectTracks": "Tragovi",
"questEvilSanta2CollectBranches": "Slomljene grančice",
"questEvilSanta2DropBearCubPolarPet": "Beli medved (Zver)",
"questGryphonText": "Ognjeni grifon",
- "questGryphonNotes": "Veliki krotitelj životinja baconsaur traži pomoć od Vaše družine. „Pustolovci, potrebna mi je pomoć! Pobegao mi je grifon, i sad napada građane Habitike. Ako ga zaustavite, pokloniću vam nekoliko jaja grifona!”",
- "questGryphonCompletion": "Poražena zver vraća se gospodaru podvijenog repa. „Svaka čast, pustolovi!” uzviknu baconsaur, „Uzmite ova grifonova jaja. Znam da ćete se dobro starati o njima.” ",
+ "questGryphonNotes": "Veliki krotitelj životinja baconsaur traži pomoć od vaše družine. „Junaci, potrebna mi je pomoć! Pobegao mi je grifon, i sad napada građane Habitike. Ako ga zaustavite, pokloniću vam nekoliko jaja grifona!”",
+ "questGryphonCompletion": "Poražena zver vraća se gospodaru podvijenog repa. „Svaka čast, junaci!” uzviknu baconsaur, „Uzmite ova grifonova jaja. Znam da ćete se dobro starati o njima.” ",
"questGryphonBoss": "Ognjeni grifon",
"questGryphonDropGryphonEgg": "Grifon (Jaje)",
- "questGryphonUnlockText": "Otključava jaja grifona koja se kupuju na Pijaci",
+ "questGryphonUnlockText": "Omogućava kupovinu jaja Grifona na Pijaci",
"questHedgehogText": "Podivljali jež",
"questHedgehogNotes": "Ježevi su neobične životinje. To je jedan od najljupkijih ljubimaca koje možete imati. Priča se, međutim, da postaju prilično razdražljivi ako im date mleko posle ponoći. I da porastu pedesetostruko. A Inventrix je upravo to uradio. Ups.",
- "questHedgehogCompletion": "Vaša družina je savladala ježa. Vrativši se na normalnu veličinu, jež je otišao do svojih jaja. Zatim se vratio do vaše družine cvileći i noseći nekoliko jaja. Nadajmo se da će ovi ježevi bolje podnositi mleko.",
+ "questHedgehogCompletion": "Vaša družina je savladala ježa. Vrativši se na normalnu veličinu, jež odlazi do svojih jaja. Cvileći se vraća do vas i nosi nekoliko jaja. Nadajmo se da će ovi ježevi biti tolerantniji na laktozu!",
"questHedgehogBoss": "Podivljali jež",
"questHedgehogDropHedgehogEgg": "Jež (Jaje)",
- "questHedgehogUnlockText": "Otključava jaja ježa koja mogu da se kupe na Pijaci",
+ "questHedgehogUnlockText": "Omogućava kupovinu jaja Ježa na Pijaci",
"questGhostStagText": "Duh proleća",
- "questGhostStagNotes": "Ah, proleće. To divno doba godine, kad boje počinju da se vraćaju u okolni pejzaž. Prošli su hladni i snežni dani zime. Gde je zemlju nekad pokrivao led, sad buja vegetacija. Mirisno zeleno lišće ispunjava krošnje drveća, trava ponovo zeleni, cveće u svim bojama duge raste po livadama, i tajanstvena bela magla pokriva zemlju!... Stoj. Tajanstvena magla? „O, ne”, uplašeno uzviknu Inventrix, „Izgleda da je ovu maglu izazvao nekakav duh. I sprema se da vas napadne.”",
- "questGhostStagCompletion": "Naizgled netaknut, duh spušta na zemlju. Umirujući glas obavija družinu. „Izvinjavam se zbog svog ponašanja. Tek sam se probudio iz zimskog sna, i izgleda da me razum ne služi u potpunosti. Molim vas da prihvatite ove predmete u znak izvinjenja.” Pred vama se niotkuda pojavila hrpa jaja. Duh bez reči odlazi u šumu, a za njim ostaje trag od cveća.",
+ "questGhostStagNotes": "Ah, proleće. To divno doba godine, kad boje počinju da se vraćaju u prirodu. Prošli su hladni i snežni dani zime. Gde je zemlju nekad pokrivao led, sad buja vegetacija. Divno zeleno lišće ispunjava krošnje drveća, trava ponovo zeleni, cveće u svim bojama duge raste po livadama, i tajanstvena bela magla pokriva zemlju!... Kako, molim? Tajanstvena magla? „O, ne”, uplašeno uzviknu Inventrix, „Izgleda da je ovu maglu izazvao nekakav duh. I sprema se da vas napadne.”",
+ "questGhostStagCompletion": "Naizgled nepovređen, duh se spušta na zemlju. Umirujući glas dopire do vaših ušiju. „Izvinjavam se zbog svog ponašanja. Tek sam se probudio iz zimskog sna, i izgleda da me razum ne služi baš najbolje. Molim vas da prihvatite ove predmete u znak izvinjenja.” Pred vama se niotkuda pojavila hrpa jaja. Duh bez reči odlazi u šumu, a za njim ostaje trag od cveća.",
"questGhostStagBoss": "Duh Jelena",
"questGhostStagDropDeerEgg": "Jelen (Jaje)",
- "questGhostStagUnlockText": "Otključava jaja jelena koja mogu da se kupe na Pijaci",
+ "questGhostStagUnlockText": "Omogućava kupovinu jaja Jelena na Pijaci",
"questRatText": "Kralj pacova",
- "questRatNotes": "Katastrofa! Habitika je zatrpana ogromnim gomilama zapostavljenih svakodnevnih zadataka. Problem je eskalirao do te mere da je grad ispunjen hordama pacova. Nailazite na @Pandah, koja mazi jednu od napasti. Ona vam objašnjava kako su pacovi u stvari nežna bića koja se hrane propuštenim svakodnevnim zadacima. Pravi problem leži u tome što su isti ti zadaci dospeli u kanalizacioni sistem i blokirali ga. Vi silazite u kanalizaciju da rešite problem. Ogromni pacov crvenih očiju i žutih zuba napada vašu družinu, braneći svoj čopor. Hoćete li pobeći kao kukavice ili ćete se uhvatiti u koštac sa legendarnim Kraljem pacova?",
+ "questRatNotes": "Katastrofa! Habitika je zatrpana ogromnim gomilama zapostavljenih svakodnevnih zadataka. Problem je eskalirao do te mere da je grad ispunjen hordama pacova. Nailazite na @Pandah, koja mazi jednu od napasti. Ona vam objašnjava kako su pacovi u stvari nežna bića koja se hrane propuštenim svakodnevnim zadacima. Pravi problem je u tome što su isti ti zadaci dospeli u kanalizacioni sistem i blokirali ga. Vi silazite u kanalizaciju da rešite problem. Ogromni pacov crvenih očiju i žutih zuba napada vašu družinu, braneći svoj čopor. Hoćete li pobeći kao kukavice ili ćete se uhvatiti u koštac sa legendarnim Kraljem pacova?",
"questRatCompletion": "Vaš poslednji udarac obara džinovskog pacova, i njegove oči postaju beživotne i sive. Čudovište se pretvara u mnoštvo sitnih pacova, koji beže u mračnu kanalizaciju. Primećujete da @Pandah stoji iza vas i posmatra nekada moćnog Kralja pacova. Kaže vam da su grašani Habitike, oduševljeni vašom hrabrošću, počeli da sređuju svoje zaostale obaveze. Upozorava vas da morate biti na oprezu, jer će se Kralj pacova vratiti ako se previše opustite. @Pandah vam daje jaja pacova kao nagradu. Primetivši nelagodnost na vašim licima, dodaje s osmehom „Biće sjajni ljubimci kad se izlegnu.”",
"questRatBoss": "Kralj pacova",
"questRatDropRatEgg": "Pacov (Jaje)",
- "questRatUnlockText": "Otključava jaje pacova koje može da se kupi na Pijaci",
+ "questRatUnlockText": "Omogućava kupovinu jaja Pacova na Pijaci",
"questOctopusText": "Zov Oktotulua",
"questOctopusNotes": "@Urse, a wild-eyed young scribe, has asked for your help exploring a mysterious cave by the sea shore. Among the twilight tidepools stands a massive gate of stalactites and stalagmites. As you near the gate, a dark whirlpool begins to spin at its base. You stare in awe as a squid-like dragon rises through the maw. \"The sticky spawn of the stars has awakened,\" roars @Urse madly. \"After vigintillions of years, the great Octothulu is loose again, and ravening for delight!\"",
"questOctopusCompletion": "Completion: With a final blow, the creature slips away into the whirlpool from which it came. You cannot tell if @Urse is happy with your victory or saddened to see the beast go. Wordlessly, your companion points to three slimy, gargantuan eggs in a nearby tidepool, set in a nest of gold coins. \"Probably just octopus eggs,\" you say nervously. As you return home, @Urse frantically scribbles in a journal and you suspect this is not the last time you will hear of the great Octothulu.",
"questOctopusBoss": "Oktotulu",
"questOctopusDropOctopusEgg": "Oktopod (jaje)",
- "questOctopusUnlockText": "Otključava jaje oktopoda koje može da se kupi na Pijaci",
+ "questOctopusUnlockText": "Omogućava kupovinu jaja Oktopoda na Pijaci",
"questHarpyText": "U pomoć! Harpija!",
- "questHarpyNotes": "Hrabri pustolovac @UncommonCriminal otišao je pre nekoliko dana u šumu, prateći krilato čudovište, i od tada mu se izgubio svaki trag. Dok se spremate da krenete u potragu, ranjeni papagaj, čije je prelepo perje unakaženo ožiljkom, sleće na Vaše rame. Na nozi nosi poruku u kojoj piše da je @UncommonCriminal zarobljen dok je pokušavao da zaštiti papagaje od Harpije, i da mu je potrebna pomoć. Hoćete li pratiti papagaja, poraziti Harpiju, i spasiti zarobljenog junaka?",
- "questHarpyCompletion": "Vaš poslednji udarac obara Harpiju, i perje leti na sve strane. Penjete se do gnezda, gde zatičete @UncommonCriminal-a i jaja papagaja, koja vraćate u njihova gnezda. Uz glasni krik, papagaj s ožiljkom donosi družini nekoliko jaja. „Harpijinom krivicom, neka jaja su ostala nezaštićena,” objašnjava @UncommonCriminal. „Izgleda da ste postali počasni papagaji,”",
+ "questHarpyNotes": "Hrabri pustolovac @UncommonCriminal otišao je pre nekoliko dana u šumu, prateći krilato čudovište, i od tada mu se izgubio svaki trag. Dok se spremate da krenete u potragu, ranjeni papaga sleće na Vaše rame. Na nozi nosi poruku u kojoj piše da je @UncommonCriminal zarobljen dok je pokušavao da zaštiti papagaje od Harpije, i da mu je potrebna pomoć. Hoćete li poći s papagajem, poraziti Harpiju, i spasiti zarobljenog junaka?",
+ "questHarpyCompletion": "Vaš udarac obara Harpiju, i perje leti na sve strane. Penjete se do Harpijinog gnezda, gde zatičete @UncommonCriminal-a i jaja papagaja, koja vraćate u njihova gnezda. Uz glasni krik, papagaj s ožiljkom donosi družini nekoliko jaja. „Zbog Harpije su neka jaja ostala bez staratelja,” objašnjava @UncommonCriminal. „Izgleda da ste postali počasni papagaji,”",
"questHarpyBoss": "Harpija",
"questHarpyDropParrotEgg": "Papagaj (Jaje)",
- "questHarpyUnlockText": "Otkjučava jaje papagaja koje može da se kupi na Pijaci",
+ "questHarpyUnlockText": "Omogućava kupovinu jaja Papagaja na Pijaci ",
"questRoosterText": "Podivljali petao",
- "questRoosterNotes": "Farmer @extrajordanary već godinama koristi petlove kao prirodni budilnik. Pojavio se, međutim, džinovski petao, koji kukuriče glasnije nego ijedan drugi – i remeti san stanovnicima Habitike! Neispavanim Habitikancima sve je teže da obavljaju svoje svakodnevne zadatke. @Pandoro odlučuje da potraži nekog ko će rešiti ovaj problem. „Može li iko da natera tog petla da kukuriče tiše?” Vaša družina se odaziva na njegov poziv. Pred zoru dolazite na farmu i prilazite petlu, koji se okreće prema vama, i, mašući džinovskim krilima i pokazujući oštre kandže, započinje juriš.",
- "questRoosterCompletion": "Elegantno i profesionalno, savladali ste ovu divlju zver. Uši joj više nisu začepljene perjem i zaboravljenim zadacima. Petao naslanja glavu na Vaše rame i tiho kokodače. Narednog, dok se spremate da pođete kući, @EmeraldOx vam prilazi, noseći korpu. „Čekajte! Dok ste spavali, petao je dogurao ova jaja do vaših vrata. Mislim da želi da ih ponesete.”",
+ "questRoosterNotes": "Farmer @extrajordanary već godinama koristi petlove kao prirodni budilnik. Pojavio se, međutim, džinovski petao, koji kukuriče glasnije nego ijedan drugi – i remeti san stanovnicima Habitike! Neispavanim Habitikancima sve je teže da obavljaju svoje svakodnevne zadatke. @Pandoro odlučuje da potraži nekog ko će rešiti ovaj problem. „Može li iko da natera tog petla da kukuriče tiše?” Vaša družina se odaziva na njegov poziv. Pred zoru dolazite na farmu i prilazite petlu, koji se okreće prema vama, i, mašući džinovskim krilima i pokazujući oštre kandže, kreće u juriš.",
+ "questRoosterCompletion": "Elegantno i profesionalno, ukrotili ste ovu divlju zver. Uši joj više nisu začepljene perjem i zaboravljenim zadacima. Petao naslanja glavu na Vaše rame i tiho kokodače. Narednog dana, dok se spremate da pođete kući, prilazi vam @EmeraldOx, sa korpom u rukama. „Čekajte! Dok ste spavali, petao je dogurao ova jaja do vaših vrata. Mislim da želi da ih ponesete.”",
"questRoosterBoss": "Petao",
"questRoosterDropRoosterEgg": "Petao (Jaje)",
- "questRoosterUnlockText": "Otključava jaje petla koje može da se kupi na Pijaci",
+ "questRoosterUnlockText": "Omogućava kupovinu jaja Petla na Pijaci ",
"questSpiderText": "Ledena Arahnida",
"questSpiderNotes": "Vreme postaje hladnije, i na prozorskim staklima Habitikanaca mraz je ispleo tanke čipkaste mreže... osim na kući u kojoj živi @Arcosine. Njene prozore ledom je okovao Ledeni pauk, koji se tamo nastanio. Evo nevolje.",
- "questSpiderCompletion": "Ledenog pauka izdaju noge, a za njim ostaju gomilica mraza i nekoliko začaranih jaja. @Arcosine vam daje jaja kao nagradu, i, dok ih preuzimate, jasno vidite da mu je laknulo.",
+ "questSpiderCompletion": "Ledenog pauka izdaju noge, a za njim ostaju gomilica mraza i nekoliko začaranih jaja. @Arcosine vam beže-bolje daje jaja kao nagradu. Možda ćete moći da ih odgajite da budu miroljubivi ljubimci.",
"questSpiderBoss": "Pauk",
"questSpiderDropSpiderEgg": "Pauk (Jaje)",
- "questSpiderUnlockText": "Otključava jaje pauka koje može da se kupi na Pijaci",
+ "questSpiderUnlockText": "Omogućava kupovinu jaja Pauka na Pijaci ",
"questVice1Text": "Suprotstavite se zmaju",
- "questVice1Notes": "
Priča se da veliko zlo počiva u pećinama Maunt Habitike – čuidovište koje samim svojim prisustvom izopačuje umove velikih junaka i pretvara ih u lenjivce i dokoličare! To čudovište, moćni zmaj satkan iz čiste tame, ljudi zovu Porok, podmukli zmaj tame. Hrabri junaci Habitike, prihvatite se oružja, i stanite na put ovom strašnom čudovištu, ali samo ako verujete da možete da se oduprete njegovoj neverovatnoj moći.
Ne možete se boriti protiv čudovišta ako ono već kontroliše vaše živote. Ne dozvolite da budete žrtve poroka i lenjosti! Marljivošću se suprotstavite zmajevom mračnom uticaju i oduprite se njegovoj moći.
", + "questVice1Notes": "Priča se da veliko zlo počiva u pećinama Maunt Habitike – čuidovište čije je samo prisustvo dovoljno da izopači umove velikih junaka i pretvari ih u lenjivce i dokoličare! To čudovište, moćnog zmaja satkanog od čiste tame, ljudi zovu Porok, podmukli zmaj tame. Hrabri junaci Habitike, prihvatite se oružja, i stanite na put ovom strašnom čudovištu, ali samo ako verujete da možete da se oduprete njegovoj neverovatnoj moći.
Ne možete se boriti protiv čudovišta ako ono već kontroliše vaše živote. Ne dozvolite da budete žrtve poroka i lenjosti! Marljivošću se suprotstavite zmajevom mračnom uticaju i oduprite se njegovoj moći.
", "questVice1Boss": "Senka poroka", "questVice1DropVice2Quest": "Porok, 2. deo (Svitak)", "questVice2Text": "Nađite zmajevu jazbinu", - "questVice2Notes": "Oslobodili ste se uticaja Poroka, i vraća vam se snaga koju ste bili izgubili. S novostečenim samopouzdanjem, i sigurni da možete da se oduprete uticaju zmaja, vaša družina odlazi do Maunt Habitike. Prilazite ulazu u pećine i zaustavljate se. Senka poput magle izlazi kroz otvor. Jedva vidite prst pred okom. Svetlost iz vaših fenjera naprosto nestaje pri dodiru sa senkom. Legenda kaže da jedino čarobna svetlost može da potisne zmajevu mračnu izmaglicu. Da biste nastavili put prema zmaju, moraćete da nađete Svetlosne kristale.", + "questVice2Notes": "Oslobodili ste se uticaja Poroka, i vraća vam se snaga koju ste bili izgubili. S novostečenim samopouzdanjem, i sigurni da možete da se oduprete uticaju zmaja, s družinom odlazite do Maunt Habitike. Prilazite ulazu u pećine i zastajete iznenađeni. Poput magle, senka izlazi kroz otvor. Jedva vidite prst pred okom. Svetlost iz vaših fenjera naprosto nestaje pri dodiru sa senkom. Legenda kaže da jedino čarobna svetlost može da potisne zmajevu mračnu izmaglicu. Da biste nastavili put prema zmaju, moraćete da nađete Svetlosne kristale.", "questVice2CollectLightCrystal": "Svetlosni kristali", "questVice2DropVice3Quest": "Porok, 3. deo (Svitak)", "questVice3Text": "Buđenje Poroka", - "questVice3Notes": "Posle dugog traganja, našli ste Porokovu jazbinu. Džinovsko čudovište s prezirom posmatra vašu družinu. Dok se senke kovitlaju oko vas, u mislima čujete šapat, „Još jedna grupa Habitikanaca koji hoće da me zaustave. Baš simpatično. Bilo bi vam pametnije da niste dolazili.” Hladnokrvni titan zabacuje glavu unazad i sprema se da napadne. Kucnuo je čas. Dajte sve od sebe da zaustavite Poroka jednom za svagda!", - "questVice3Completion": "Senke iščezavaju i oko vas je potpuna tišina. Uspeli ste! Pobedili ste u borbi protiv Poroka. Konačno možete da odahnete. Uživajte u pobedi, junaci, nastavite svoj put, i ne zaboravite šta ste u ovoj borbi naučili. Mnoge navike još treba savladati, i mnoga zla pobediti.", + "questVice3Notes": "Posle dugog traganja, našli ste Porokovu jazbinu. Džinovsko čudovište s prezirom posmatra vašu družinu. Dok se senke kovitlaju oko vas, u mislima čujete šapat, „Još jedna grupa Habitikanaca koji hoće da me zaustave. Baš simpatično. Bilo bi vam pametnije da ostali kod kuće.” Hladnokrvni titan zabacuje glavu unazad i sprema se da napadne. Kucnuo je čas. Dajte sve od sebe da zaustavite Poroka jednom za svagda!", + "questVice3Completion": "Senke iščezavaju i oko vas je potpuna tišina. Uspeli ste! Pobedili ste u borbi protiv Poroka. Konačno možete da odahnete. Uživajte u pobedi, junaci, nastavite svoj put, i ne zaboravite šta ste naučili boreći se protiv poroka. Mnoge navike još treba savladati, i mnoga zla pokoriti.", "questVice3Boss": "Porok, zmaj tame", "questVice3DropWeaponSpecial2": "Zmajevo koplje Stivena Vebera", "questVice3DropDragonEgg": "Zmaj (Jaje)", @@ -128,20 +128,20 @@ "questSeahorseBoss": "Sea Stallion", "questSeahorseDropSeahorseEgg": "Seahorse (Egg)", "questSeahorseUnlockText": "Unlocks purchasable seahorse eggs in the Market", - "questAtom1Text": "Attack of the Mundane Questline, Pt. 1: Dish Disaster!", - "questAtom1Notes": "You reach the shores of Washed-Up Lake for some well-earned relaxation... But the lake is polluted with unwashed dishes! How did this happen? Well, you simply cannot allow the lake to be in this state. There is only one thing you can do: clean the dishes and save your vacation spot! Better find some soap to clean up this mess. A lot of soap...", - "questAtom1CollectSoapBars": "Bars of Soap", - "questAtom1Drop": "The SnackLess Monster (Scroll)", - "questAtom2Text": "Attack of the Mundane Questline, Pt. 2: The SnackLess Monster", - "questAtom2Notes": "Phew, this place is looking a lot nicer with all these dishes cleaned. Maybe, you can finally have some fun now. Oh - there seems to be a pizza box floating in the lake. Well, what's one more thing to clean really? But alas, it is no mere pizza box! With a sudden rush the box lifts from the water to reveal itself to be the head of a monster. It cannot be! The fabled SnackLess Monster?! It is said it has existed hidden in the lake since prehistoric times: a creature spawned from the leftover food and trash of the ancient Habiticans. Yuck!", - "questAtom2Boss": "The SnackLess Monster", - "questAtom2Drop": "The Laundromancer Scroll (Scroll)", - "questAtom3Text": "Attack of the Mundane Questline, Pt. 3: The Laundromancer", - "questAtom3Notes": "With a deafening cry, and five delicious types of cheese bursting from its mouth, the SnackLess Monster falls to pieces. \"HOW DARE YOU!\" booms a voice from beneath the water's surface. A robed, blue figure emerges from the water, wielding a magic toilet brush. Filthy laundry begins to bubble up to the surface of the lake. \"I am the Laundromancer!\" he angrily announces. \"You have some nerve - washing my delightfully dirty dishes, destroying my pet, and entering my domain with such clean clothes. Prepare to feel the soggy wrath of my anti-laundry magic!\"", - "questAtom3Completion": "The wicked Laundromancer has been defeated! Clean laundry falls in piles all around you. Things are looking much better around here. As you begin to wade through the freshly pressed armor, a glint of metal catches your eye, and your gaze falls upon a gleaming helm. The original owner of this shining item may be unknown, but as you put it on, you feel the warming presence of a generous spirit. Too bad they didn't sew on a nametag.", - "questAtom3Boss": "The Laundromancer", - "questAtom3DropPotion": "Basic Hatching Potion", - "questOwlText": "The Night-Owl", + "questAtom1Text": "Napad svakodnevnice, 1.deo: Prljavo posuđe!", + "questAtom1Notes": "Zaslužili ste odmor. Odlazite na obalu jezera, ali... Jezero je zagađeno prljavim posuđem! Kako se to dogodilo? Ne možete ostaviti jezero u ovakvom stanju. Jedino što vam preostaje je da operete posuđe i spasite svoje omiljeno odmaralište! Najpre ćete morati da nađete sapun. Mnogo sapuna...", + "questAtom1CollectSoapBars": "Sapun", + "questAtom1Drop": "Gladno čudovište (Svitak)", + "questAtom2Text": "Napad svakodnevnice, 2. deo: Gladno čudovište", + "questAtom2Notes": "Jezero izgleda mnogo lepše kad je čisto, zar ne? Sad konačno možete da se prepustite zabavi. Na jezeru opažate kutiju za picu. Pa, kad ste već toliko radili, šta znači još jedna kutija? Avaj! To nije obična kutija! Kutija se iznenada podiže s površine jezera, i shvatate da je to u stvari glava čudovišta. Je li to moguće? Je li to zaista legendarno Gladno čudovište?! Čuli ste priče kako u jezeru još od davnih vremena živi čudovište, stvorenje koje je nastalo od ostataka hrane i smeća drevnih Habitikanaca. Fuj!", + "questAtom2Boss": "Gladno čudovište", + "questAtom2Drop": "Vešomant (svitak)", + "questAtom3Text": "Napad svakodnevnice, 3. deo: Vešomant", + "questAtom3Notes": "Gladno čudovište ispušta zaglušujući urlik, i raspada se na komade. „KAKO SE USUĐUJETE!” dopire do vas snažan glas iz jezera. Iz vode izranja figura u plavoj odori, naoružana čarobnom četkom za WC šolju. Za njom na površinu jezera izlazi i gomila prljavog veša. „Ja sam Vešomant!” izjavljuje besno. „Vaša drskost nema granice – oprali ste moje prelepo prljavo posuđe, uništili ste mog ljubimca, a onda ste ušli u moje carstvo u ČISTOJ ODEĆI! Sad ćete da osetite raskvašeni bes moje magije za suzbijanje čistoće!”", + "questAtom3Completion": "Porazili ste opakog Vešomanta! Svuda oko vas nalaze se gomile opranog veša. Odmaralište sad izgleda mnogo lepše. Među sveže opranim i ispeglanim oklopima primećujete odsjaj metala, i nalazite sjajni šlem. Ne znate kome je ranije pripadao, ali dok ga stavljate na glavu, osećate da je to bila veoma velikodušna osoba. Šteta što ta osoba nije napisala svoje ime.", + "questAtom3Boss": "Vešomant", + "questAtom3DropPotion": "Obični napitak za izleganje", + "questOwlText": "Noćobdija", "questOwlNotes": "The Tavern light is lit 'til dawnХодять чутки про страшне зло, що лежить у печерах гори Звиканії. Чудовисько, перед яким просто викручує волю могутніх героїв землі, підштовхуючи їх до шкідливих звичок і лінощів! То є великий дракон безмірної сили і кажуть, що він створений з самих тіней: його ім'я Недолік, зрадницький тіньовий змій. Хоробрі звикунці, повстаньте і здолайте цю паплюжну тварюку раз і назавжди, але тільки, якщо Ви вважаєте, що зможете протистояти його безмірній силі.
Як Ви збираєтеся побороти чудовисько, якщо воно вже має повну владу над Вами? Не віддавайтеся ліні та своїм недолікам! Працюйте краще, аби побороти жахливий вплив дракона і розвіяти його владу над Вами!
", "questVice1Boss": "Тінь Недоліка", @@ -127,7 +127,7 @@ "questSeahorseCompletion": "Приборканий морський жеребець покірно до вас підпливає. \"Поглянь!\" — каже Ківібот. \"Він хоче, щоб ми подбали про його діток.\" Вона дає вам три яйця. \"Виростіть їх як слід,\" — каже Ківібот. \"Приходьте на перегони коли забажаєте!\"", "questSeahorseBoss": "Морський жеребець", "questSeahorseDropSeahorseEgg": "Морський коник (яйце)", - "questSeahorseUnlockText": "Unlocks purchasable seahorse eggs in the Market", + "questSeahorseUnlockText": "Відкриває можливість покупки яйця морського коника на ринку", "questAtom1Text": "Квест Напад Буденності , П. 1: Посудна катастрофа!", "questAtom1Notes": "Ви добралися до берегів Помитого озера, щоб заслужено розслабитись... Але озеро забруднене немитим посудом! Як таке могло трапитись? Що ж, ви просто не дозволите, щоб озеро було у такому стані. Існує лише один вихід: помити посуд і врятувати місце відпочинку! Варто пошукати якогось мила, щоб усе це прибрати. Багато мила...", "questAtom1CollectSoapBars": "Брусочки мила", @@ -146,13 +146,13 @@ "questOwlCompletion": "The Night-Owl fades before the dawn,:smile: - task name
\n'); + expect(arg.icon).to.eql(false); + }); + + it('does not send markdown notification if no text is given', function() { + notification.markdown(); + + expect($.pnotify).to.not.have.been.called; + }); + + it('sends mp notification', function() { + notification.mp(10); + var arg = $.pnotify.args[0][0]; + + expect($.pnotify).to.have.been.calledOnce; + expect(arg.type).to.eql('mp'); + expect(arg.text).to.eql('+ 10 MP'); + expect(arg.icon).to.eql('glyphicon glyphicon-fire'); + }); + + it('sends streak notification', function() { + notification.streak(10); + var arg = $.pnotify.args[0][0]; + + expect($.pnotify).to.have.been.calledOnce; + expect(arg.type).to.eql('streak'); + expect(arg.text).to.eql('Streak Achievements: 10'); + expect(arg.icon).to.eql('glyphicon glyphicon-repeat'); + }); + + it('sends text notification', function() { + notification.text('task name'); + var arg = $.pnotify.args[0][0]; + + expect($.pnotify).to.have.been.calledOnce; + expect(arg.type).to.eql('info'); + expect(arg.text).to.eql('task name'); + expect(arg.icon).to.eql(false); + }); + + it('does not send text notification if no text is given', function() { + notification.text(); + + expect($.pnotify).to.not.have.been.called; + }); +}); diff --git a/test/spec/userServicesSpec.js b/test/spec/services/userServicesSpec.js similarity index 100% rename from test/spec/userServicesSpec.js rename to test/spec/services/userServicesSpec.js diff --git a/test/spec/specHelper.js b/test/spec/specHelper.js index c8806640f8..80f5858fe8 100644 --- a/test/spec/specHelper.js +++ b/test/spec/specHelper.js @@ -13,7 +13,7 @@ specHelper = { food: {}, pets: {}, mounts: {}, - gear: {equipped: {}, costume: {}}, + gear: {equipped: {}, costume: {}, owned: {}}, }, party: { quest: { diff --git a/website/public/cake.png b/website/public/cake.png new file mode 100644 index 0000000000..61dd797756 Binary files /dev/null and b/website/public/cake.png differ diff --git a/website/public/community-guidelines-images/moderators.png b/website/public/community-guidelines-images/moderators.png index 6f59b2cc73..b0c9af360f 100644 Binary files a/website/public/community-guidelines-images/moderators.png and b/website/public/community-guidelines-images/moderators.png differ diff --git a/website/public/css/filters.styl b/website/public/css/filters.styl index ca0245c97a..5ba86cd853 100644 --- a/website/public/css/filters.styl +++ b/website/public/css/filters.styl @@ -35,3 +35,6 @@ margin-right: 0.618em @extend $hrpg-button-with-input hrpg-button-color-mixin($color-options-submenu) + .filters-search + margin-bottom: 0.618em + max-width: 180px diff --git a/website/public/css/game-pane.styl b/website/public/css/game-pane.styl index 5f7216fff9..ea2729910d 100644 --- a/website/public/css/game-pane.styl +++ b/website/public/css/game-pane.styl @@ -21,18 +21,13 @@ padding: 1em; margin-bottom: 0.5em; -.chat-controls - > div - display: inline-block - vertical-align: middle - &:nth-of-type(1) - width: 40% - &:nth-of-type(2) - width: 60% +.slight-vertical-padding + clear: both + padding-top: 0.618em .chat-buttons @extend $hrpg-button - text-align: right; + float: right; input margin-right: 0.618em diff --git a/website/public/css/global-modules.styl b/website/public/css/global-modules.styl index e209b6406e..8e8908aac6 100644 --- a/website/public/css/global-modules.styl +++ b/website/public/css/global-modules.styl @@ -98,7 +98,7 @@ $hrpg-button-toggle border-radius: 0.382em !important > a:first-of-type border-radius: 0.382em 0em 0em 0.382em !important - > a:nth-of-type(2) + > a:last-of-type border-radius: 0em 0.382em 0.382em 0em !important // Input + Button $hrpg-button-with-input @@ -197,7 +197,7 @@ $hrpg-modal-dropdown @extend $hrpg-modal > div position: absolute - top: 3em + top: 2.9em min-width:110px border-radius:4px background-color:#fff @@ -261,7 +261,7 @@ $hrpg-modal-dropdown-left div right: 0px > ul:first-child:before, > div:first-child:before, h4:before - right: 1em + right: .5em $hrpg-modal-dropdown-right @extend $hrpg-modal-dropdown @media screen and (min-width:768px) diff --git a/website/public/css/header.styl b/website/public/css/header.styl index e9cd485114..a1169843ce 100644 --- a/website/public/css/header.styl +++ b/website/public/css/header.styl @@ -98,7 +98,7 @@ @media (min-width: 70em) .site-header width: 70% - + // this is a wrapper for avatars in the header // inside this is the actual `herobox` module @@ -125,7 +125,7 @@ hrpg-label-color-mixin(darken($color-herobox, 16.18%)) width: 2.618em text-align:center - margin-right: 0.618em + margin-right: 0.618em .meter position: relative overflow: hidden @@ -161,7 +161,7 @@ white-space: nowrap &.value right: 0.382em - + // boss.jade only [class^="quest_"] + & min-width: 220px @@ -172,4 +172,8 @@ header .hero-stats background-color: darken($color-herobox, 4%) border-right: 1px solid darken($color-herobox, 12%) - \ No newline at end of file + +button.party-invite + right: 10px; + position: absolute; + top: 55px; diff --git a/website/public/css/index.styl b/website/public/css/index.styl index b7fd653a05..b93b9f77fd 100644 --- a/website/public/css/index.styl +++ b/website/public/css/index.styl @@ -187,3 +187,6 @@ a.label color: #fff !important .line-through text-decoration line-through + +.markdown-preview markdown code + white-space inherit \ No newline at end of file diff --git a/website/public/css/inventory.styl b/website/public/css/inventory.styl index d3bdc6d2ef..a8ced56dfd 100644 --- a/website/public/css/inventory.styl +++ b/website/public/css/inventory.styl @@ -110,6 +110,12 @@ menu.pets .customize-menu -o-filter: brightness(0%) -ms-filter: brightness(0%)*/ + .PixelPaw + margin-top: 36px // align paw with pets, at the bottom of the button +.mount-not-owned + width: 104px; + height: 99px; + .PixelPaw margin-top: 36px // align paw with pets, at the bottom of the button diff --git a/website/public/css/menu.styl b/website/public/css/menu.styl index 67610f2ba4..39c12c6b95 100644 --- a/website/public/css/menu.styl +++ b/website/public/css/menu.styl @@ -108,8 +108,8 @@ vertical-align:top padding-top: 0.236em .toolbar-currency - padding-top: 0.236em - padding-bottom: 0.236em + margin-top: 0.236em + margin-bottom: 0.236em vertical-align:top .toolbar-currency.gold color: darken($neutral,61,8%) diff --git a/website/public/css/shared.styl b/website/public/css/shared.styl index b971460366..7653337538 100644 --- a/website/public/css/shared.styl +++ b/website/public/css/shared.styl @@ -41,8 +41,9 @@ a.hint:hover .popover hr margin: 10px 0 - ul - padding-left: 10px + +ul + list-style-position: inside; .group-leave-join .glyphicon-ban-circle diff --git a/website/public/css/tasks.styl b/website/public/css/tasks.styl index 574bc266ce..7e98df0f9e 100644 --- a/website/public/css/tasks.styl +++ b/website/public/css/tasks.styl @@ -12,7 +12,7 @@ for $stage in $stages .color-{$stage[0]}:not(.completed) background-color: $stage[1] border: 1px solid shade($stage[1],10%) - .priority-multiplier, .task-attributes, .repeat-days + .priority-multiplier, .task-attributes, .repeat-days, .repeat-frequency li hrpg-button-color-mixin($stage[1]) button @@ -63,7 +63,7 @@ for $stage in $stages color: darken($completed,30%) background-color: $completed border: 1px solid shade($completed,10%) - .priority-multiplier, .task-attributes, .repeat-days + .priority-multiplier, .task-attributes, .repeat-days, .repeat-frequency li hrpg-button-color-mixin($completed) button @@ -128,6 +128,12 @@ for $stage in $stages background: $color-tasks border: 1px solid darken($color-tasks,16.18%) font-family: 'Lato', sans-serif + + &:after + clear: both; + display: block; + content: ""; + h2 color: darken($color-tasks,61.8%) @@ -136,6 +142,14 @@ for $stage in $stages padding: 0 font-weight: 300 +.task-column.preview + padding: 0 + background: transparent + border: 0; + + .task:hover + cursor: auto + // 50% width columns with scrollbars for tablets @media (min-width: 768px) and (max-width: 970px) .task-column @@ -174,6 +188,11 @@ for $stage in $stages .empty-task-notification height: 100%; +// message in Dailies column when Resting in Inn +// ------------------------ +.dailiesRestingInInn + clear: both + // an individual task entry // ------------------------ .task @@ -391,6 +410,10 @@ form padding: 0 0 1em margin-bottom: 1em + button.advanced-options-toggle + display: block; + width: 100%; + background: none; .option-title font-size: 1em margin: 0 0 0.5em @@ -488,7 +511,7 @@ form form padding-bottom: 1em - .priority-multiplier, .task-attributes, .repeat-days + .priority-multiplier, .task-attributes, .repeat-days, .repeat-frequency text-align: center li @extend $hrpg-button @@ -498,6 +521,7 @@ form &:last-of-type margin-right: 0 .repeat-days + padding-bottom: 1em li button min-width: 2.5em @@ -505,6 +529,11 @@ form text-align: center @extend $hrpg-button +// Dailies +.dailies + .repeat-weekly + padding-bottom: 1em + // Habits – task button styles (+ -) .habits .task-actions diff --git a/website/public/emails/images/PROMO-Enchanted-Armoire-v1.png b/website/public/emails/images/PROMO-Enchanted-Armoire-v1.png new file mode 100644 index 0000000000..9a42b70e42 Binary files /dev/null and b/website/public/emails/images/PROMO-Enchanted-Armoire-v1.png differ diff --git a/website/public/front/home.html b/website/public/front/home.html deleted file mode 100644 index fd4099c1ef..0000000000 --- a/website/public/front/home.html +++ /dev/null @@ -1,810 +0,0 @@ - - - - - -
-
-
-
-
-
-
-
-
- HabitRPG is a free habit building and productivity app that treats your real life like a game. With in-game rewards and punishments to motivate you and a strong social network to inspire you, HabitRPG can help you achieve your goals to become healthy, hard-working, and happy.
-
- 


-
- Spend gold on virtual and real-life rewards.
Instant rewards keep you motivated!
-
-
-
-
-
-
-
-
-
- Achieve your goals and level up.
Unlock new motivational tools, such as pet collecting, random rewards, spell-casting, and more!
Break bad habits and procrastination cycles with immediate consequences.
- - -
Playing with your friends keeps you accountable for your tasks.
Issue each other Challenges to complete a goal together!
-
- Eggs and items drop when you complete your tasks. Be as productive as possible to collect pets and mounts!
-
-
- Do something totally awesome? Get a badge and show it off!
-Buy limited edition equipment, potions, and other virtual goodies in our Market with your task rewards!
-
- Join common-interest groups with like-minded people.
Create Challenges to compete against other users.

The problem with most productivity apps on the market is that they provide no incentive to continue using them. HabitRPG fixes this by making habit building fun! By rewarding you for your successes and penalizing you for slip-ups, HabitRPG provides external motivation for completing your day-to-day activities.
Whenever you reinforce a positive habit, complete a daily task, or take care of an old to-do, HabitRPG immediately rewards you with experience points and gold. As you gain experience, you can level up, increasing your stats and unlocking more features, like classes and pets. Gold can be spent on in-game items that change your experience or personalized rewards you've created for motivation. When even the smallest successes provide you with an immediate reward, you're less likely to procrastinate.
Whenever you indulge in a bad habit or fail to complete one of your daily tasks, you lose health. If your health drops too low, you die and lose some of the progress you've made. By providing immediate consequences, HabitRPG can help break bad habits and procrastination cycles before they cause real-world problems.
With an active community, HabitRPG provides the accountability you need to stay on task. With the party system, you can bring in a group of your closest friends to cheer you on. The guild system allows you to find people with similar interests or obstacles, so you can share your goals and swap tips on how to tackle your problems. On HabitRPG, the community means that you have both the support and the accountability you need to succeed.